/**
 * StepCoaching Elementor Widgets — Bundled CSS
 * BEM-namespaced styles. All values are tokens that Elementor controls override
 * via {{WRAPPER}} selectors at higher specificity.
 */

:root {
  --sc-ink: #0a0a0a;
  --sc-ink-elev: #141414;
  --sc-cream-base: #fdfbf5;
  --sc-cream-warm: #ffeda7;
  --sc-red: #ff4141;
  --sc-red-deep: #e63131;
  --sc-muted: rgba(255, 255, 255, 0.4);
  --sc-line-light: rgba(18, 18, 18, 0.12);
  --sc-line-dark: rgba(255, 255, 255, 0.12);
}

/* ========== Common reset ========== */
.sc-section {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--sc-ink);
  line-height: 1.55;
  box-sizing: border-box;
}
.sc-section * { box-sizing: border-box; }
.sc-section img { display: block; max-width: 100%; height: auto; }

.sc-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .sc-container { padding: 0 2.5rem; }
}

/* ========== Typography helpers ========== */
.sc-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.45);
}
.sc-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sc-display {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
}
.sc-h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.sc-h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.sc-stat {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.sc-body {
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  line-height: 1.55;
}

/* ========== CTA buttons ========== */
.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 56px;
  padding: 0 2.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--sc-red);
  color: #fff;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}
/* Force le texte blanc + fond rouge sur les boutons rouges (variante par défaut),
   pour battre les a:link / a:visited / button{} styles du thème WP. */
.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light),
.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light):link,
.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light):visited,
.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light):hover,
.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light):focus,
.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light):active,
.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light) span { color: #fff !important; }

button.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light),
.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light) { background-color: var(--sc-red) !important; border: none !important; }
button.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light):hover,
.sc-btn:not(.sc-btn--ghost):not(.sc-btn--light):hover { background-color: var(--sc-red-deep) !important; }

.sc-btn:hover { background: var(--sc-red-deep); }
.sc-btn:active { transform: scale(0.98); }
.sc-btn--ghost {
  background: transparent;
  color: var(--sc-ink);
  border: 1px solid rgba(18, 18, 18, 0.25);
}
.sc-btn--ghost:hover { background: var(--sc-ink); color: var(--sc-cream-base); border-color: var(--sc-ink); }
.sc-btn--light { background: var(--sc-cream-base); color: var(--sc-ink); }
.sc-btn--light:hover { background: var(--sc-cream-warm); }
.sc-btn--sm { height: 36px; padding: 0 1rem; font-size: 0.75rem; }
.sc-btn--md { height: 48px; padding: 0 1.75rem; font-size: 0.8125rem; }
.sc-btn--lg { height: 56px; padding: 0 2.25rem; font-size: 0.875rem; }
.sc-btn--xl { height: 68px; padding: 0 3rem; font-size: 0.9375rem; }
.sc-btn--block { width: 100%; }

/* ========== Section padding ========== */
.sc-section--light { background: var(--sc-cream-base); color: var(--sc-ink); }
.sc-section--dark { background: var(--sc-ink); color: var(--sc-cream-base); }
.sc-section__inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .sc-section__inner {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* ========== Header / Navbar ========== */
.sc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--sc-ink);
  color: var(--sc-cream-base);
  border-bottom: 1px solid rgba(253, 251, 245, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.sc-header.is-scrolled {
  background: var(--sc-ink);
  border-bottom-color: rgba(253, 251, 245, 0.12);
}
.sc-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 1.5rem;
}
@media (min-width: 768px) { .sc-header__inner { padding: 0 2.5rem; } }
.sc-header__logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sc-cream-base);
  text-decoration: none;
  justify-self: start;
  grid-column: 1;
}
.sc-header__nav {
  list-style: none;
  display: none;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  justify-self: center;
  grid-column: 2;
}
.sc-header__inner > .sc-btn { justify-self: end; grid-column: 3; }
@media (min-width: 768px) { .sc-header__nav { display: flex; } }
.sc-header__link {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 251, 245, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}
.sc-header__link:hover { color: var(--sc-cream-base); }

/* ========== Hero ========== */
.sc-hero {
  position: relative;
  min-height: 100svh;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: var(--sc-ink);
  color: var(--sc-cream-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sc-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.sc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.78) 100%);
  pointer-events: none;
}
.sc-hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  z-index: 2;
  opacity: 0.18;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, var(--sc-red), transparent 60%);
}
.sc-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
@media (min-width: 768px) { .sc-hero__inner { padding: 0 2.5rem; } }
.sc-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 251, 245, 0.35);
  background: rgba(253, 251, 245, 0.06);
  backdrop-filter: blur(4px);
  color: rgba(253, 251, 245, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.sc-hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sc-red);
  animation: sc-pulse 2s ease-in-out infinite;
}
@keyframes sc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.sc-hero__title {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--sc-cream-base);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}
.sc-hero__title-line { display: block; }
.sc-hero__sub {
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  line-height: 1.55;
  color: rgba(253, 251, 245, 0.82);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  margin: 2rem auto 0;
  max-width: 36rem;
}
.sc-hero__cta-wrap {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.sc-hero__micro {
  font-size: 0.8125rem;
  color: rgba(253, 251, 245, 0.72);
}

/* ========== FactsBar ========== */
.sc-facts {
  background: var(--sc-cream-base);
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}
.sc-facts__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.65);
}
@media (min-width: 768px) {
  .sc-facts__inner { padding: 1.25rem 2.5rem; gap: 0.5rem 2.5rem; }
}
.sc-facts__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.sc-facts__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-red);
  flex-shrink: 0;
  font-size: 12px;
}
.sc-facts__check svg,
.sc-facts__check i { width: 12px; height: 12px; font-size: inherit; }
.sc-facts__sep {
  display: none;
  width: 1px;
  height: 1rem;
  background: rgba(18, 18, 18, 0.15);
  margin-left: 0.75rem;
}
@media (min-width: 768px) { .sc-facts__sep { display: inline-block; } }

