/* ==========================================================================
   BOXERGON — Stylesheet partagé
   Charte : Noir carbone, Sand, Volt
   Police : Barlow Condensed (titres) + Barlow (corps)
   ========================================================================== */

/* --- Reset léger --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* --- Variables --- */
:root {
  --bg: #0B0B0B;
  --bg-card: #1A1A1A;
  --bg-card-2: #2A2A2A;
  --bg-deep: #050505;
  --sand: #C9B08A;
  --sand-light: #F3EFE6;
  --volt: #A6FF00;
  --text: #F3EFE6;
  --text-dim: #888888;
  --gold: #D4AF37;
  --border: rgba(201, 176, 138, 0.15);
  --border-strong: rgba(201, 176, 138, 0.35);

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Barlow Condensed', 'Barlow', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

::selection { background: var(--volt); color: var(--bg); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--sand-light); }

/* ==========================================================================
   TYPOGRAPHIE
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { font-size: 1rem; }
.lead { font-size: 1.15rem; color: var(--text-dim); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--sand);
}

.accent-volt { color: var(--volt); }
.accent-sand { color: var(--sand); }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; position: relative; }
@media (max-width: 768px) { section { padding: 4rem 0; } }

.section-light {
  background: var(--sand-light);
  color: #1A1A1A;
}
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: #0B0B0B; }
.section-light .lead { color: #555; }
.section-light .eyebrow { color: #6B5A3F; }
.section-light .eyebrow::before { background: #6B5A3F; }

.section-deep { background: var(--bg-deep); }

/* ==========================================================================
   BOUTONS — Style hexagonal signature BOXERGON
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  user-select: none;
}

.btn-hex {
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  padding: 1.1rem 2.5rem;
}

.btn-volt {
  background: var(--volt);
  color: var(--bg);
}
.btn-volt:hover {
  background: #B8FF33;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(166, 255, 0, 0.25);
}

.btn-sand {
  background: var(--sand);
  color: var(--bg);
}
.btn-sand:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  background: rgba(201, 176, 138, 0.08);
  border-color: var(--sand);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 0.75rem 1.25rem;
}
.btn-ghost:hover { color: var(--volt); }

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}
.logo img { height: 36px; width: auto; }
.logo:hover { color: var(--sand-light); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--volt);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--volt); }
.nav-link:hover::after { width: 100%; }

.lang-switch {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.lang-btn {
  padding: 0.35rem 0.75rem;
  color: var(--text-dim);
  border-radius: 999px;
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--sand);
  color: var(--bg);
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--sand);
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-list { display: none; }
  .menu-toggle { display: flex; }
  .nav.open .nav-list {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(166, 255, 0, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 176, 138, 0.06) 0%, transparent 50%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 176, 138, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 176, 138, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 1fr);
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr); gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  word-break: keep-all;
  hyphens: none;
}
.hero-title .line {
  display: block;
  opacity: 0;
  animation: heroLineIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/* Empêche la 1ère ligne (qui contient "cross-training") de se couper.
   Si trop long pour la grille, on baisse la taille via le clamp */
.hero-title .line:first-child {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    word-break: normal;
    overflow-wrap: break-word;
  }
  .hero-title .line,
  .hero-title .line:first-child {
    white-space: normal;
  }
}
.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.35s; }
.hero-title .line:nth-child(3) { animation-delay: 0.5s; }

@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  max-width: 540px;
  opacity: 0;
  animation: heroLineIn 0.8s 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@media (max-width: 900px) { .hero-subtitle { margin-left: auto; margin-right: auto; } }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroLineIn 0.8s 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@media (max-width: 900px) { .hero-cta { justify-content: center; } }

