@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  /* Charte */
  --charte-ink: #0a0736;
  --charte-royal: #21055a;
  --charte-violet: #6e00df;
  --charte-lime: #31f468;

  --ink: #0a0736;
  --royal: #21055a;
  --violet: #6e00df;
  --violet-dark: #5a00b5;
  --lime: #31f468;
  --lime-dark: #26c75a;

  --surface: #efefef;
  --on-dark: #efefef;

  --text: var(--ink);
  --muted: var(--ink);
  --bg: var(--surface);
  --bg-subtle: #e2e2ea;

  --navy: var(--ink);
  --navy-soft: var(--royal);

  --border: rgba(10, 7, 54, 0.12);
  --shadow: 0 20px 50px rgba(10, 7, 54, 0.12);
  --shadow-green: 0 16px 40px rgba(49, 244, 104, 0.32);
  --shadow-violet: 0 16px 40px rgba(110, 0, 223, 0.28);

  --radius: 20px;
  --radius-sm: 14px;

  /* Alias (ex-teal) → violet pour bordures / halos */
  --teal: var(--violet);
  --teal-soft: #d4c4f5;
  --teal-dark: var(--violet-dark);
  --teal-muted: #e8e2f7;

  --accent: var(--violet);
  --accent-2: var(--lime);
  --shadow-teal: var(--shadow-green);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif;
  font-feature-settings: "cv11", "ss01", "ss03";
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h4,
h5 {
  letter-spacing: -0.02em;
}

button {
  font-family: inherit;
}

body.home {
  scroll-padding-top: 88px;
}

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

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* ——— Bannière pages intérieures (image + parallax) ——— */
.page-banner {
  --page-banner-image: none;
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(248px, 36vw, 380px);
  overflow: hidden;
  border-bottom: 1px solid rgba(239, 239, 239, 0.12);
}

.page-banner__parallax {
  position: absolute;
  left: 0;
  right: 0;
  top: -28%;
  bottom: -28%;
  z-index: 0;
  background-image: var(--page-banner-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.page-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(110, 0, 223, 0.38) 0%, transparent 70%),
    linear-gradient(180deg, #0a0736 0%, #1a0d4d 60%, #0a0736 100%);
  pointer-events: none;
}

.page-banner__inner {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: clamp(56px, 8vw, 96px) 0;
}

.feature-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(49, 244, 104, 0.22);
  border: 1.5px solid var(--lime);
}

.feature-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.55em + 4px);
  width: 5px;
  height: 8px;
  border: solid var(--violet);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.page-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(239, 239, 239, 0.1);
  border: 1px solid rgba(239, 239, 239, 0.25);
  color: rgba(239, 239, 239, 0.95);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-banner__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(49, 244, 104, 0.22);
}

.page-banner__title {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--on-dark);
  max-width: 22ch;
}

.page-banner__subtitle {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(239, 239, 239, 0.82);
  max-width: min(52ch, 100%);
}

/* ——— Pages intérieures (même langage visuel que l’accueil) ——— */
body.site {
  background: var(--surface);
}

body.site .page-banner {
  border-bottom: 0;
}

body.site .page-banner__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.site .page-banner__title {
  margin-left: auto;
  margin-right: auto;
}

body.site .page-banner__subtitle {
  margin-left: auto;
  margin-right: auto;
}

body.site main > .section.section--soft {
  border-top: 1px solid rgba(10, 7, 54, 0.06);
}

body.site .topbar {
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

body.site .topbar.topbar--scrolled {
  box-shadow: 0 8px 32px rgba(10, 7, 54, 0.1);
}

body.site .panel {
  box-shadow: 0 8px 28px rgba(10, 7, 54, 0.07);
}

body.site .panel:hover {
  box-shadow: 0 18px 44px rgba(10, 7, 54, 0.11);
}

body.site .panel h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

body.site .panel p {
  font-weight: 600;
}

body.site .section-title h2 {
  letter-spacing: -0.02em;
}

body.site .section-title p {
  font-weight: 600;
}

body.site .faq > section > h3 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-dark);
}

body.site .faq > section + section {
  margin-top: 32px;
}

body.site .grid-2 {
  gap: 24px;
}

@media (min-width: 921px) {
  body.site .grid-2 {
    gap: 28px;
  }
}

/* ——— Topbar ——— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(239, 239, 239, 0.94);
  border-bottom: 1px solid var(--border);
}

.home .topbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  border-bottom-color: rgba(239, 239, 239, 0.15);
}

.home .topbar .nav a {
  color: rgba(239, 239, 239, 0.88);
}

.home .topbar .nav a:hover {
  color: var(--on-dark);
}

.home .topbar .brand-logo {
  filter: brightness(0) invert(1);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.home .topbar {
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.home .topbar.topbar--scrolled {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(239, 239, 239, 0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(10, 7, 54, 0.1);
  backdrop-filter: blur(14px);
}

.home .topbar.topbar--scrolled .nav a {
  color: var(--muted);
}

.home .topbar.topbar--scrolled .nav a:hover {
  color: var(--teal-dark);
}

.home .topbar.topbar--scrolled .brand-logo {
  filter: none;
}

.home .topbar.topbar--scrolled .btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.home .topbar.topbar--scrolled .btn-ghost:hover {
  border-color: rgba(110, 0, 223, 0.35);
  background: #fff;
}

.home .topbar.topbar--scrolled .btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-green);
}

.home .topbar.topbar--scrolled .btn-primary:hover {
  background: var(--lime-dark);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: clamp(52px, 6.4vw, 72px);
  width: auto;
  max-width: min(320px, 68vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}

.brand:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 6px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.nav a:hover {
  color: var(--teal-dark);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-dark);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.nav a[aria-current="page"] {
  color: var(--navy);
}

.home .topbar:not(.topbar--scrolled) .nav a::after {
  background: var(--lime);
}

.home .topbar:not(.topbar--scrolled) .nav a[aria-current="page"] {
  color: var(--on-dark);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), background 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease, filter 0.22s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: none;
  border-color: rgba(110, 0, 223, 0.3);
  box-shadow: 0 10px 28px rgba(10, 7, 54, 0.08);
}

.btn:active {
  transform: none;
}

.btn-primary {
  border-color: transparent;
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  border-color: transparent;
  background: var(--lime-dark);
}

.btn-ghost {
  background: transparent;
}

.home .btn-ghost {
  border-color: rgba(239, 239, 239, 0.45);
  color: var(--on-dark);
}

.home .btn-ghost:hover {
  background: rgba(239, 239, 239, 0.12);
  border-color: rgba(239, 239, 239, 0.65);
}

.home .btn-primary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(10, 7, 54, 0.25);
}

.home .btn-primary:hover {
  background: #e4e4ea;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }
}

/* ——— Hero (accueil) ——— */
.hero {
  position: relative;
  padding: 0 0 48px;
  overflow: hidden;
}

.home .hero {
  padding: 110px 0 72px;
  background: var(--royal);
  color: var(--on-dark);
}

.hero-deco-star {
  position: absolute;
  width: 22px;
  height: 22px;
  color: rgba(239, 239, 239, 0.35);
  pointer-events: none;
}