/* ========== Manifesto ========== */
.sc-manifesto { background: var(--sc-cream-base); }
.sc-manifesto__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .sc-manifesto__inner {
    padding: 5rem 2.5rem;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}
.sc-manifesto__intro { margin-top: 1.5rem; max-width: 36rem; }
.sc-manifesto__cta-wrap { margin-top: 2rem; }
.sc-manifesto__list { margin-top: 0; }
.sc-manifesto__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.sc-manifesto__intro {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(18, 18, 18, 0.68);
  max-width: 36rem;
}
.sc-manifesto__list {
  list-style: none !important;
  margin: 2.5rem 0 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.25rem !important;
  max-width: 40rem;
}
.sc-manifesto__list > li {
  margin: 0 !important;
  list-style: none !important;
}
.sc-manifesto__list > li + li { margin-top: 0 !important; }
.sc-manifesto__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(18, 18, 18, 0.05);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 0.75rem;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--sc-i, 0) * 100ms);
}
.sc-manifesto.is-pending .sc-manifesto__item,
.sc-manifesto.is-pending .sc-manifesto__conclusion {
  opacity: 0;
  transform: translateY(20px);
}
.sc-manifesto__item-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 18, 18, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(18, 18, 18, 0.45);
  flex-shrink: 0;
}
.sc-manifesto__item-icon svg { width: 12px; height: 12px; }
.sc-manifesto__item-text {
  font-size: 1.0625rem;
  color: rgba(18, 18, 18, 0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(18, 18, 18, 0.4);
  text-decoration-thickness: 2px;
}
.sc-manifesto__conclusion {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--sc-ink);
  color: var(--sc-cream-base);
  border-radius: 0.75rem;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--sc-i, 0) * 100ms);
}
.sc-manifesto__conclusion-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--sc-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.sc-manifesto__conclusion-icon svg { width: 12px; height: 12px; }
.sc-manifesto__conclusion-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .sc-manifesto__conclusion-text { font-size: 1.25rem; }
}

/* ========== Coachs ========== */
.sc-coaches { background: var(--sc-cream-base); }
.sc-coaches__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
@media (min-width: 768px) {
  .sc-coaches__inner { padding: 5rem 2.5rem; }
}
.sc-coaches__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .sc-coaches__header {
    grid-template-columns: 7fr 5fr;
    margin-bottom: 5rem;
  }
}
.sc-coaches__sub { padding-top: 0; }
@media (min-width: 1024px) { .sc-coaches__sub { padding-top: 3rem; } }
.sc-coaches__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .sc-coaches__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.sc-coach {
  background: var(--sc-cream-base);
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.03);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.2s ease;
}
@media (min-width: 768px) { .sc-coach { padding: 2rem; } }
.sc-coach:hover { border-color: rgba(18, 18, 18, 0.3); }
.sc-coach__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.sc-coach__avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--sc-ink);
  color: var(--sc-cream-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.sc-coach__name { font-size: 1rem; font-weight: 600; line-height: 1.2; }
.sc-coach__diploma {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.45);
  margin-top: 0.25rem;
}
.sc-coach__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  padding-top: 1.25rem;
}
.sc-coach__row-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.55);
}
.sc-coach__specialty {
  font-size: 0.78rem;
  color: var(--sc-ink);
  text-align: right;
  max-width: 60%;
  line-height: 1.3;
}
.sc-coach__quote {
  font-size: 0.95rem;
  color: rgba(18, 18, 18, 0.72);
  font-style: italic;
  line-height: 1.4;
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
}
.sc-coaches__stats {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  display: grid;
  grid-template-columns: 1fr;
}
.sc-coaches__stats > * + * { border-top: 1px solid rgba(18, 18, 18, 0.12); }
@media (min-width: 768px) {
  .sc-coaches__stats {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 4rem;
  }
  .sc-coaches__stats > * + * { border-top: none; border-left: 1px solid rgba(18, 18, 18, 0.12); }
}
.sc-coaches__stat {
  padding: 1.25rem 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .sc-coaches__stat {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.sc-coaches__stat-value {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 768px) { .sc-coaches__stat-value { font-size: clamp(3rem, 8vw, 6.5rem); } }
.sc-coaches__stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.55);
}

/* ========== Galerie ========== */
.sc-gallery { background: var(--sc-cream-base); }
.sc-gallery__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}
@media (min-width: 768px) { .sc-gallery__inner { padding: 3.5rem 2.5rem; } }
.sc-gallery__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .sc-gallery__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
    gap: 1.5rem;
  }
}
.sc-gallery__title { font-size: clamp(1.75rem, 3.4vw, 2.75rem); font-weight: 600; line-height: 1.05; max-width: 20ch; margin: 0; }
.sc-gallery__nav { display: flex; gap: 0.5rem; flex-shrink: 0; }
.sc-gallery__btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(18, 18, 18, 0.25);
  background: transparent;
  color: var(--sc-ink);
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  line-height: 1;
}
.sc-gallery__btn:hover { background: var(--sc-ink); color: var(--sc-cream-base); border-color: var(--sc-ink); }
.sc-gallery__btn svg { width: 16px; height: 16px; color: inherit; }
.sc-gallery__nav--mobile { display: flex; }
@media (min-width: 768px) { .sc-gallery__nav--mobile { display: none; } }

.sc-gallery__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.sc-gallery__track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .sc-gallery__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    overflow: visible;
  }
}
@media (min-width: 1024px) {
  .sc-gallery__track { gap: 1.25rem; }
}
.sc-gallery__item {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(18, 18, 18, 0.05);
  scroll-snap-align: start;
}
@media (min-width: 768px) { .sc-gallery__item { width: auto; } }
.sc-gallery__item img { width: 100%; height: 100%; object-fit: cover; }