.hero-visual {
  position: relative;
  height: 600px;
  max-width: 100%;
  opacity: 0;
  animation: heroLineIn 1s 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@media (max-width: 900px) { .hero-visual { height: 480px; } }

.phone {
  position: absolute;
  width: 220px;
  height: 440px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 2px solid #3a3a3a;
  border-radius: 32px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.phone-1 {
  top: 40px;
  left: 5%;
  transform: rotate(-6deg);
  z-index: 2;
}
.phone-2 {
  top: 80px;
  right: 5%;
  transform: rotate(6deg);
  z-index: 1;
  opacity: 0.95;
}
@media (max-width: 1100px) {
  .phone { width: 200px; height: 400px; }
}
@media (max-width: 600px) {
  .phone-2 { display: none; }
  .phone-1 { left: 50%; transform: translateX(-50%) rotate(0); top: 20px; }
}

.phone-screen {
  position: absolute;
  inset: 8px;
  border-radius: 26px;
  background: var(--bg);
  padding: 2rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}

.phone-stat {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 0.75rem;
  border-left: 2px solid var(--volt);
}
.phone-stat-label {
  font-size: 0.6rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}
.phone-stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sand);
  font-weight: 700;
}
.phone-bar {
  height: 8px;
  background: var(--bg-card-2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.phone-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 70%;
  background: linear-gradient(90deg, var(--sand), var(--volt));
  border-radius: 4px;
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats-band {
  padding: 4rem 0;
  background: var(--sand-light);
  color: #0B0B0B;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .stat-item::after { display: none !important; }
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #6B5A3F;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header .lead { margin-top: 1rem; }

/* Variante grands titres — tarifs Box, tarifs Athlètes, Starter Pack */
.section-header-xl h2 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  letter-spacing: -0.02em;
}
.section-header-xl .eyebrow {
  font-size: 1rem;
  letter-spacing: 0.3em;
}

/* ==========================================================================
   GRILLE DE CARTES
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.section-light .feature-card {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B0B0B;
  color: var(--sand);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

.features-grid.dark .feature-card {
  background: var(--bg-card);
  border-color: var(--border);
}
.features-grid.dark .feature-card:hover {
  background: var(--bg-card-2);
}
.features-grid.dark .feature-icon {
  background: var(--bg);
  color: var(--volt);
  border: 1px solid var(--border);
}
.features-grid.dark .feature-card p { color: var(--text-dim); }

/* ==========================================================================
   TARIFS
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card .pricing-features {
  flex-grow: 1; /* pousse le bouton en bas pour aligner toutes les cartes */
}
.pricing-card.highlighted {
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  border-color: var(--sand);
  transform: scale(1.02);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--sand);
}
.pricing-card.highlighted:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--volt);
  color: var(--bg);
  padding: 0.35rem 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 700;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--sand);
}
.pricing-tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.pricing-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sand);
}
.pricing-period {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-left: 0.25rem;
}
.pricing-saving {
  display: inline-block;
  background: rgba(166, 255, 0, 0.12);
  color: var(--volt);
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 2rem;
}
.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text);
}
.pricing-features li::before {
  content: '✓';
  color: var(--volt);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li.muted { color: var(--text-dim); }
.pricing-features li.muted::before { content: '—'; color: var(--text-dim); }

.pricing-card .btn { width: 100%; }

/* ==========================================================================
   STARTER PACK
   ========================================================================== */
.starter-pack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .starter-pack { grid-template-columns: 1fr; } }