.hero-deco-star--1 {
  top: 18%;
  left: 8%;
}

.hero-deco-star--2 {
  top: 28%;
  right: 12%;
}

.hero-deco-star--3 {
  bottom: 22%;
  left: 18%;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes star-pulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05) rotate(6deg);
  }
}

.home .hero-grid > div:first-child > * {
  animation: hero-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.home .hero-grid > div:first-child > *:nth-child(1) {
  animation-delay: 0.06s;
}

.home .hero-grid > div:first-child > *:nth-child(2) {
  animation-delay: 0.14s;
}

.home .hero-grid > div:first-child > *:nth-child(3) {
  animation-delay: 0.22s;
}

.home .hero-grid > div:first-child > *:nth-child(4) {
  animation-delay: 0.3s;
}

.home .hero-deco-star {
  animation: star-pulse 4s ease-in-out infinite;
}

.home .hero-deco-star--2 {
  animation-delay: 0.8s;
}

.home .hero-deco-star--3 {
  animation-delay: 1.6s;
}

.hero-mockup-float {
  animation: hero-float 5.5s ease-in-out infinite;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.home .hero-mockup-img {
  animation: hero-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s backwards;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 920px) {
  .home .hero {
    padding-top: 96px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.home .kicker {
  background: rgba(239, 239, 239, 0.12);
  border: 1px solid rgba(239, 239, 239, 0.25);
  color: rgba(239, 239, 239, 0.95);
}

.home .kicker-dot {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(49, 244, 104, 0.25);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--teal-muted);
  border: 1px solid rgba(110, 0, 223, 0.35);
  border-radius: 999px;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 13px;
}

.kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(49, 244, 104, 0.28);
}

.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.home .hero h1 {
  color: var(--on-dark);
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 52ch;
  font-weight: 500;
}

.home .hero p {
  color: rgba(239, 239, 239, 0.9);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .store-badges--hero {
  justify-content: flex-start;
}

.hero-actions .store-badges--hero .store-badge img {
  height: clamp(44px, 4.5vw, 54px);
}

/* Visuel hero : mockup image (assets) */
.hero-side {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup-img {
  display: block;
  width: min(340px, 92vw);
  height: auto;
  max-height: min(640px, 80vh);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 36px 70px rgba(10, 7, 54, 0.48));
}

.hero-media {
  display: none;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0 0;
}

/* Feature rows (type landing Toby) */
.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.section--soft {
  background: #fff;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--navy);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  font-weight: 600;
  font-size: 16px;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 8px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-row:nth-child(even) .feature-row__visual {
  order: 2;
}

.feature-row:nth-child(even) .feature-row__text {
  order: 1;
}

@media (max-width: 920px) {
  .feature-row,
  .feature-row:nth-child(even) .feature-row__visual,
  .feature-row:nth-child(even) .feature-row__text {
    grid-template-columns: 1fr;
    order: unset;
  }
  .feature-row:nth-child(even) .feature-row__visual {
    order: -1;
  }
}

.feature-row__text h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.feature-row__text p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 16px;
  max-width: 48ch;
}

.feature-row__visual {
  position: relative;
}

.feature-row__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.feature-row__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-row__visual:hover .feature-row__img-wrap img {
  transform: scale(1.05);
}

/* ——— Page À propos (disposition type landing : hero + alternances + grille + CTA) ——— */
.about-hero {
  padding: 48px 0 56px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.about-hero__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  margin-bottom: clamp(32px, 6vw, 56px);
}

@media (max-width: 900px) {
  .about-hero__intro {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

.about-hero__title {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--navy);
}

.about-hero__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.6;
  max-width: 52ch;
}

@media (min-width: 901px) {
  .about-hero__lead {
    justify-self: end;
  }
}

.about-hero__mockups {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(8px, 2vw, 20px);
  min-height: min(320px, 52vw);
  margin-bottom: clamp(40px, 7vw, 64px);
  padding: 0 12px;
}

.about-phone {
  flex: 0 0 auto;
}

.about-phone__frame {
  border-radius: 28px;
  padding: 5px;
  background: linear-gradient(160deg, #fff, var(--bg-subtle));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-phone__frame img {
  display: block;
  width: min(200px, 26vw);
  height: auto;
  border-radius: 22px;
  aspect-ratio: 1 / 2;
  object-fit: cover;
  object-position: top center;
}

.about-phone--center .about-phone__frame img {
  width: min(260px, 34vw);
}

.about-phone--back {
  opacity: 0.92;
  transform: translateY(12px) scale(0.88);
}

.about-phone--left {
  transform: translateY(12px) scale(0.88) rotate(-7deg);
}

.about-phone--right {
  transform: translateY(12px) scale(0.88) rotate(7deg);
}

.about-phone--center {
  position: relative;
  z-index: 2;
  transform: translateY(0) scale(1);
}

.about-phone--center .about-phone__frame {
  box-shadow: 0 28px 60px rgba(10, 7, 54, 0.18);
}

.about-hero__tagline {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.about-hero__tagline-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about-hero__tagline-text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.about-hero__intro--stacked {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(28px, 5vw, 44px);
  align-items: stretch;
}

.about-hero__intro--stacked .about-hero__lead {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.about-hero__actions {
  margin-top: 22px;
  justify-content: center;
}

.about-narrow {
  max-width: 640px;
  margin: 0 auto;
}

.about-narrow h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about-narrow > p {
  margin: 0 0 1em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--muted);
}

.about-narrow > p:last-child {
  margin-bottom: 0;
}

.about-checklist--spaced {
  margin-top: 8px;
}

.about-pullquote {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--lime);
  background: rgba(49, 244, 104, 0.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 17px;
  font-weight: 800;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
}

.about-impact-heading h2 {
  max-width: none;
}

.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.about-impact-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

.about-impact-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 640px) {
  .about-impact-grid {
    grid-template-columns: 1fr;
  }
}

.about-founder__project-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about-founder__byline {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
  color: var(--violet-dark);
}

.about-founder__ambition {
  margin-bottom: 0 !important;
}

.about-legal-links {
  margin: 22px 0 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.about-legal-links a {
  color: var(--violet-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-legal-links a:hover {
  color: var(--ink);
}

.about-cta-band__actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.about-cta-band .about-cta-band__actions .btn:not(.btn-primary) {
  border-color: rgba(239, 239, 239, 0.45);
  color: var(--on-dark);
  background: rgba(239, 239, 239, 0.1);
}

.about-cta-band .about-cta-band__actions .btn:not(.btn-primary):hover {
  background: rgba(239, 239, 239, 0.2);
}

@media (max-width: 900px) {
  .about-cta-band__actions {
    justify-content: center;
  }
}

.about-founder-section {
  padding-top: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.about-founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .about-founder {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-founder__content {
    text-align: left;
  }

  .about-founder__role .about-founder__org {
    display: block;
  }
}

.about-founder__portrait {
  width: min(160px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--violet) 0%, var(--royal) 55%, var(--violet-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 48px rgba(110, 0, 223, 0.28);
  flex-shrink: 0;
}

.about-founder__initial {
  font-size: clamp(52px, 12vw, 72px);
  font-weight: 800;
  color: var(--on-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-founder__kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-dark);
}

.about-founder__name {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.about-founder__role {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.45;
}

.about-founder__org {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  opacity: 0.92;
}

.about-founder__bio p {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--text);
}

.about-founder__bio p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--navy);
}

.about-checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.about-checklist li {
  position: relative;
  padding-left: 32px;
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.45;
}

.about-checklist li:last-child {
  margin-bottom: 0;
}

.about-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e00df' stroke-width='2.5'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.about-checklist a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-checklist a:hover {
  color: var(--violet-dark);
}

.about-section-title--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.about-section-title--center h2 {
  max-width: 22ch;
}

.about-section-title--center p {
  max-width: 56ch;
  margin: 0 auto;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 720px) {
  .about-features-grid {
    grid-template-columns: 1fr;
  }
}

.about-features-grid__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: 0 6px 22px rgba(10, 7, 54, 0.05);
}

.about-features-grid__card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.about-features-grid__card p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}

.about-transition {
  padding: 48px 0 8px;
  text-align: center;
}

.about-transition h2 {
  margin: 0 auto;
  max-width: min(36ch, 100%);
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
}

.about-cta-band {
  position: relative;
  margin-top: 48px;
  background: var(--ink);
  color: var(--on-dark);
  padding: 0 0 72px;
}

.about-cta-band__wave {
  position: relative;
  z-index: 1;
  height: 56px;
  margin-top: -54px;
  color: var(--bg-subtle);
  line-height: 0;
  pointer-events: none;
}

.about-cta-band__wave-svg {
  display: block;
  width: 100%;
  height: 56px;
  transform: scaleY(-1);
  transform-origin: center top;
}

.about-cta-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
  padding-top: 8px;
}

@media (max-width: 900px) {
  .about-cta-band__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-cta-band__copy {
    order: 1;
  }

  .about-cta-band__visual {
    order: 2;
    justify-content: center;
  }

  .about-cta-band__btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.about-cta-band__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--on-dark);
}

.about-cta-band__copy p {
  margin: 0 0 22px;
  max-width: 48ch;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(239, 239, 239, 0.82);
}

.about-cta-band__btn {
  padding: 14px 28px;
  font-size: 15px;
}

.about-cta-band__visual {
  position: relative;
  min-height: min(300px, 55vw);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-cta-phone {
  position: absolute;
  bottom: 0;
}

.about-cta-phone--rear {
  left: 50%;
  transform: translateX(calc(-50% - 72px)) rotate(-10deg) scale(0.88);
  z-index: 1;
  opacity: 0.9;
}

.about-cta-phone--front {
  left: 50%;
  transform: translateX(calc(-50% + 48px)) rotate(6deg);
  z-index: 2;
}

.about-phone__frame--on-dark {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.about-cta-band .about-phone__frame img {
  width: min(200px, 42vw);
}

@media (max-width: 900px) {
  .about-cta-phone--rear {
    transform: translateX(calc(-50% - 56px)) translateY(8px) rotate(-10deg) scale(0.82);
  }

  .about-cta-phone--front {
    transform: translateX(calc(-50% + 40px)) translateY(0) rotate(6deg) scale(0.92);
  }
}

/* ——— Témoignages (intro + carrousel en sections séparées) ——— */
.testimonials-lead-section {
  padding-bottom: 48px;
}

.testimonials-lead-section .testimonials-intro {
  margin-bottom: 0;
}

.testimonials-section {
  background: #fff;
  padding-top: 48px;
}

.testimonials-intro {
  display: grid;
  gap: 28px;
  margin-bottom: 8px;
}

@media (min-width: 960px) {
  .testimonials-intro {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 40px;
  }
}

.testimonials-intro__title {
  margin-bottom: 0;
}

.testimonials-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials-pills li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  box-shadow: 0 4px 18px rgba(10, 7, 54, 0.04);
}

.testimonials-pills li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(49, 244, 104, 0.25);
}

.testimonials-reviews-heading {
  margin-bottom: 18px;
}

.testimonials-carousel {
  margin-top: 10px;
  position: relative;
}

.testimonials-carousel__chrome {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 560px) {
  .testimonials-carousel__chrome {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }
}

.testimonials-carousel__viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  min-width: 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonials-slide {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  min-width: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 720px) {
  .testimonials-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 6px;
  }
}

.testimonial-card {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  padding: 18px 18px 16px 26px;
  border-radius: calc(var(--radius-sm) + 4px);
  box-shadow: 0 16px 40px rgba(10, 7, 54, 0.18);
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(239, 239, 239, 0.08);
}

.testimonial-card__accent {
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 4px;
  background: var(--lime);
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--violet);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.testimonial-card__quote {
  margin: 0;
  flex: 1;
}

.testimonial-card__quote p {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(239, 239, 239, 0.95);
}

.testimonial-card__stars {
  margin-top: 12px;
  color: var(--lime);
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-card__meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(239, 239, 239, 0.12);
}

.testimonial-card__name {
  display: block;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  color: var(--on-dark);
}

.testimonial-card__role {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(239, 239, 239, 0.75);
  line-height: 1.4;
}

.carousel-nav {
  align-self: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.carousel-nav:hover {
  background: var(--teal-muted);
  border-color: rgba(110, 0, 223, 0.35);
  box-shadow: 0 8px 22px rgba(10, 7, 54, 0.08);
}

.carousel-nav:active {
  transform: none;
}

.carousel-nav:focus-visible {
  outline: 3px solid rgba(110, 0, 223, 0.45);
  outline-offset: 2px;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(10, 7, 54, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-dot:hover {
  background: rgba(110, 0, 223, 0.45);
}

.carousel-dot[aria-current="true"] {
  background: var(--violet);
  transform: scale(1.25);
  box-shadow: 0 0 0 3px rgba(110, 0, 223, 0.2);
}

.carousel-dot:focus-visible {
  outline: 3px solid rgba(110, 0, 223, 0.45);
  outline-offset: 2px;
}

@keyframes star-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(6px, -8px) rotate(15deg);
  }
}

.star-float {
  position: absolute;
  width: 20px;
  height: 20px;
  color: var(--teal);
  opacity: 0.65;
  pointer-events: none;
  animation: star-drift 5s ease-in-out infinite;
}

.star-float--tr {
  top: -8px;
  right: 10%;
  animation-delay: 0.4s;
}

.star-float--bl {
  bottom: 12%;
  left: -6px;
  animation-delay: 1.2s;
}

/* ——— Ils nous font confiance (bandeau compact) ——— */
.trust-banner {
  padding-top: 75px;
  padding-bottom: 18px;
  background: #f9f9fc;
  border-top: 0;
  border-bottom: 0;
}

.trust-banner > .container {
  width: 100%;
  margin: 0;
  max-width: 100%;
}

.trust-banner__heading {
  margin: 0 auto 20px;
  max-width: min(52rem, 94vw);
  text-align: center;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--navy);
}

.trust-banner__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  text-align: center;
  margin-bottom: 18px;
}