/* ========== Formats ========== */
.sc-formats { background: var(--sc-cream-base); }
.sc-formats__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
@media (min-width: 768px) { .sc-formats__inner { padding: 5rem 2.5rem; } }
.sc-formats__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 3.5rem;
}
.sc-formats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1024px) { .sc-formats__grid { grid-template-columns: 1fr 1fr; } }
.sc-format {
  background: var(--sc-cream-base);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media (min-width: 768px) { .sc-format { padding: 2.5rem; } }
.sc-format:hover { transform: translateY(-4px); border-color: rgba(18, 18, 18, 0.3); }
.sc-format__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.sc-format__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sc-red);
  margin-bottom: 0.375rem;
}
.sc-format__place {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.45);
}
.sc-format__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(18, 18, 18, 0.72);
  flex-shrink: 0;
}
.sc-format__icon svg { width: 1.5rem; height: 1.5rem; }
.sc-format__headline {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.sc-format__paragraph {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(18, 18, 18, 0.68);
  margin-top: 1.5rem;
  max-width: 34rem;
}
.sc-format__rows {
  margin-top: 2.5rem;
}
.sc-format__rows-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.45);
  margin-bottom: 1rem;
}
.sc-format__table { width: 100%; border-top: 1px solid rgba(18, 18, 18, 0.12); }
.sc-format__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
}
.sc-format__row-key { font-size: 0.85rem; color: rgba(18, 18, 18, 0.72); }
.sc-format__row-value {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

/* ========== Méthode ========== */
.sc-method { background: var(--sc-cream-base); }
.sc-method__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
@media (min-width: 768px) { .sc-method__inner { padding: 5rem 2.5rem; } }
.sc-method__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
}
.sc-method__sub {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(18, 18, 18, 0.68);
  margin: 1.5rem 0 3rem;
  max-width: 42rem;
}
.sc-method__list { display: flex; flex-direction: column; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.sc-method__item {
  background: var(--sc-cream-base);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease;
}
@media (min-width: 768px) {
  .sc-method__item { padding: 2rem; }
}
.sc-method__item:hover { border-color: rgba(18, 18, 18, 0.3); }
.sc-method__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.sc-method__num {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: rgba(18, 18, 18, 0.3);
  letter-spacing: -0.045em;
}
.sc-method__badge {
  display: inline-flex;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 65, 65, 0.15);
  color: var(--sc-red);
  border-radius: 999px;
  align-self: flex-start;
}
.sc-method__step-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0.75rem 0 0;
}
@media (min-width: 768px) { .sc-method__step-title { font-size: 1.5rem; } }
.sc-method__step-body {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(18, 18, 18, 0.68);
  margin: 0.5rem 0 0;
}
.sc-method__cta-wrap { margin-top: 3rem; }

/* ========== AppShowcase ========== */
.sc-app {
  background: var(--sc-ink);
  color: var(--sc-cream-base);
  position: relative;
  overflow: hidden;
}
.sc-app__glow {
  position: absolute;
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  pointer-events: none;
  opacity: 0.12;
  background: radial-gradient(circle at 50% 50%, var(--sc-red), transparent 60%);
}
.sc-app__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
@media (min-width: 768px) { .sc-app__inner { padding: 5rem 2.5rem; } }
.sc-app__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .sc-app__header { grid-template-columns: 7fr 5fr; gap: 2rem; margin-bottom: 5rem; }
}
.sc-app__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
}
.sc-app__sub {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(253, 251, 245, 0.68);
  max-width: 34rem;
}
.sc-app__health {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.sc-app__health-icon {
  /* La hauteur est pilotée par le control SLIDER "Hauteur du badge" dans Elementor.
     On force juste les autres règles pour battre les resets du thème WP. */
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: block !important;
  flex: 0 0 auto !important;
  height: 34px; /* fallback si le slider n'a pas de valeur */
}
@media (min-width: 1024px) {
  .sc-app__header { align-items: end; }
  .sc-app__health { justify-content: center; padding-top: 0; padding-bottom: 0.5rem; }
}
.sc-app__track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin: 0 -1.25rem;
  padding: 0 1.25rem 1rem;
  scrollbar-width: none;
}
.sc-app__track::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .sc-app__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}
.sc-app__slide {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: center;
}
@media (min-width: 1024px) {
  .sc-app__slide { width: 100%; }
}
.sc-app__caption { margin-top: 1.5rem; text-align: center; max-width: 300px; }
.sc-app__caption-num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 251, 245, 0.45);
  font-variant-numeric: tabular-nums;
}
.sc-app__caption-label {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0.5rem;
}
.sc-app__caption-desc {
  font-size: 0.85rem;
  color: rgba(253, 251, 245, 0.55);
  line-height: 1.4;
  margin-top: 0.5rem;
}

/* Phone frame */
.sc-phone {
  position: relative;
  width: 280px;
  height: 580px;
  background: #202020;
  border-radius: 46px;
  box-shadow: 0 40px 80px -28px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.sc-phone__screen {
  position: absolute;
  inset: 8px;
  border-radius: 38px;
  overflow: hidden;
  background: #0f0f0f;
}
.sc-phone__notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 22px;
  border-radius: 999px;
  background: #000;
  z-index: 5;
}