.starter-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Halo lumineux derrière l'enseigne */
.starter-visual::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 176, 138, 0.18) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.starter-sign {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1.4 / 1;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 176, 138, 0.12) 0%, transparent 55%),
    linear-gradient(135deg, #1F1F1F 0%, #0B0B0B 60%, #050505 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 176, 138, 0.08),
    inset 0 1px 0 rgba(201, 176, 138, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
  transition: var(--transition-slow);
}
/* Effet métallique brossé en surimpression */
.starter-sign::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0px,
      transparent 2px,
      rgba(201, 176, 138, 0.02) 2px,
      rgba(201, 176, 138, 0.02) 3px
    );
  pointer-events: none;
  z-index: 0;
}
.starter-sign:hover {
  transform: rotate(-1deg) scale(1.02);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(201, 176, 138, 0.15),
    inset 0 1px 0 rgba(201, 176, 138, 0.25);
}
/* 4 vis décoratives aux coins via box-shadow d'un élément virtuel */
.starter-sign::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #888, #2a2a2a);
  box-shadow:
    /* vis haut-droite */
    calc(100% + 388px) 0 0 0 rgba(0,0,0,0),
    var(--screw-tr, calc(420px - 32px)) 0 0 0 transparent;
  /* On utilise plutôt 4 backgrounds positionnés ci-dessous */
  display: none;
}
/* 4 vis via outline d'un wrapper invisible */
.starter-sign-screws {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  z-index: 2;
}
.starter-sign-screw {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #6a6a6a 0%, #2a2a2a 60%, #1a1a1a 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.1),
    inset 0 -1px 1px rgba(0,0,0,0.6),
    0 1px 2px rgba(0,0,0,0.4);
}
.starter-sign-screw::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-top: 1px solid rgba(0,0,0,0.5);
  transform: rotate(35deg);
}
.starter-sign-screw.tl { top: 0; left: 0; }
.starter-sign-screw.tr { top: 0; right: 0; }
.starter-sign-screw.bl { bottom: 0; left: 0; }
.starter-sign-screw.br { bottom: 0; right: 0; }

.starter-sign-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.starter-sign-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--sand);
}
.starter-sign-partner {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.starter-sign-center { text-align: center; position: relative; z-index: 1; }
.starter-sign-wod {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.starter-sign-scan {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--volt);
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(166, 255, 0, 0.4);
  animation: scanPulse 2.5s ease-in-out infinite;
}
@keyframes scanPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(166, 255, 0, 0.4); }
  50% { text-shadow: 0 0 30px rgba(166, 255, 0, 0.7), 0 0 50px rgba(166, 255, 0, 0.3); }
}
.starter-sign-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.qr-mockup {
  width: 60px;
  height: 60px;
  background:
    repeating-conic-gradient(#0B0B0B 0 25%, var(--sand) 0 50%) 0 0/12px 12px;
  border: 4px solid var(--sand);
  border-radius: 4px;
}
.nfc-mockup {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--sand);
}
.nfc-mockup::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--sand);
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.starter-content h2 { margin-bottom: 1rem; font-size: clamp(3rem, 6vw, 5.4rem); }
.starter-features { margin-top: 2rem; }
.starter-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.starter-features li:last-child { border-bottom: none; }
.starter-features-icon {
  width: 36px;
  height: 36px;
  background: #0B0B0B;
  color: var(--volt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
  font-size: 1rem;
}
.starter-features h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.starter-features p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  background: var(--bg-deep);
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(166, 255, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  position: relative;
}
.final-cta p {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.final-cta .hero-cta {
  justify-content: center;
  animation: none;
  opacity: 1;
  position: relative;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-deep);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-tagline {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--volt); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   ANIMATIONS UTILITAIRES
   ========================================================================== */
/* Par défaut tout est visible. Si JS supporte l'animation, on l'active. */
.fade-in {
  opacity: 1;
  transform: none;
}
/* Le JS ajoute .has-fadein sur <html> quand prêt — alors on cache pour animer */
html.has-fadein .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
html.has-fadein .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   PAGE LÉGALE
   ========================================================================== */
.legal-page {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background: var(--bg);
  min-height: 100vh;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  color: var(--sand);
}
.legal-meta {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--sand);
}
.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.legal-content p,
.legal-content li {
  color: var(--text-dim);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.legal-content ul, .legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li { margin-bottom: 0.5rem; }
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content a { color: var(--volt); text-decoration: underline; }
.legal-content strong { color: var(--text); }

/* ==========================================================================
   FORMULAIRE
   ========================================================================== */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sand);
  background: var(--bg-card-2);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ==========================================================================
   PAGE BOX — Styles spécifiques
   ========================================================================== */

/* Hero alternatif avec stats inline */
.hero-mini-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  opacity: 0;
  animation: heroLineIn 0.8s 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-mini-stat .mini-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
}
.hero-mini-stat .mini-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sand);
}
@media (max-width: 900px) {
  .hero-mini-stats { justify-content: center; gap: 1.5rem; }
}