.trust-banner__title {
  margin: 0;
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-banner__sep {
  display: block;
  width: 1px;
  height: 22px;
  background: var(--border);
  flex-shrink: 0;
}

.trust-banner__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.trust-banner__brand.brand {
  cursor: default;
}

.trust-banner__logo {
  height: clamp(34px, 4.5vw, 48px);
  max-width: min(200px, 58vw);
}

.trust-banner__name {
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 21px);
  letter-spacing: 0.02em;
  color: var(--navy);
}

@media (max-width: 480px) {
  .trust-banner__row {
    margin-bottom: 12px;
  }

  .trust-banner__sep {
    display: none;
  }
}

/* ——— Ils nous font confiance (slider logos) ——— */
.trust-marquee {
  width: 100%;
}

.trust-marquee__viewport {
  overflow: hidden;
  width: 100%;
}

.trust-marquee__track {
  display: flex;
  width: max-content;
  animation: trust-marquee-scroll 50s linear infinite;
}

.trust-marquee__list {
  display: flex;
  align-items: center;
  gap: 150px;
  list-style: none;
  margin: 0;
  padding: 4px 12px;
  flex-shrink: 0;
}

.trust-marquee__list img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: rgb(255 255 255 / 0%);
  border-radius: 0;
  flex-shrink: 0;
}