/* ========== Témoignages ========== */
.sc-test { background: var(--sc-cream-base); }
.sc-test__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
@media (min-width: 768px) { .sc-test__inner { padding: 5rem 2.5rem; } }
.sc-test__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .sc-test__header { grid-template-columns: 7fr 5fr; gap: 2rem; margin-bottom: 5rem; }
}
.sc-test__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
}
.sc-test__sub {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(18, 18, 18, 0.68);
  max-width: 34rem;
}
@media (min-width: 1024px) { .sc-test__sub { padding-top: 3rem; } }
.sc-test__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin: 0 -1.25rem;
  padding: 0 1.25rem 0.5rem;
  scrollbar-width: none;
}
.sc-test__track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .sc-test__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}
.sc-test__slide { flex-shrink: 0; width: 280px; scroll-snap-align: center; }
@media (min-width: 768px) { .sc-test__slide { width: auto; } }
.sc-test__card {
  background: var(--sc-ink);
  color: var(--sc-cream-base);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) { .sc-test__card { padding: 2rem; } }
.sc-test__card-meta { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.5rem; }
.sc-test__card-months {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sc-red);
  font-variant-numeric: tabular-nums;
}
.sc-test__card-format {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 251, 245, 0.45);
}
.sc-test__card-quote {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
  flex: 1;
  margin: 0;
}
@media (min-width: 768px) { .sc-test__card-quote { font-size: 1.4rem; } }
.sc-test__card-foot {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(253, 251, 245, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sc-test__card-author { font-size: 0.95rem; font-weight: 500; }
.sc-test__card-age {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 251, 245, 0.45);
  font-variant-numeric: tabular-nums;
}
.sc-test__satellites { margin-top: 3rem; }
@media (min-width: 768px) { .sc-test__satellites { margin-top: 5rem; } }
.sc-test__sat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.45);
  margin-bottom: 1.5rem;
}
.sc-test__sat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .sc-test__sat-grid { grid-template-columns: repeat(2, 1fr); column-gap: 2rem; } }
@media (min-width: 1024px) { .sc-test__sat-grid { grid-template-columns: repeat(3, 1fr); } }
.sc-test__sat { border-top: 1px solid rgba(18, 18, 18, 0.15); padding-top: 1.25rem; }
.sc-test__sat-quote { font-size: 1rem; line-height: 1.4; color: rgba(18, 18, 18, 0.85); margin: 0; }
.sc-test__sat-author {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.55);
  margin-top: 0.75rem;
}

/* ========== Tarifs ========== */
.sc-pricing { background: var(--sc-cream-base); }
.sc-pricing__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
@media (min-width: 768px) { .sc-pricing__inner { padding: 5rem 2.5rem; } }
.sc-pricing__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .sc-pricing__header { grid-template-columns: 7fr 5fr; gap: 2rem; margin-bottom: 5rem; }
}
.sc-pricing__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
}
.sc-pricing__sub {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(18, 18, 18, 0.68);
  max-width: 34rem;
}
@media (min-width: 1024px) { .sc-pricing__sub { padding-top: 3rem; } }
.sc-pricing__plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .sc-pricing__plans { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.sc-plan {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--sc-cream-base);
  border: 1px solid rgba(18, 18, 18, 0.08);
}
.sc-plan--featured { background: var(--sc-ink); color: var(--sc-cream-base); border-color: transparent; }
.sc-plan__bonus {
  background: var(--sc-red);
  color: #fff;
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sc-plan__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
@media (min-width: 768px) { .sc-plan__body { padding: 2.25rem; } }
.sc-plan__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sc-plan__sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.55);
  margin-top: 0.375rem;
}
.sc-plan--featured .sc-plan__sub { color: var(--sc-red); }
.sc-plan__price-original {
  font-size: 1.125rem;
  text-decoration: line-through;
  color: rgba(18, 18, 18, 0.35);
  font-variant-numeric: tabular-nums;
  margin: 2.25rem 0 0.5rem;
}
.sc-plan__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 2.5rem;
}
.sc-plan__price-row--with-original { margin-top: 0; }
.sc-plan__price {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.sc-plan__cents {
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  align-self: flex-start;
  margin-top: 0.75rem;
}
.sc-plan__period {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.55);
  align-self: flex-end;
  margin: 0 0 0.75rem 0.375rem;
  font-variant-numeric: tabular-nums;
}
.sc-plan--featured .sc-plan__period { color: rgba(253, 251, 245, 0.55); }
.sc-plan__after {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sc-red);
  margin-top: 0.5rem;
}
.sc-plan__adhesion {
  font-size: 0.78rem;
  color: rgba(18, 18, 18, 0.55);
  margin-top: 0.5rem;
}
.sc-plan--featured .sc-plan__adhesion { color: rgba(253, 251, 245, 0.55); }
.sc-plan__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(18, 18, 18, 0.68);
  margin: 1.5rem 0 0;
  max-width: 34ch;
}
.sc-plan--featured .sc-plan__desc { color: rgba(253, 251, 245, 0.72); }
.sc-plan__divider {
  height: 1px;
  background: rgba(18, 18, 18, 0.12);
  margin: 1.75rem 0;
}
.sc-plan--featured .sc-plan__divider { background: rgba(253, 251, 245, 0.15); }
.sc-plan__bullets { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.sc-plan__bullet { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: rgba(18, 18, 18, 0.85); }
.sc-plan--featured .sc-plan__bullet { color: rgba(253, 251, 245, 0.85); }
.sc-plan__bullet-icon { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.125rem; color: var(--sc-ink); display: inline-flex; align-items: center; justify-content: center; }
/* Force la couleur des icônes (Font Awesome <i> ou SVG inline) sur card featured.
   Sans ce !important, FA / theme appliquent leur propre couleur et l'icône
   devient noire-sur-noire. */
.sc-plan--featured .sc-plan__bullet-icon,
.sc-plan--featured .sc-plan__bullet-icon i,
.sc-plan--featured .sc-plan__bullet-icon svg { color: var(--sc-cream-base) !important; fill: currentColor !important; }
.sc-plan__bullet-icon i,
.sc-plan__bullet-icon svg { color: inherit; fill: currentColor; }
.sc-plan__cta { margin-top: 2rem; }

.sc-pricing__packs {
  margin-top: 5rem;
}
@media (min-width: 768px) { .sc-pricing__packs { margin-top: 7rem; } }
.sc-pricing__packs-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.sc-pricing__packs-title {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.05;
  max-width: 18ch;
}
.sc-pricing__packs-sub {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(18, 18, 18, 0.68);
  margin-top: 0.75rem;
  max-width: 40rem;
}
.sc-pricing__packs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .sc-pricing__packs-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .sc-pricing__packs-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.sc-pack {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.5rem;
  background: var(--sc-cream-base);
  border: 1px solid rgba(18, 18, 18, 0.08);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .sc-pack { padding: 1.75rem; } }
.sc-pack--featured { background: var(--sc-ink); color: var(--sc-cream-base); border-color: transparent; }
.sc-pack__tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--sc-red);
  color: #fff;
  text-align: center;
  padding: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sc-pack__inner { padding-top: 0; }