/* --- DÉMO ONGLETS --- */
.demo-section {
  background: var(--bg);
  padding: 6rem 0;
}
.demo-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.demo-tab {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--bg-card);
  transition: var(--transition);
  cursor: pointer;
}
.demo-tab:hover {
  color: var(--sand);
  border-color: var(--sand);
  background: var(--bg-card-2);
}
.demo-tab.active {
  background: var(--sand);
  color: var(--bg);
  border-color: var(--sand);
}

.demo-panels {
  position: relative;
}
.demo-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  animation: demoFadeIn 0.5s ease-out;
}
.demo-panel.active { display: grid; }
@media (max-width: 900px) {
  .demo-panel { grid-template-columns: 1fr; gap: 2.5rem; }
}

@keyframes demoFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.demo-text h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--sand);
}
.demo-text > p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.demo-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: var(--text);
}
.demo-features-list li::before {
  content: '→';
  color: var(--volt);
  font-weight: 700;
  font-family: var(--font-display);
}

/* Visuel de démo : carte stylisée */
.demo-visual {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.demo-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sand), var(--volt));
}
.demo-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.demo-visual-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sand);
}
.demo-visual-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 0.25rem 0.65rem;
  background: rgba(166, 255, 0, 0.12);
  color: var(--volt);
  border-radius: 4px;
  text-transform: uppercase;
}
.demo-visual-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.demo-visual-row:last-child { border-bottom: none; }
.demo-visual-row span:first-child { color: var(--text-dim); }
.demo-visual-row span:last-child { color: var(--text); font-weight: 600; }
.demo-visual-row .accent { color: var(--volt); font-family: var(--font-display); }
.demo-visual-bar {
  height: 8px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.demo-visual-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sand), var(--volt));
  border-radius: 4px;
}

/* --- STEPS / Comment ça marche --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.section-light .step-card { background: #fff; }
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sand);
  margin-bottom: 1rem;
  display: block;
}
.section-light .step-num { color: #6B5A3F; }
.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* Ligne de connexion entre étapes (desktop) */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(0,0,0,0.15) 0 8px, transparent 8px 16px);
  z-index: 0;
}
@media (max-width: 900px) {
  .steps-grid::before { display: none; }
}
.step-card { position: relative; z-index: 1; }

/* --- BÉNÉFICES --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}
.benefit-card:hover {
  background: var(--bg-card-2);
  transform: translateY(-3px);
}
.benefit-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--border-strong);
  font-weight: 700;
  opacity: 0.4;
}
.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--sand);
  max-width: 75%;
}
.benefit-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- PRICING SHORT (résumé tarifs sur page Box) --- */
.pricing-short {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing-short { grid-template-columns: 1fr; }
}
.pricing-short-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.pricing-short-card.highlight {
  border-color: var(--sand);
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
}
.pricing-short-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.pricing-short-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.pricing-short-engagement {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.pricing-short-saving {
  display: inline-block;
  background: rgba(166, 255, 0, 0.12);
  color: var(--volt);
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  border-radius: 4px;
  text-transform: uppercase;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--sand); }
.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sand);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ==========================================================================
   PAGE ATHLETE — Styles spécifiques
   ========================================================================== */

/* Badge "bientôt disponible" sur les boutons de download */
/* Wrapper qui contient bouton + badge (badge sort du clip-path) */
.btn-wrap {
  position: relative;
  display: inline-flex;
  /* le wrap est inline, le badge peut sortir librement */
}
.btn-with-badge {
  position: relative;
}
.btn-coming-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--volt);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(166, 255, 0, 0.3);
  z-index: 5;
}

/* Icônes plateforme pour les boutons download */
.btn-platform-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-platform-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Pricing short pour page athlete (3 cartes) */
.pricing-short-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .pricing-short-3 { grid-template-columns: 1fr; }
}


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