@keyframes trust-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Home: logos fixes (pas de défilement automatique) */
.home .trust-marquee__track {
  animation: none;
  width: 100%;
  display: block;
}

.home .trust-marquee__list {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 64px;
}

.home .trust-marquee__list--clone {
  display: none;
}

.home .trust-marquee__list img {
  height: 68px;
  max-width: min(280px, 62vw);
}

@media (max-width: 520px) {
  .trust-marquee__list img {
    height: 52px;
    width: auto;
    max-width: min(200px, 52vw);
  }
}

/* Grille secteurs */
.sector-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 920px) {
  .sector-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .sector-gallery {
    grid-template-columns: 1fr;
  }
}

.sector-tile {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.sector-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sector-tile:hover img {
  transform: scale(1.04);
}

/* Stats + visuel */
.stats-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 920px) {
  .stats-split {
    grid-template-columns: 1fr;
  }
}

.stats-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.stat-bubble {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.25;
  color: var(--on-dark);
  padding: 14px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.stat-bubble--a {
  background: var(--violet);
  box-shadow: var(--shadow-violet);
}

.stat-bubble--b {
  background: var(--royal);
  box-shadow: 0 16px 40px rgba(33, 5, 90, 0.45);
}

.stat-bubble--c {
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-green);
}

.stat-bubble:hover {
  transform: scale(1.06);
}

.stat-bubble strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.stats-split__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.stats-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA sombre */
.cta-dark {
  background: var(--ink);
  color: var(--on-dark);
  padding: 64px 0;
  text-align: center;
}

@keyframes cta-glow {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.96;
    filter: brightness(1.06);
  }
}

.cta-dark h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  animation: cta-glow 5s ease-in-out infinite;
}

.cta-dark p {
  margin: 0 auto 24px;
  max-width: 52ch;
  color: rgba(239, 239, 239, 0.78);
  font-weight: 500;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), filter 0.22s ease;
}

.store-badge:hover {
  transform: none;
}

.store-badge img {
  display: block;
  height: 54px;
  width: auto;
  filter: none;
}


/* Contact strip */
.contact-strip {
  position: relative;
  padding: 56px 0;
  background: var(--violet);
  color: var(--on-dark);
  overflow: hidden;
}

.contact-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23efefef' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.contact-strip .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

@media (max-width: 920px) {
  .contact-strip .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-strip .btn-row {
    justify-content: center;
  }
}

.contact-strip h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
}

.contact-strip p {
  margin: 0;
  opacity: 0.95;
  font-weight: 500;
  max-width: 48ch;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-strip .btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-green);
}

.contact-strip .btn {
  border-color: rgba(239, 239, 239, 0.45);
  color: var(--on-dark);
  background: rgba(239, 239, 239, 0.1);
}

.contact-strip .btn:hover {
  background: rgba(239, 239, 239, 0.2);
}

.contact-strip .btn-primary:hover {
  background: var(--lime-dark);
  color: var(--ink);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

/* ——— Problème / solution (accueil) ——— */
.section--problem-solution {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ps-combo {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.ps-combo__visual {
  min-height: 360px;
  background: var(--royal);
  position: relative;
}

.ps-combo__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-combo__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 7, 54, 0.45);
  pointer-events: none;
}

.ps-combo__content {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(239, 239, 239, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ps-combo__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.ps-combo__eyebrow--solution {
  color: var(--lime-dark);
}

.ps-combo__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.ps-combo__lead {
  margin: 0 0 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
}

.ps-combo-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ps-combo-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ps-combo-point__n {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(49, 244, 104, 0.18);
  border: 1px solid rgba(49, 244, 104, 0.6);
  color: var(--lime-dark);
  flex-shrink: 0;
}

.ps-combo-point__text {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
}

.ps-combo__divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.ps-slider {
  width: 100%;
}

.ps-slider__controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ps-slider__control {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(239, 239, 239, 0.75);
  color: rgba(10, 7, 54, 0.55);
  font-weight: 800;
  padding: 10px 16px;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.ps-slider__control:hover {
  transform: none;
  border-color: rgba(110, 0, 223, 0.35);
}

.ps-slider__control.is-active {
  background: rgba(110, 0, 223, 0.12);
  border-color: rgba(110, 0, 223, 0.55);
  color: var(--ink);
}

.ps-slider__viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
}

.ps-slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ps-slider__slide {
  flex: 0 0 100%;
  width: 100%;
}

@media (max-width: 920px) {
  .ps-combo {
    grid-template-columns: 1fr;
  }

  .ps-combo__visual {
    min-height: 260px;
  }
}

.problem-solution-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

@media (max-width: 920px) {
  .problem-solution-pair {
    grid-template-columns: 1fr;
  }
}

.ps-block {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px) clamp(22px, 3.5vw, 32px);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(10, 7, 54, 0.08);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ps-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(10, 7, 54, 0.12);
}

.ps-block--problem {
  background: rgba(33, 5, 90, 0.09);
  border-color: rgba(33, 5, 90, 0.22);
  border-left: 5px solid var(--royal);
}

.ps-block--problem:hover {
  border-color: rgba(110, 0, 223, 0.35);
}

.ps-block--solution {
  background: rgba(49, 244, 104, 0.14);
  border-color: rgba(10, 7, 54, 0.14);
  border-left: 5px solid var(--lime);
}

.ps-block--solution:hover {
  border-color: rgba(49, 244, 104, 0.55);
  box-shadow: 0 22px 56px rgba(49, 244, 104, 0.18);
}

.ps-block__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.ps-block--problem .ps-block__icon-wrap {
  background: rgba(33, 5, 90, 0.2);
  color: var(--royal);
}

.ps-block--solution .ps-block__icon-wrap {
  background: rgba(10, 7, 54, 0.12);
  color: var(--ink);
}

.ps-block__icon {
  width: 26px;
  height: 26px;
  display: block;
}

.ps-block__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ps-block__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.2;
}

.ps-block__text {
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  line-height: 1.65;
  color: var(--ink);
  max-width: 42ch;
}

@media (max-width: 920px) {
  .ps-block__text {
    max-width: none;
  }
}

.panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  box-shadow: 0 4px 20px rgba(30, 38, 44, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 38, 44, 0.09);
  border-color: rgba(110, 0, 223, 0.35);
}

.panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: rgba(110, 0, 223, 0.06);
  pointer-events: none;
  z-index: 0;
}

.panel > * {
  position: relative;
  z-index: 1;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--navy);
}

.panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.panel-benefits {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

.panel-benefits li {
  margin: 0 0 0.45em;
}

.panel-benefits li:last-child {
  margin-bottom: 0;
}

.inline-media {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: calc(var(--radius-sm));
  margin: 0 0 16px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel:hover .inline-media {
  transform: scale(1.03);
}

.panel label {
  display: block;
  font-weight: 700;
  color: var(--text);
}

.panel input,
.panel select,
.panel textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  outline: none;
  font: inherit;
  font-weight: 600;
}

.panel textarea {
  resize: vertical;
  min-height: 120px;
}

.panel input::placeholder,
.panel textarea::placeholder {
  color: rgba(10, 7, 54, 0.45);
  font-weight: 500;
}

.panel input:focus,
.panel select:focus,
.panel textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(110, 0, 223, 0.25);
}

.panel input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--teal-dark);
}

.panel form[aria-disabled="true"] {
  opacity: 0.98;
}

/* ——— Formulaire contact ——— */
.contact-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label em {
  color: var(--muted);
  font-weight: 500;
  font-style: normal;
}

.contact-form__submit {
  justify-self: flex-start;
  margin-top: 4px;
}

.contact-form__note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* Contrôle segmenté pour le choix joueur/manager */
.radio-segmented {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-segmented label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.radio-segmented input[type="radio"] {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.radio-segmented label:hover {
  border-color: rgba(110, 0, 223, 0.3);
}

.radio-segmented label:has(input[type="radio"]:checked) {
  background: rgba(110, 0, 223, 0.08);
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(110, 0, 223, 0.14);
  color: var(--violet);
}

@media (max-width: 540px) {
  .radio-segmented {
    grid-template-columns: 1fr;
  }
}

.profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

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

/* Cartes profils — flip 3D (Deux parcours) */
.profile-card--flip {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  perspective: 1400px;
  cursor: pointer;
  outline: none;
  transition: filter 0.35s ease;
}

.profile-card--flip:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 6px;
  border-radius: var(--radius);
}

.profile-card__shell {
  min-height: 520px;
}

@media (max-width: 920px) {
  .profile-card__shell {
    min-height: 480px;
  }
}

.profile-card__flip-inner {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  .profile-card__flip-inner {
    min-height: 480px;
  }
}

.profile-card--flip.is-flipped .profile-card__flip-inner {
  transform: rotateY(180deg);
}

.profile-card--flip:hover .profile-card__flip-inner {
  box-shadow: 0 28px 64px rgba(10, 7, 54, 0.22);
}

.profile-card__face {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid rgba(239, 239, 239, 0.12);
  overflow: hidden;
  background-color: var(--ink);
  background-size: cover;
  background-repeat: no-repeat;
}

.profile-card__face::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 7, 54, 0.7);
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
}

.profile-card__face > * {
  position: relative;
  z-index: 1;
}

.profile-card--flip.players .profile-card__face {
  background-image: url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=1400&q=80");
}

.profile-card--flip.players .profile-card__face--front {
  background-position: center 38%;
}

.profile-card--flip.players .profile-card__face--back {
  background-position: center 38%;
}

.profile-card--flip.managers .profile-card__face {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1400&q=80");
}

.profile-card--flip.managers .profile-card__face--front {
  background-position: center 22%;
}

.profile-card--flip.managers .profile-card__face--back {
  background-position: center 22%;
}

.profile-card__face--front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  text-align: center;
}

.profile-card__face--back {
  transform: rotateY(180deg);
}

.profile-card__flip-title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(42px, 9vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--on-dark);
}

.profile-card__flip-hint {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.72);
}

.profile-card__flip-back {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  margin: 0;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--on-dark);
  background: rgba(239, 239, 239, 0.16);
  border: 1px solid rgba(239, 239, 239, 0.35);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.profile-card__flip-back:hover {
  background: rgba(239, 239, 239, 0.26);
  border-color: rgba(49, 244, 104, 0.45);
  color: var(--lime);
}

.profile-card__flip-back:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.profile-inner--flip-back {
  min-height: 100%;
  padding: 64px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
}

.profile-card--flip ul {
  padding-left: 1.15em;
  margin: 0 0 22px;
  color: rgba(239, 239, 239, 0.92);
  font-weight: 600;
}

.profile-card--flip li {
  margin: 10px 0;
}

.profile-card--flip li::marker {
  color: var(--lime);
}

.profile-card--flip .btn-primary {
  align-self: flex-start;
  cursor: pointer;
}

/* ——— Comment ça marche (timeline) ——— */
.section--how-it-works {
  padding: clamp(80px, 10vw, 120px) 0;
}

.how-timeline {
  list-style: none;
  margin: 28px auto 0;
  padding: 0;
  max-width: min(860px, 100%);
  position: relative;
}

.how-timeline::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 30px;
  bottom: 30px;
  width: 4px;
  margin-left: -2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--violet) 0%, rgba(49, 244, 104, 0.85) 100%);
  opacity: 0.45;
  pointer-events: none;
}

.how-timeline__item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: clamp(18px, 3.5vw, 36px);
  align-items: start;
  padding-bottom: clamp(32px, 5vw, 48px);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-timeline__item:last-child {
  padding-bottom: 0;
}

.how-timeline__item:hover {
  transform: translateX(4px);
}

.how-timeline__marker {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 6px 20px rgba(49, 244, 104, 0.4);
  position: relative;
  z-index: 1;
  justify-self: center;
  flex-shrink: 0;
}

.how-timeline__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(26px, 4vw, 36px) clamp(24px, 4vw, 40px);
  position: relative;
  box-shadow: 0 10px 36px rgba(10, 7, 54, 0.08);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-timeline__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(110, 0, 223, 0.05);
  pointer-events: none;
}

.how-timeline__item:hover .how-timeline__card {
  border-color: rgba(110, 0, 223, 0.35);
  box-shadow: 0 18px 48px rgba(10, 7, 54, 0.12);
  transform: translateY(-3px);
}

.how-timeline__card > * {
  position: relative;
}

.how-timeline__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--teal-muted);
  border: 1px solid rgba(110, 0, 223, 0.35);
  margin-bottom: 14px;
  color: var(--teal-dark);
}

.how-timeline__icon svg {
  width: 24px;
  height: 24px;
}

.how-timeline__card h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.how-timeline__card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 17px);
  line-height: 1.6;
  max-width: 56ch;
}