.sc-pack--featured .sc-pack__inner { padding-top: 1.75rem; }
.sc-pack__sessions { display: flex; align-items: baseline; gap: 0.5rem; }
.sc-pack__num {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
}
.sc-pack__num-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.55);
}
.sc-pack--featured .sc-pack__num-label { color: rgba(253, 251, 245, 0.55); }
.sc-pack__free {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.25rem 0.625rem 0.3rem;
  border-radius: 0.5rem;
  background: var(--sc-red);
  color: #fff;
  align-self: flex-start;
}
.sc-pack__free-plus { font-size: 0.85rem; font-weight: 600; line-height: 1; }
.sc-pack__free-num { font-size: 1rem; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.sc-pack__free-label { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.sc-pack__divider { height: 1px; background: rgba(18, 18, 18, 0.12); margin: 1.25rem 0; }
.sc-pack--featured .sc-pack__divider { background: rgba(253, 251, 245, 0.15); }
.sc-pack__price {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sc-pack__details {
  font-size: 0.78rem;
  color: rgba(18, 18, 18, 0.55);
  margin-top: 0.375rem;
}
.sc-pack--featured .sc-pack__details { color: rgba(253, 251, 245, 0.55); }
.sc-pack__points-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}
.sc-pack--featured .sc-pack__points-row { border-top-color: rgba(253, 251, 245, 0.15); }
.sc-pack__points-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.55);
}
.sc-pack--featured .sc-pack__points-label { color: rgba(253, 251, 245, 0.55); }
.sc-pack__points-value {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sc-red);
  font-variant-numeric: tabular-nums;
}
.sc-pricing__packs-bonus {
  margin-top: 1.5rem;
  background: var(--sc-cream-base);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .sc-pricing__packs-bonus {
    flex-direction: row;
    padding: 2rem;
    align-items: center;
    gap: 2.5rem;
  }
}
.sc-pricing__packs-bonus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem 2rem;
}
@media (min-width: 768px) { .sc-pricing__packs-bonus-list { grid-template-columns: 1fr 1fr; } }
.sc-pricing__packs-bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(18, 18, 18, 0.85);
}
.sc-pricing__packs-bonus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-red);
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-size: 1rem;
  line-height: 1;
}
.sc-pricing__packs-bonus-icon svg,
.sc-pricing__packs-bonus-icon i { width: 1em; height: 1em; font-size: inherit; }
.sc-pricing__packs-note {
  font-size: 0.8125rem;
  color: rgba(18, 18, 18, 0.55);
  margin-top: 1.25rem;
}
.sc-pricing__sap {
  margin-top: 1.5rem;
  background: var(--sc-ink);
  color: var(--sc-cream-base);
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .sc-pricing__sap { grid-template-columns: 2fr 7fr 3fr; padding: 2.5rem; gap: 1.5rem; }
}
.sc-pricing__sap-badge {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: var(--sc-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin: 0 auto;
}
.sc-pricing__sap-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sc-red);
}
.sc-pricing__sap-title {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0.5rem 0 0;
  max-width: 22ch;
}
.sc-pricing__sap-body {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(253, 251, 245, 0.72);
  margin: 1rem 0 0;
  max-width: 44rem;
}
.sc-pricing__sap-eligibility {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 251, 245, 0.45);
  margin: 0.75rem 0 0;
}
.sc-pricing__notes {
  font-size: 0.8125rem;
  color: rgba(18, 18, 18, 0.55);
  margin-top: 3rem;
  max-width: 44rem;
}