.contact-page {
  padding-top: 8rem;
  padding-bottom: 5rem;
  min-height: 100vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-header {
  margin-bottom: 3rem;
  text-align: center;
}
.contact-header h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

/* Formulaire */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
@media (max-width: 600px) {
  .contact-form { padding: 1.75rem 1.25rem; }
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row-double { grid-template-columns: 1fr; }
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C9B08A' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

/* Consentement RGPD */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  background: var(--bg);
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: var(--transition);
}
.form-consent input[type="checkbox"]:checked {
  background: var(--volt);
  border-color: var(--volt);
}
.form-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-consent a { color: var(--volt); text-decoration: underline; }

/* Submit */
.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.form-submit-row .btn {
  min-width: 220px;
}
.form-submit-row .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Messages succès / erreur */
.form-status {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-status.show { display: block; }

.form-status-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.form-status-icon.success {
  background: rgba(166, 255, 0, 0.15);
  color: var(--volt);
  border: 2px solid var(--volt);
}
.form-status-icon.error {
  background: rgba(255, 80, 80, 0.15);
  color: #ff5050;
  border: 2px solid #ff5050;
}

.form-status h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}
.form-status p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

/* Aside infos directes */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
.contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-label {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.contact-info-value {
  color: var(--text);
  font-size: 0.95rem;
  word-break: break-word;
}
.contact-info-value a {
  color: var(--volt);
  text-decoration: none;
  transition: var(--transition);
}
.contact-info-value a:hover { text-decoration: underline; }

.contact-info-address {
  white-space: pre-line;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Response time card */
.contact-response-card {
  background: linear-gradient(135deg, rgba(166, 255, 0, 0.08) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(166, 255, 0, 0.25);
}
.contact-response-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--volt);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-response-note {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   TABLEAUX (pages légales)
   ========================================================================== */
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.legal-content table th,
.legal-content table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: top;
}
.legal-content table tr:last-child th,
.legal-content table tr:last-child td {
  border-bottom: none;
}
.legal-content table th {
  background: var(--bg-card-2);
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  width: 35%;
}
.legal-content table td {
  color: var(--text);
}
.legal-content table a {
  color: var(--volt);
  text-decoration: none;
}
.legal-content table a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .legal-content table th,
  .legal-content table td {
    display: block;
    width: 100%;
  }
  .legal-content table th {
    border-bottom: none;
    padding-bottom: 0.25rem;
  }
  .legal-content table td {
    padding-top: 0.25rem;
  }
}

/* Starter Pack — titre centré pleine largeur, taille modérée */
#starter .section-header-xl h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

#starter .section-header { margin-bottom: 2.5rem; }

/* ==========================================================================
   ENSEIGNE STARTER PACK — Nouveau layout
   Tagline haut / Logo box centre / App+NFC+QR bas
   ========================================================================== */

/* Phrase d'accroche en haut */
.starter-sign-tagline {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

/* Logo box dominant au centre */
.starter-sign-logo-box {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 40px rgba(201, 176, 138, 0.3);
}

/* Barre du bas : app logo + NFC + QR */
.starter-sign-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Logo app (BX monogramme) */
.starter-sign-app-logo {
  width: 42px;
  height: 42px;
  background: var(--sand);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(201, 176, 138, 0.3);
}

/* NFC au centre avec ondes */
.starter-sign-nfc-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--volt);
  text-transform: uppercase;
}
.nfc-waves {
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nfc-waves::before,
.nfc-waves::after {
  content: '';
  position: absolute;
  border: 2px solid var(--volt);
  border-radius: 50%;
  opacity: 0.6;
}
.nfc-waves::before {
  width: 20px;
  height: 20px;
}
.nfc-waves::after {
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

/* QR code mockup (déjà défini, on garde) */
.starter-sign-bottom-bar .qr-mockup {
  width: 42px;
  height: 42px;
  border-width: 3px;
}