@media (max-width: 520px) {
  .how-timeline::before {
    left: 26px;
  }

  .how-timeline__item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .how-timeline__marker {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .how-timeline__item:hover {
    transform: none;
  }
}

/* ——— Variante horizontale style Urban Sports Club (desktop) ——— */
@media (min-width: 900px) {
  .how-timeline--horizontal {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
    max-width: min(1180px, 100%);
    margin-top: 40px;
  }

  .how-timeline--horizontal::before {
    top: 27px;
    bottom: auto;
    left: 12.5%;
    right: 12.5%;
    width: auto;
    height: 3px;
    margin-left: 0;
    background: linear-gradient(90deg, var(--violet) 0%, rgba(49, 244, 104, 0.85) 100%);
    opacity: 0.35;
  }

  .how-timeline--horizontal .how-timeline__item {
    grid-template-columns: none;
    grid-template-rows: auto auto;
    padding-bottom: 0;
    text-align: center;
    align-items: stretch;
  }

  .how-timeline--horizontal .how-timeline__item:hover {
    transform: translateY(-4px);
  }

  .how-timeline--horizontal .how-timeline__marker {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    background: #ffffff;
    color: var(--violet);
    border: 3px solid var(--lime);
    box-shadow: 0 8px 24px rgba(10, 7, 54, 0.08);
  }

  .how-timeline--horizontal .how-timeline__item:hover .how-timeline__marker {
    background: var(--lime);
    color: var(--ink);
    border-color: var(--lime);
  }

  .how-timeline--horizontal .how-timeline__card {
    padding: 22px 20px 24px;
    height: 100%;
  }

  .how-timeline--horizontal .how-timeline__card::before {
    background: transparent;
  }

  .how-timeline--horizontal .how-timeline__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: 12px;
  }

  .how-timeline--horizontal .how-timeline__icon svg {
    width: 20px;
    height: 20px;
  }

  .how-timeline--horizontal .how-timeline__card h3 {
    margin: 0 0 8px;
    font-size: 18px;
  }

  .how-timeline--horizontal .how-timeline__card p {
    font-size: 14px;
    line-height: 1.5;
    max-width: none;
  }
}

/* ——— Managers : comment ça marche (vidéo + captures + étapes) ——— */
.managers-how .section-title {
  margin-bottom: clamp(22px, 4vw, 32px);
}

.managers-how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
}

.managers-how-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.managers-how-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: calc(var(--radius) + 6px);
  border: 2px dashed rgba(110, 0, 223, 0.35);
  background: linear-gradient(145deg, rgba(110, 0, 223, 0.06), rgba(49, 244, 104, 0.08));
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 28px);
  text-align: center;
}

.managers-how-video__placeholder {
  margin: 0;
  max-width: 36ch;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.55;
}

.managers-how-screens {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.managers-how-screen {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.managers-how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: managers-how;
}

.managers-how-steps li {
  counter-increment: managers-how;
  position: relative;
  padding: 0 0 18px 52px;
  font-size: clamp(17px, 1.7vw, 19px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}

.managers-how-steps li:last-child {
  padding-bottom: 0;
}

.managers-how-steps li::before {
  content: counter(managers-how);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 6px 18px rgba(49, 244, 104, 0.35);
}

@media (max-width: 920px) {
  .managers-how-layout {
    grid-template-columns: 1fr;
  }

  .managers-how-screens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .managers-how-screens {
    grid-template-columns: 1fr;
  }
}

/* ——— Managers : pourquoi Timbly ——— */
.managers-why {
  border-top: 1px solid var(--border);
}

.managers-why .section-title {
  margin-bottom: clamp(22px, 4vw, 32px);
}

.managers-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.managers-why-block h3 {
  margin-top: 0;
}

.managers-why-block--ads {
  border-color: rgba(49, 244, 104, 0.45);
  box-shadow: 0 10px 36px rgba(49, 244, 104, 0.12);
}

.managers-why-block--ads::before {
  background: linear-gradient(
    135deg,
    rgba(49, 244, 104, 0.12) 0%,
    rgba(110, 0, 223, 0.08) 100%
  ) !important;
}

.managers-why-ads-title {
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: -0.02em;
  color: var(--navy);
}

.managers-why-ads-lead {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}

.managers-why-pricing {
  grid-column: 1 / -1;
}

.managers-why-optional {
  font-size: 0.85em;
  font-weight: 600;
  opacity: 0.75;
}

.managers-why-pricing-intro {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--navy);
}

.managers-why-pricing-foot {
  margin: 12px 0 0;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--navy);
}

@media (max-width: 920px) {
  .managers-why-grid {
    grid-template-columns: 1fr;
  }

  .managers-why-pricing {
    grid-column: auto;
  }
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.proof-banner {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  background: var(--ink);
  margin-top: 16px;
  box-shadow: var(--shadow);
}

.proof-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.85;
}

.proof-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 7, 54, 0.68);
  pointer-events: none;
  z-index: 1;
}

.proof-banner-inner {
  position: relative;
  padding: 24px;
  margin-top: -120px;
  z-index: 2;
}

.proof-banner-inner .section-title h2,
.proof-banner-inner .section-title p {
  color: var(--on-dark);
}

.proof-banner-inner .section-title p {
  color: rgba(239, 239, 239, 0.82);
}

@media (max-width: 920px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-banner img {
    height: 240px;
  }
  .proof-banner-inner {
    margin-top: -100px;
  }
}

.proof {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(30, 38, 44, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.proof:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 0, 223, 0.4);
  box-shadow: 0 14px 36px rgba(30, 38, 44, 0.08);
}

.proof .num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--violet);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.proof .label {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.faq h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--navy);
}

/* ——— Page FAQ (contenu enrichi) ——— */
.faq-page .faq-intro-panel__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.faq-page .faq-intro-panel__text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--muted);
}

.faq-page .faq.faq-page-columns {
  margin-top: 20px;
}

body.faq-page .faq.faq-page-columns > section + section {
  margin-top: 0;
}

body.faq-page .faq > section > h3.faq-column-heading {
  margin: 0 0 14px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--navy);
}

.faq-page .faq-page-columns .acc-item[id] {
  scroll-margin-top: 96px;
}

.faq-page .faq-hot-panel__title {
  margin: 0 0 14px;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 800;
  color: var(--navy);
}

.faq-hotlinks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-hotlinks__a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(49, 244, 104, 0.18);
  border: 1px solid rgba(49, 244, 104, 0.45);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-hotlinks__a:hover {
  background: rgba(49, 244, 104, 0.32);
  transform: none;
}

.faq-page .faq-contact-panel__title {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--navy);
}

.faq-page .faq-contact-panel__text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--muted);
}

.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 4px 16px rgba(30, 38, 44, 0.04);
}

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

.acc-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-size: 15px;
}

.acc-btn:focus-visible {
  outline: 3px solid rgba(110, 0, 223, 0.45);
  outline-offset: -2px;
}

.acc-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  background: #fff;
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--teal-dark);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, background 0.25s ease;
}

.acc-item[data-open="true"] .acc-icon {
  transform: rotate(45deg);
  border-color: rgba(110, 0, 223, 0.45);
  background: var(--teal-muted);
}

.acc-panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.acc-item[data-open="true"] .acc-panel {
  max-height: min(100vh, 48rem);
}

.acc-panel-inner {
  padding: 0 18px 16px;
  color: var(--muted);
  font-weight: 600;
}

.acc-panel-inner p {
  margin: 0;
}

/* Bloc CTA sous la FAQ (accueil) : image + texte clair */
.panel--faq-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(239, 239, 239, 0.14);
  border-radius: var(--radius);
  padding: 0;
  background: var(--ink);
  box-shadow: 0 20px 50px rgba(10, 7, 54, 0.18);
  min-height: 200px;
  display: flex;
  align-items: stretch;
}

.panel.panel--faq-cta > .panel--faq-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(118deg, rgba(10, 7, 54, 0.88) 0%, rgba(33, 5, 90, 0.72) 42%, rgba(10, 7, 54, 0.78) 100%),
    url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.panel.panel--faq-cta > .panel--faq-cta__content {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 4vw, 32px) clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
}

.panel--faq-cta__content h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}

.panel--faq-cta__content > p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(239, 239, 239, 0.92);
  max-width: 48ch;
}

.panel--faq-cta__actions {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.panel--faq-cta .btn-primary {
  border-color: transparent;
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-green);
}

.panel--faq-cta .btn-primary:hover {
  background: var(--lime-dark);
}

.panel--faq-cta .btn:not(.btn-primary) {
  border-color: rgba(239, 239, 239, 0.45);
  background: rgba(239, 239, 239, 0.08);
  color: var(--on-dark);
}

.panel--faq-cta .btn:not(.btn-primary):hover {
  border-color: rgba(239, 239, 239, 0.7);
  background: rgba(239, 239, 239, 0.14);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.final-cta {
  padding: 0 0 56px;
}

.final-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--teal-muted);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.final-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(30, 38, 44, 0.1);
}

.final-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}

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

.final-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.final-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.footer {
  padding: 40px 0 32px;
  background: var(--ink);
  color: rgba(239, 239, 239, 0.72);
  border-top: none;
}

.footer a {
  color: rgba(239, 239, 239, 0.78);
  font-weight: 600;
}

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

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 200px;
}

.footer-title {
  font-weight: 800;
  color: var(--on-dark);
  margin: 0 0 12px;
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease, opacity 0.25s ease;
}

.footer-links a:hover {
  transform: translateX(6px);
}

.footer-social-tagline {
  margin: -4px 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(239, 239, 239, 0.55);
  line-height: 1.4;
}

.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social__link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}

.footer-social__link:hover {
  transform: translateX(6px);
}

.footer-social__link-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.footer-social__link .footer-social__net {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.5);
  margin: 0;
}

.footer-social__id {
  font-size: 15px;
  font-weight: 700;
  color: rgba(239, 239, 239, 0.88);
  line-height: 1.2;
}

.footer-social__link:hover .footer-social__id {
  color: var(--lime);
}

.footer-social__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  opacity: 0.92;
}

.footer-social__link:hover .footer-social__icon {
  opacity: 1;
}

/* Apparition au scroll — style Stripe (voir js/main.js) */
.js-reveal-active .reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}

.js-reveal-active .reveal {
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.js-reveal-active .reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Variant "fade" : apparition sans translation (blocs de texte denses) */
.js-reveal-active .reveal--fade:not(.is-inview) {
  transform: none;
}

/* Variant "slide" horizontal : bloc qui glisse depuis la gauche/droite */
.js-reveal-active .reveal--left:not(.is-inview) {
  transform: translateX(-28px);
}
.js-reveal-active .reveal--right:not(.is-inview) {
  transform: translateX(28px);
}
.js-reveal-active .reveal--left.is-inview,
.js-reveal-active .reveal--right.is-inview {
  transform: translateX(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn-primary,
  .panel,
  .ps-block,
  .final-card,
  .profile-card,
  .how-timeline__item,
  .how-timeline__card,
  .proof,
  .stat-bubble,
  .store-badge,
  .footer-links a,
  .feature-row__img-wrap img,
  .inline-media,
  .acc-panel,
  .acc-icon,
  .testimonials-track,
  .carousel-nav,
  .carousel-dot {
    transition: none !important;
    animation: none !important;
  }

  .page-banner__parallax {
    transform: none !important;
    will-change: auto;
  }

  .btn:hover,
  .btn:active,
  .profile-card:hover,
  .how-timeline__item:hover,
  .how-timeline__item:hover .how-timeline__card,
  .proof:hover,
  .panel:hover,
  .ps-block:hover,
  .final-card:hover,
  .stat-bubble:hover,
  .store-badge:hover,
  .footer-links a:hover {
    transform: none;
  }

  .feature-row__visual:hover .feature-row__img-wrap img {
    transform: none;
  }

  .about-phone--back,
  .about-phone--left,
  .about-phone--right,
  .about-phone--center,
  .about-cta-phone--rear,
  .about-cta-phone--front {
    transform: none !important;
    opacity: 1 !important;
  }

  .home .hero {
    animation: none;
  }

  .home .hero-grid > div:first-child > *,
  .home .hero-mockup-img {
    animation: none !important;
  }

  .home .hero-deco-star,
  .hero-mockup-float,
  .cta-dark h2,
  .star-float {
    animation: none !important;
  }

  .js-reveal-active .reveal:not(.is-inview),
  .js-reveal-active .reveal,
  .js-reveal-active .reveal.is-inview {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .sector-tile:hover img {
    transform: none;
  }

  .acc-item[data-open="true"] .acc-icon {
    transform: none;
  }

  .profile-card--flip .profile-card__flip-inner {
    transition: none !important;
  }

  .profile-card--flip.is-flipped .profile-card__flip-inner {
    transform: none !important;
  }

  .profile-card__face--back {
    transform: none !important;
  }

  .profile-card--flip:not(.is-flipped) .profile-card__face--back {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .profile-card--flip.is-flipped .profile-card__face--front {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .profile-card--flip.is-flipped .profile-card__face--back {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .trust-marquee__track {
    animation: none !important;
  }

  .trust-marquee__viewport {
    overflow: visible;
  }

  .trust-marquee__list--clone {
    display: none;
  }

  .ps-slider__track {
    transition: none !important;
  }
}

/* ——— Checkbox de consentement (RGPD) ——— */
.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  padding: 6px 0;
  user-select: none;
}

.checkbox-field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  border: 2px solid rgba(10, 7, 54, 0.25);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.checkbox-field input[type="checkbox"]:hover {
  border-color: var(--violet);
}

.checkbox-field input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

.checkbox-field input[type="checkbox"]:checked {
  background: var(--violet);
  border-color: var(--violet);
  box-shadow: 0 4px 12px rgba(110, 0, 223, 0.25);
}

.checkbox-field input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-field > span {
  flex: 1;
  color: var(--text);
  font-weight: 500;
}

.checkbox-field > span a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   Hero with video background (home page)
   ========================================================================== */

.home .hero.hero--video {
  background: #0a0736;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 7, 54, 0.45) 0%, rgba(10, 7, 54, 0.78) 100%),
    radial-gradient(1100px 520px at 18% 32%, rgba(110, 0, 223, 0.38), transparent 72%),
    radial-gradient(900px 420px at 82% 70%, rgba(49, 244, 104, 0.12), transparent 68%);
}

.hero--video .container {
  position: relative;
  z-index: 2;
}

.hero--video .hero-deco-star {
  z-index: 2;
}

.home .hero--video h1,
.home .hero--video p {
  text-shadow: 0 2px 24px rgba(10, 7, 54, 0.55);
}

/* Large CTA variant used in the hero */
.btn-lg {
  padding: 14px 26px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.home .hero--video .btn-lg.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(49, 244, 104, 0.32);
}

.home .hero--video .btn-lg.btn-primary:hover {
  background: var(--lime-dark);
  box-shadow: 0 18px 44px rgba(49, 244, 104, 0.4);
}

.home .hero--video .btn-lg.btn-ghost {
  background: rgba(239, 239, 239, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-color: rgba(239, 239, 239, 0.55);
  color: var(--on-dark);
}

.home .hero--video .btn-lg.btn-ghost:hover {
  background: rgba(239, 239, 239, 0.18);
  border-color: rgba(239, 239, 239, 0.8);
}

.hero--video .hero-actions {
  margin-top: 28px;
  row-gap: 14px;
}

/* Reduced motion: pause video, show the poster instead */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  .home .hero.hero--video {
    background: #0a0736 url("../assets/hero-futsal-poster.jpg") center / cover no-repeat;
  }
}

/* ==========================================================================
   Matches section — cartes cliquables style Playtomic
   ========================================================================== */

.matches-section {
  background: linear-gradient(180deg, #f7f7fb 0%, #ffffff 100%);
}

.matches-section .section-title {
  display: block;
  text-align: center;
  margin-bottom: 36px;
}

.matches-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(110, 0, 223, 0.08);
  color: var(--violet);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.matches-section .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(49, 244, 104, 0.22);
}

.matches-section .section-title p {
  margin: 6px auto 0;
  max-width: 46ch;
}

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

@media (max-width: 1024px) {
  .matches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* ---- Carte ---- */
.match-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(10, 7, 54, 0.08);
  border-radius: 20px;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(10, 7, 54, 0.04);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
  overflow: hidden;
}

.match-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet) 0%, var(--lime) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.match-card:hover,
.match-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(10, 7, 54, 0.12);
  border-color: rgba(110, 0, 223, 0.28);
  outline: none;
}

.match-card:hover::before,
.match-card:focus-visible::before {
  opacity: 1;
}

.match-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.match-card__sport {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.match-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(10, 7, 54, 0.06);
  color: var(--navy);
}

.match-card__badge--hot {
  background: rgba(49, 244, 104, 0.18);
  color: #0d7a2d;
}

.match-card__badge--urgent {
  background: rgba(255, 92, 71, 0.16);
  color: #c4341d;
}

.match-card__venue {
  margin: 2px 0 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.match-card__address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.match-card__address svg {
  flex-shrink: 0;
  color: var(--violet);
}

.match-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.match-card__meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.match-card__meta svg {
  color: var(--violet);
  opacity: 0.75;
}

.match-card__level {
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(110, 0, 223, 0.08);
  color: var(--violet);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.match-card__players {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.match-card__avatars {
  display: flex;
  align-items: center;
}

.match-card__avatars .avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--av, #6e00df);
  color: #ffffff;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(10, 7, 54, 0.14);
}

.match-card__avatars .avatar:first-child {
  margin-left: 0;
}

.match-card__avatars .avatar--more {
  background: #efefef;
  color: var(--navy);
}

.match-card__count {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.match-card__count strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--violet);
}

.match-card__count span {
  color: var(--muted);
  font-weight: 600;
}

.match-card__progress {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(10, 7, 54, 0.08);
  overflow: hidden;
}

.match-card__progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--lime) 0%, #1fd152 100%);
  border-radius: 999px;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.match-card__progress-bar--urgent {
  background: linear-gradient(90deg, #ffb13d 0%, #ff5c47 100%);
}

.match-card__urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 2px;
}

.urgency {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.urgency svg {
  flex-shrink: 0;
}

.urgency--time {
  background: rgba(110, 0, 223, 0.08);
  color: var(--violet);
}

.urgency--scarcity {
  background: rgba(255, 122, 69, 0.16);
  color: #c4431d;
}

.urgency--critical {
  background: rgba(255, 77, 77, 0.14);
  color: #c4221d;
  animation: urgency-pulse 2.1s ease-in-out infinite;
}

.urgency--social {
  background: rgba(10, 7, 54, 0.06);
  color: var(--navy);
}

@keyframes urgency-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.35);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 77, 77, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .urgency--critical {
    animation: none;
  }
}

.match-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px dashed rgba(10, 7, 54, 0.12);
}

.match-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.match-card__price span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 2px;
}

.match-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(49, 244, 104, 0.3);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.match-card__cta::after {
  content: "→";
  font-weight: 700;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.match-card:hover .match-card__cta {
  background: var(--lime-dark);
  box-shadow: 0 12px 26px rgba(49, 244, 104, 0.4);
}

.match-card:hover .match-card__cta::after {
  transform: translateX(4px);
}

.matches-section__footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* Le btn-ghost du hero est blanc-sur-sombre ; on le remet en sombre-sur-clair ici */
.home .matches-section .btn-ghost {
  border-color: var(--border);
  color: var(--navy);
  background: #ffffff;
  backdrop-filter: none;
}

.home .matches-section .btn-ghost:hover {
  background: rgba(110, 0, 223, 0.06);
  border-color: rgba(110, 0, 223, 0.35);
  color: var(--violet);
}

/* ==========================================================================
   Features grid (joueurs/managers — icône + titre + description)
   ========================================================================== */

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

@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.features-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(10, 7, 54, 0.08);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(10, 7, 54, 0.04);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.features-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--violet) 0%, var(--lime) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 7, 54, 0.1);
  border-color: rgba(110, 0, 223, 0.24);
}

.features-card:hover::before {
  opacity: 1;
}

.features-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(110, 0, 223, 0.1);
  color: var(--violet);
  margin-bottom: 14px;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.features-card:hover .features-card__icon {
  background: rgba(49, 244, 104, 0.18);
  color: var(--navy);
  transform: scale(1.06);
}

.features-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.features-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

/* ==========================================================================
   Grille de témoignages (2 cartes côte à côte — joueurs/managers)
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

/* ==========================================================================
   Help strip (ligne compacte "Ta question n'est pas ici ?")
   ========================================================================== */

.help-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 24px;
  margin-top: 16px;
  background: rgba(110, 0, 223, 0.05);
  border: 1px solid rgba(110, 0, 223, 0.14);
  border-radius: 16px;
}

.help-strip__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.help-strip__text strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.help-strip__text span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* ==========================================================================
   Panel "login/compte gérant" enrichi
   ========================================================================== */

.panel--login {
  display: grid;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.panel--login::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 0, 223, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.panel--login__header {
  position: relative;
}

.panel--login .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(110, 0, 223, 0.08);
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel--login .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(49, 244, 104, 0.22);
}

.panel--login h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.panel--login__header > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.panel--login__perks {
  margin: 0;
}

.panel--login__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

/* Variante 4 colonnes du proof-grid pour managers */
.proof-grid--managers {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .proof-grid--managers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .proof-grid--managers {
    grid-template-columns: 1fr;
  }
}