/* ========== FinalCTA ========== */
.sc-final {
  position: relative;
  overflow: hidden;
  background: var(--sc-ink);
  color: var(--sc-cream-base);
}
.sc-final__wipe {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--sc-red);
  clip-path: inset(0% 0 0 0);
  transition: clip-path 0.1s linear;
}
.sc-final__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .sc-final__inner { padding: 6rem 2.5rem 4rem; } }
.sc-final__title {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 0 auto;
}
.sc-final__title-line { display: block; }
.sc-final__sub {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(253, 251, 245, 0.85);
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .sc-final__sub { font-size: 1.625rem; white-space: nowrap; }
}
.sc-final__sub-break { display: block; }
@media (min-width: 768px) { .sc-final__sub-break { display: inline; } }
.sc-final__cta-wrap {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* ========== Footer ========== */
.sc-footer {
  background: var(--sc-ink);
  color: var(--sc-cream-base);
  border-top: 1px solid rgba(253, 251, 245, 0.15);
  position: relative;
  z-index: 1;
}
.sc-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .sc-footer__inner { padding: 2.5rem 2.5rem; grid-template-columns: repeat(4, 1fr); }
}
.sc-footer__col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sc-cream-base);
  margin-bottom: 0.75rem;
}
.sc-footer__col-text {
  font-size: 0.85rem;
  color: rgba(253, 251, 245, 0.55);
  margin: 0 0 0.25rem;
  line-height: 1.55;
}
.sc-footer__col-text a { color: inherit; text-decoration: none; }
.sc-footer__col-text a:hover { color: var(--sc-cream-base); }
.sc-footer__since {
  font-size: 1.5rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--sc-cream-base);
  line-height: 1;
}
.sc-footer__wordmark-wrap {
  border-top: 1px solid rgba(253, 251, 245, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.sc-footer__wordmark {
  font-weight: 600;
  line-height: 0.85;
  white-space: nowrap;
  user-select: none;
  padding: 1.5rem 1.25rem;
  max-width: 1440px;
  margin: 0 auto;
  font-size: clamp(2rem, 12vw, 12rem);
  letter-spacing: -0.05em;
  color: rgba(253, 251, 245, 0.08);
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) { .sc-footer__wordmark { padding: 1.5rem 2.5rem; } }

/* ========== Phone screens (AppShowcase) ========== */
.sc-screen {
  height: 100%;
  background: #0f0f0f;
  color: var(--sc-cream-base);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
}
.sc-screen__hd { display: flex; align-items: center; justify-content: space-between; }
.sc-screen__caption { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(253,251,245,0.45); margin: 0; }
.sc-screen__title { font-size: 1.25rem; font-weight: 600; line-height: 1.2; margin: 0.25rem 0 0; }
.sc-screen__avatar { width: 36px; height: 36px; border-radius: 999px; background: rgba(253,251,245,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; }
.sc-screen__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; margin-top: 1.25rem; }
.sc-screen__day { display: flex; flex-direction: column; align-items: center; padding: 0.5rem 0; border-radius: 0.5rem; }
.sc-screen__day--today { background: var(--sc-red); color: #fff; }
.sc-screen__day-l { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.sc-screen__day-n { font-size: 0.95rem; font-weight: 600; margin-top: 0.25rem; font-variant-numeric: tabular-nums; }
.sc-screen__day-dot { width: 4px; height: 4px; border-radius: 999px; background: var(--sc-red); margin-top: 0.25rem; }
.sc-screen__day--today .sc-screen__day-dot { background: #fff; }
.sc-screen__row { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; }
.sc-screen__row-r { font-size: 0.7rem; color: var(--sc-red); font-weight: 600; letter-spacing: 0.05em; }
.sc-screen__card { margin-top: 0.75rem; padding: 1rem; border-radius: 1rem; border: 1px solid rgba(253,251,245,0.1); background: rgba(253,251,245,0.03); }
.sc-screen__card-title { font-size: 1rem; font-weight: 600; margin: 0; line-height: 1.2; }
.sc-screen__card-meta { font-size: 0.65rem; color: rgba(253,251,245,0.55); margin: 0.25rem 0 0; letter-spacing: 0.05em; text-transform: uppercase; }
.sc-screen__exos { margin-top: 0.875rem; display: flex; flex-direction: column; gap: 0.625rem; }
.sc-screen__exo { display: flex; align-items: center; gap: 0.75rem; }
.sc-screen__check { width: 16px; height: 16px; border-radius: 999px; border: 1px solid rgba(253,251,245,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-screen__check--done { background: var(--sc-red); border-color: var(--sc-red); color: #fff; }
.sc-screen__check svg { width: 10px; height: 10px; }
.sc-screen__exo-name { font-size: 0.75rem; flex: 1; }
.sc-screen__exo-sets { font-size: 0.7rem; color: rgba(253,251,245,0.55); font-variant-numeric: tabular-nums; }
.sc-screen__cta { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border: 1px solid rgba(253,251,245,0.1); border-radius: 1rem; }
.sc-screen__cta-label { font-size: 0.75rem; font-weight: 600; margin: 0.125rem 0 0; }
.sc-screen__play { width: 36px; height: 36px; border-radius: 999px; background: var(--sc-red); display: flex; align-items: center; justify-content: center; color: #fff; }
.sc-screen__play svg { width: 12px; height: 12px; }

/* Progress screen */
.sc-screen__bigstat { display: flex; align-items: baseline; gap: 0.75rem; margin-top: 1.25rem; }
.sc-screen__bigstat-num { font-size: 3rem; line-height: 1; font-weight: 500; font-variant-numeric: tabular-nums; }
.sc-screen__bigstat-lbl { font-size: 0.78rem; color: rgba(253,251,245,0.55); max-width: 8rem; }
.sc-screen__bigstat-delta { font-size: 0.65rem; color: var(--sc-red); font-weight: 600; letter-spacing: 0.05em; align-self: flex-start; }
.sc-screen__chart { margin-top: 1.25rem; padding: 1rem; border-radius: 1rem; border: 1px solid rgba(253,251,245,0.1); background: rgba(253,251,245,0.03); display: flex; align-items: flex-end; gap: 0.5rem; height: 9rem; }
.sc-screen__bar { flex: 1; border-radius: 0.375rem 0.375rem 0 0; background: var(--sc-red); }
.sc-screen__stats-grid { margin-top: 0.875rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
.sc-screen__stat { padding: 0.75rem; border: 1px solid rgba(253,251,245,0.1); border-radius: 0.75rem; }
.sc-screen__stat-v { font-size: 1.05rem; font-weight: 600; margin: 0.375rem 0 0; font-variant-numeric: tabular-nums; }
.sc-screen__stat-d { font-size: 0.6rem; color: var(--sc-red); margin: 0.125rem 0 0; font-weight: 600; letter-spacing: 0.05em; }

/* Chat screen */
.sc-screen--chat { padding: 0; }
.sc-screen__chat-hd { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.25rem; border-bottom: 1px solid rgba(253,251,245,0.1); }
.sc-screen__chat-avatar { width: 36px; height: 36px; border-radius: 999px; background: var(--sc-red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; }
.sc-screen__chat-id { flex: 1; }
.sc-screen__chat-name { font-size: 0.95rem; font-weight: 600; line-height: 1; margin: 0; }
.sc-screen__chat-status { font-size: 0.6rem; color: var(--sc-red); margin: 0.25rem 0 0; font-weight: 600; letter-spacing: 0.05em; }
.sc-screen__chat-day { padding: 1rem 1.25rem 0; font-size: 0.6rem; color: rgba(253,251,245,0.4); text-align: center; letter-spacing: 0.16em; text-transform: uppercase; }
.sc-screen__chat-msgs { flex: 1; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; overflow: hidden; }
.sc-screen__msg { max-width: 78%; padding: 0.625rem 1rem; border-radius: 1rem; font-size: 0.78rem; line-height: 1.4; }
.sc-screen__msg--coach { background: rgba(253,251,245,0.05); border: 1px solid rgba(253,251,245,0.1); border-top-left-radius: 0.25rem; align-self: flex-start; }
.sc-screen__msg--user { background: var(--sc-red); color: #fff; border-top-right-radius: 0.25rem; align-self: flex-end; }
.sc-screen__msg p { margin: 0; }
.sc-screen__chat-input { margin-top: auto; padding: 0.75rem 1rem; border-top: 1px solid rgba(253,251,245,0.1); display: flex; align-items: center; gap: 0.5rem; }
.sc-screen__chat-input span { flex: 1; height: 36px; border: 1px solid rgba(253,251,245,0.15); border-radius: 999px; padding: 0 1rem; display: flex; align-items: center; font-size: 0.7rem; color: rgba(253,251,245,0.4); }
.sc-screen__chat-send { width: 36px; height: 36px; border-radius: 999px; background: var(--sc-red); display: flex; align-items: center; justify-content: center; color: #fff; }
.sc-screen__chat-send svg { width: 14px; height: 14px; }

/* === Contact widget — centré, dark, compact === */
.sc-contact { background: var(--sc-ink); color: var(--sc-cream-base); padding: 3.5rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .sc-contact { padding: 4.5rem 2rem; } }
.sc-contact__inner { max-width: 560px; margin: 0 auto; }
.sc-contact__head { margin-bottom: 2rem; }
.sc-contact .sc-eyebrow { color: var(--sc-red); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.sc-contact__title { margin-top: 0.5rem; font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.02; letter-spacing: -0.025em; color: var(--sc-cream-base); }
.sc-contact__sub { margin: 0.75rem auto 0; max-width: 30rem; font-size: 1rem; line-height: 1.55; color: rgba(253,251,245,0.68); }

.sc-contact__form { display: flex; flex-direction: column; gap: 0.85rem; text-align: left; }
.sc-contact__field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 600px) { .sc-contact__field-row { grid-template-columns: 1fr 1fr; } }
.sc-contact__field { display: flex; flex-direction: column; gap: 0.35rem; }
.sc-contact__field > span { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(253,251,245,0.55); }
.sc-contact__field input,
.sc-contact__field textarea,
.sc-contact__field select {
  background: rgba(253,251,245,0.05) !important;
  color: var(--sc-cream-base) !important;
  border: 1px solid rgba(253,251,245,0.14) !important;
  border-radius: 14px !important;
  padding: 0.9rem 1.1rem !important;
  font: inherit !important;
  font-size: 0.9375rem !important;
  width: 100% !important;
  outline: none !important;
  transition: border-color 0.18s ease, background 0.18s ease;
  box-shadow: none !important;
}
.sc-contact__field input::placeholder,
.sc-contact__field textarea::placeholder { color: rgba(253,251,245,0.35); }
.sc-contact__field input:focus,
.sc-contact__field textarea:focus,
.sc-contact__field select:focus { border-color: rgba(253,251,245,0.4) !important; background: rgba(253,251,245,0.08) !important; }
.sc-contact__field textarea { resize: vertical; min-height: 130px; }
.sc-contact__field select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fdfbf5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M2 4l4 4 4-4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 12px !important;
  padding-right: 2.5rem !important;
  cursor: pointer;
}
.sc-contact__field select option { background: #1a1a1a; color: var(--sc-cream-base); }

.sc-contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(253,251,245,0.72);
  cursor: pointer;
  text-align: left;
}
.sc-contact__consent input[type="checkbox"] {
  accent-color: var(--sc-red);
  width: 18px !important;
  height: 18px !important;
  margin-top: 2px;
  flex: 0 0 auto;
  cursor: pointer;
}

.sc-contact__submit {
  margin: 0.75rem auto 0 !important;
  background: var(--sc-red) !important;
  color: #fff !important;
  border: none !important;
}
.sc-contact__submit:hover { background: var(--sc-red-deep) !important; }

.sc-contact__notice { padding: 0.85rem 1rem; border-radius: 12px; font-size: 0.9rem; line-height: 1.45; margin-bottom: 0.5rem; text-align: left; }
.sc-contact__notice--ok  { background: rgba(38,200,120,0.12); border: 1px solid rgba(38,200,120,0.35); color: #b8f0d4; }
.sc-contact__notice--err { background: rgba(255,65,65,0.12); border: 1px solid rgba(255,65,65,0.35); color: #ffb8b8; }

/* === Seasonal banner — single line, optional fixed position === */
.sc-seasonal {
  width: 100%;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
}
.sc-seasonal--bottom {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 9998 !important;
}
.sc-seasonal--top {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  z-index: 9998 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.sc-seasonal--inline { position: relative; }
.sc-seasonal__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-seasonal__label {
  font-weight: 600;
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-seasonal__code {
  padding: 0.18rem 0.55rem;
  border-radius: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex: 0 0 auto;
}
.sc-seasonal__cta {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.sc-seasonal__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  transition: transform 0.18s ease;
}
.sc-seasonal__cta:hover .sc-seasonal__cta-arrow {
  transform: translateX(3px);
}
@media (max-width: 640px) {
  .sc-seasonal__inner { padding: 0.6rem 0.85rem; font-size: 0.75rem; gap: 0.6rem; }
  .sc-seasonal__cta-arrow { width: 26px; height: 26px; }
}

/* === Press logos — marquee carousel === */
.sc-press { padding: 3.5rem 0; background: var(--sc-cream-base); }
.sc-press__inner { max-width: 1200px; margin: 0 auto; }
.sc-press__eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.6875rem; color: rgba(18,18,18,0.5); text-align: center; padding: 0 1.5rem; }
.sc-press__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; text-align: center; margin-top: 0.5rem; color: #0a0a0a; padding: 0 1.5rem; }
.sc-press__track {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  display: flex;
  width: 100%;
}
.sc-press__track::before,
.sc-press__track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8%;
  z-index: 2;
  pointer-events: none;
}
.sc-press__track::before { left: 0; background: linear-gradient(to right, var(--sc-cream-base), transparent); }
.sc-press__track::after  { right: 0; background: linear-gradient(to left, var(--sc-cream-base), transparent); }
.sc-press__strip {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-shrink: 0;
  padding: 0 32px;
  animation: sc-press-scroll 35s linear infinite;
}
.sc-press__track:hover .sc-press__strip { animation-play-state: paused; }
@keyframes sc-press-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.sc-press__item {
  flex: 0 0 auto !important;
  display: inline-flex;
  align-items: center;
}
.sc-press__logo {
  height: 48px !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: 0.65;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.sc-press__item:hover .sc-press__logo { filter: grayscale(0); opacity: 1; }

/* === Signup gifts — brand-matched (dark) === */
.sc-gifts {
  background: var(--sc-ink);
  color: var(--sc-cream-base);
  padding: 3.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .sc-gifts { padding: 6rem 2.5rem; } }
.sc-gifts__inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.sc-gifts__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .sc-gifts__header { grid-template-columns: 7fr 5fr; gap: 2rem; align-items: end; margin-bottom: 4.5rem; }
}
.sc-gifts__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.6875rem;
  color: var(--sc-red);
  font-weight: 600;
}
.sc-gifts__title {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--sc-cream-base);
}
.sc-gifts__sub {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(253, 251, 245, 0.68);
  max-width: 34rem;
}
@media (min-width: 1024px) { .sc-gifts__sub { padding-top: 1rem; } }
/* Mobile : carrousel horizontal scroll-snap (comme témoignages).
   Desktop : grille classique 4 colonnes. */
.sc-gifts__grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin: 0 -1.5rem;
  padding: 0 1.5rem 0.5rem;
  scrollbar-width: none;
}
.sc-gifts__grid::-webkit-scrollbar { display: none; }
@media (min-width: 640px) {
  /* Grille adaptative : autant de colonnes que de cards, chacune avec une
     largeur min de 220px. Si l'user a 3 cards, 3 colonnes égales ;
     4 cards → 4 colonnes égales ; etc. Pas de trou. */
  .sc-gifts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}
@media (min-width: 1024px) { .sc-gifts__grid { gap: 1.5rem; } }
.sc-gift {
  background: var(--sc-ink-elev);
  border: 1px solid rgba(253, 251, 245, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
  flex: 0 0 78%;
  scroll-snap-align: center;
}
@media (min-width: 640px) { .sc-gift { flex: 1; scroll-snap-align: none; } }
.sc-gift:hover { border-color: rgba(253, 251, 245, 0.18); transform: translateY(-3px); }
.sc-gift__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(255,65,65,0.08), rgba(255,255,255,0.02));
  overflow: hidden;
}
.sc-gift__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  max-width: none !important;
}
.sc-gift__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 251, 245, 0.18);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.sc-gift__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sc-red);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 0.35rem;
}
.sc-gift__body { padding: 1.25rem 1.25rem 1.5rem; }
.sc-gift__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--sc-cream-base);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.sc-gift__desc {
  font-size: 0.875rem;
  color: rgba(253, 251, 245, 0.6);
  margin-top: 0.5rem;
  line-height: 1.55;
}

/* === Social floater === */
.sc-social-floater {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: auto !important;
}
.sc-social-floater__btn {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  padding: 0 !important;
  border: 0 !important;
}
.sc-social-floater__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.3) !important; }
.sc-social-floater__btn--ig { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888) !important; }
.sc-social-floater__btn--wa { background: #25d366 !important; }
.sc-social-floater__btn svg {
  width: 26px !important;
  height: 26px !important;
  display: block !important;
}
.sc-header__socials, .sc-footer__socials { display: inline-flex; gap: 0.75rem; align-items: center; }
.sc-header__socials a, .sc-footer__socials a { color: inherit; opacity: 0.75; transition: opacity 0.2s ease; }
.sc-header__socials a:hover, .sc-footer__socials a:hover { opacity: 1; }
.sc-header__socials svg, .sc-footer__socials svg { width: 20px; height: 20px; }

/* === Method step image === */
.sc-method__step-img {
  margin: 1rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(18,18,18,0.04);
}
.sc-method__step-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Format photo === */
.sc-format__photo {
  margin: -1px -1px 1.5rem;
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(18,18,18,0.04);
}
.sc-format__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === reCAPTCHA badge hide === */
/* On utilise visibility (pas display:none) pour ne PAS casser reCAPTCHA.
   Important : Google demande une mention dans le footer si le badge est caché.
   L'user a confirmé ne pas vouloir afficher cette mention — c'est sa décision/sa responsabilité. */
.grecaptcha-badge { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }
