﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KLUBIK â€” style.css
   Direction : Premium Â· Minimaliste Â· Sport Â· Blanc
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ Design tokens â”€â”€â”€ */
:root {
  --blue:        #1353F4;
  --blue-dark:   #0C3ECC;
  --blue-light:  #EEF3FF;
  --blue-glow:   rgba(19, 83, 244, 0.15);

  --black:       #0A0A0A;
  --ink:         #1A1A1A;
  --muted:       #6B7280;
  --border:      #E8EAED;
  --surface:     #F8F9FC;
  --white:       #FFFFFF;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-xs:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.07), 0 8px 32px rgba(0,0,0,.05);
  --shadow-blue: 0 8px 32px rgba(19, 83, 244, .22);

  --font: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* â”€â”€â”€ Reset â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--font); background: var(--white); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
img, svg { display: block; }

/* â”€â”€â”€ Container â”€â”€â”€ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* â”€â”€â”€ Typography helpers â”€â”€â”€ */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-head { text-align: center; margin-bottom: 72px; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* â”€â”€â”€ Buttons â”€â”€â”€ */
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.btn-blue:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* â”€â”€â”€ Reveal animations â”€â”€â”€ */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal-item.in { opacity: 1; transform: translateY(0); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• NAVBAR â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 900;
  padding: 16px 28px;
  background: transparent;
  transition: padding .4s var(--ease);
}
#navbar.scrolled { padding: 10px 28px; }
.nav-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* ─ Liquid Glass ─ */
  border-radius: 100px;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    inset 0  1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    inset  1px 0 0 rgba(255, 255, 255, 0.5),
    inset -1px 0 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background .35s, box-shadow .35s var(--ease);
}
#navbar.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 6px 32px rgba(0, 0, 0, 0.10),
    inset 0  1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.30),
    inset  1px 0 0 rgba(255, 255, 255, 0.60),
    inset -1px 0 0 rgba(255, 255, 255, 0.60);
}
.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-img--footer {
  height: 60px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--black); background: rgba(255,255,255,.45); }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; box-shadow: var(--shadow-blue); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 910;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: .3s var(--ease); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• HERO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 28px 72px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(19,83,244,.055) 0%, rgba(19,83,244,.015) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-left { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; }

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 16px 6px 10px;
  border-radius: 50px;
  margin-bottom: 32px;
  border: 1px solid rgba(19,83,244,.18);
}
.hero-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(19,83,244,.4); }
  50%       { box-shadow: 0 0 0 5px rgba(19,83,244,0); }
}

/* Title â€” dominant */
.hero-title {
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
  color: var(--black);
  margin-bottom: 26px;
}
.hero-title em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.78;
  margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-cta-main {
  padding: 16px 32px !important;
  font-size: 0.95rem !important;
  box-shadow: var(--shadow-blue);
}
.hero-cta-main:hover { transform: translateY(-3px) !important; }
.mob-br { display: none; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tags span {
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 50px;
  transition: color .2s, border-color .2s, background .2s;
}
.hero-tags span:hover { color: var(--blue); border-color: var(--blue); background: var(--blue-light); }

/* â”€ Hero right : 5 floating cards â”€ */
.hero-right { height: 580px; }
.hcard {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 18px;
  animation: float 6s ease-in-out infinite;
  transition: box-shadow .3s, border-color .3s;
}
.hcard:hover {
  box-shadow: 0 8px 40px rgba(19,83,244,.14), var(--shadow-md);
  border-color: rgba(19,83,244,.3);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
.hcard-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--blue { background: var(--blue); box-shadow: 0 0 0 3px rgba(19,83,244,.2); }

/* Card positions â€” 5 cards */
.hcard--jersey   { top: 0;    left: 0;   width: 172px; animation-delay: 0s;    z-index: 3; }
.hcard--match    { top: 24px; right: 0;  width: 228px; animation-delay: -1.6s; z-index: 3; }
.hcard--brand    { top: 190px; left: 92px; width: 190px; animation-delay: -3.1s; z-index: 2; }
.hcard--template { bottom: 68px; left: 4px; width: 186px; animation-delay: -2.4s; z-index: 3; }
.hcard--sponsor  { bottom: 0;  right: 8px; width: 178px; animation-delay: -1.9s; z-index: 3; }

/* Jersey card */
.jersey-shape {
  width: 100%;
  height: 108px;
  background: linear-gradient(135deg, var(--blue) 60%, var(--blue-dark));
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.jersey-shape::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.jersey-shape::after {
  content: '';
  position: absolute;
  bottom: -15px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 60px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.jersey-number { font-size: 2.6rem; font-weight: 900; color: white; letter-spacing: -2px; line-height: 1; }
.jersey-name { font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,.65); margin-top: 2px; }

/* Match card */
.match-top {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.match-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 10px;
}
.match-club {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.team-badge {
  width: 30px; height: 30px;
  background: var(--blue);
  color: white;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.team-badge--away { background: var(--black); }
.team-nm {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
}
.match-score-wrap {
  display: flex;
  align-items: center;
  gap: 3px;
}
.ms { font-size: 2rem; font-weight: 900; color: var(--black); letter-spacing: -2px; line-height: 1; }
.ms-sep { font-size: 1rem; color: var(--muted); margin: 0 1px; }
.match-result {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 2px;
}

/* Brand card */
.brand-demo { display: flex; flex-direction: column; gap: 10px; }
.brand-logo-circle {
  width: 46px; height: 46px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  color: white;
}
.brand-palette { display: flex; gap: 6px; }
.brand-palette span { width: 20px; height: 20px; border-radius: 50%; }
.brand-typo { display: flex; align-items: baseline; gap: 10px; }
.brand-t1 { font-size: 1.5rem; font-weight: 900; color: var(--black); letter-spacing: -2px; }
.brand-t2 { font-size: 0.7rem; font-weight: 600; color: var(--muted); }

/* Template card */
.tpl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.tpl-cell {
  height: 54px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.tpl-cell span {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}
.tpl-blue  { background: var(--blue); }
.tpl-blue span { color: white; }
.tpl-dark  { background: var(--black); }
.tpl-dark span { color: white; letter-spacing: -1px; font-size: 0.7rem; }
.tpl-light { background: var(--blue-light); }
.tpl-light span { color: var(--blue); }
.tpl-outline { background: white; border: 1.5px solid var(--border); }
.tpl-outline span { color: var(--muted); font-size: 0.55rem; }

/* Sponsor card */
.sponsor-doc { font-size: 0.78rem; }
.doc-header { font-weight: 800; font-size: 0.8rem; color: var(--black); line-height: 1.3; margin-bottom: 10px; }
.doc-lines { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.doc-line { height: 4px; background: var(--border); border-radius: 2px; }
.doc-line.long { width: 100%; }
.doc-line.medium { width: 72%; }
.doc-line.short { width: 48%; }
.doc-logos { display: flex; gap: 6px; }
.sponsor-logo-sm { width: 28px; height: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SERVICES â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* ─── Vidéo entre hero et services ─── */
.hero-video-wrap {
  width: 100%;
  line-height: 0;
}
.hero-video {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .hero-video-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    box-sizing: border-box;
  }
}

.services { padding: 76px 0; background: var(--surface); }

/* En-tête gauche avec soulignement SVG */
.feat-header { margin-bottom: 36px; }
.feat-header .eyebrow { margin-bottom: 14px; }
.feat-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}
.feat-underline {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.feat-underline svg {
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 10px;
  overflow: visible;
  pointer-events: none;
}
.feat-header .section-sub { text-align: left; margin: 0; }

/* Carte blanche conteneur */
.feat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

/* Grille 3×2 */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-bottom: 44px;
}

/* Chaque service */
.sfeat-icon {
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.sfeat h3 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.sfeat ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  list-style: none;
}
.sfeat ul li {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.sfeat ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(19,83,244,.35);
  font-size: 0.7rem;
  line-height: 1.5;
}
.sfeat-soon {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 50px;
}
.feat-cta { margin-top: 4px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FONCTIONNALITÃ‰S â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.features {
  padding: 76px 0;
  background: var(--white);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}
.features .container { position: relative; z-index: 1; }

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

.fcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.fcard:hover {
  border-color: rgba(19,83,244,.35);
  box-shadow: var(--shadow-md), 0 0 0 4px var(--blue-light);
  transform: translateY(-4px);
}

.fcard-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, color .25s, transform .25s;
}
.fcard:hover .fcard-icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.06);
}

.fcard-body { flex: 1; }
.fcard-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.fcard-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.fcard-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s var(--ease);
}
.fcard:hover .fcard-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• PACKS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.packs {
  padding: 76px 0;
  background: var(--surface);
}

/* â”€â”€â”€ Row layouts â”€â”€â”€ */
.packs-row { margin-bottom: 20px; }
.packs-row--main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.packs-row--secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 20px;
  align-items: start;
}

/* â”€â”€â”€ Base card â”€â”€â”€ */
.pack-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.pack-card:hover {
  border-color: rgba(19,83,244,.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

/* â”€â”€â”€ Featured card â”€â”€â”€ */
.pack-card--featured {
  background: var(--blue);
  border-color: transparent;
  transform: translateY(-16px);
  box-shadow: var(--shadow-blue), 0 28px 64px rgba(19,83,244,.28);
  padding-top: 52px;
}
.pack-card--featured:hover {
  border-color: transparent;
  transform: translateY(-22px);
  box-shadow: var(--shadow-blue), 0 36px 80px rgba(19,83,244,.36);
}

/* â”€â”€â”€ Badge â”€â”€â”€ */
.pack-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px 6px;
  border-radius: 0 0 14px 14px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(19,83,244,.15);
}

/* â”€â”€â”€ Card top: name + price â”€â”€â”€ */
.pack-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.pack-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1;
}
.pack-name .plus {
  font-size: 0.75em;
  color: var(--blue);
  vertical-align: super;
  line-height: 0;
}
.pack-card--featured .pack-name { color: white; }
.pack-card--featured .pack-name .plus { color: rgba(255,255,255,.75); }
.pack-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.pack-price sup {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 700;
  letter-spacing: 0;
}
.pack-card--featured .pack-price { color: white; }

/* â”€â”€â”€ Description â”€â”€â”€ */
.pack-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.pack-card--featured .pack-desc { color: rgba(255,255,255,.72); }

/* â”€â”€â”€ Feature list â”€â”€â”€ */
.pack-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pack-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.5;
}
.pack-card--featured .pack-list li { color: rgba(255,255,255,.88); }
.pack-list-included { font-weight: 600; }
.pack-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}
.pack-card--featured .pack-check { color: rgba(255,255,255,.7); }
.pack-card--featured .pack-list-included .pack-check { color: white; }

/* â”€â”€â”€ Insight box â”€â”€â”€ */
.pack-insight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: #2B4EBB;
  line-height: 1.6;
}
.pack-insight svg { flex-shrink: 0; margin-top: 1px; color: var(--blue); }
.pack-card--featured .pack-insight {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
}
.pack-card--featured .pack-insight svg { color: rgba(255,255,255,.7); }

/* â”€â”€â”€ CTA â”€â”€â”€ */
.pack-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
  transition: background .2s var(--ease), color .2s, box-shadow .2s, transform .18s var(--ease);
}
.pack-cta:hover {
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.pack-secure {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 8px;
}
.pack-secure--white { color: rgba(255,255,255,.55); }

.pack-cta--white {
  background: white;
  color: var(--blue);
  border-color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.pack-cta--white:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

/* â”€â”€â”€ Les KlubikitÃ©s â”€â”€â”€ */
/* Pack Identité — variante bleu clair */
.pack-card--accent {
  background: linear-gradient(160deg, var(--blue-light) 0%, #F0F5FF 100%);
  border-color: rgba(19,83,244,.3);
  padding-top: 52px;
}
.pack-card--accent:hover {
  border-color: rgba(19,83,244,.5);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(19,83,244,.08);
}
.pack-card--accent .pack-name { color: var(--blue); }
.pack-card--accent .pack-insight {
  background: rgba(19,83,244,.08);
  color: #2B4EBB;
}
.pack-badge--accent {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 16px rgba(19,83,244,.3);
}

/* Séparateur entre rangées de packs */
.packs-separator {
  text-align: center;
  padding: 60px 0 48px;
  position: relative;
}
.packs-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  border-radius: 2px;
}
.packs-separator-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 14px;
}
.packs-separator-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.klubikites {
  margin-top: 48px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
}
.klubikites-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.klubikites-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.klubikites-sub {
  font-size: 0.875rem;
  color: var(--muted);
}
.klubikites-cta {
  font-size: 0.85rem !important;
  padding: 10px 20px !important;
  flex-shrink: 0;
}
.klubikites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.kitem {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, background .2s, transform .2s var(--ease);
  cursor: default;
}
.kitem:hover {
  border-color: rgba(19,83,244,.3);
  background: var(--blue-light);
  transform: translateY(-2px);
}
.kitem-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.kitem-price {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(19,83,244,.1);
  padding: 3px 10px;
  border-radius: 50px;
}
.kitem-price--devis {
  color: var(--muted);
  background: var(--border);
}
.kitem-price--soon {
  color: var(--blue);
  background: var(--blue-light);
}
.kitem-sub {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• POUR QUI â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* ─── Pour qui — fond blanc ─── */
.pour-qui { padding: 60px 0 28px; background: var(--white); }
.pour-qui .section-head { margin-bottom: 0; }

/* Orbital visible partout, grille cachée */
.orbital-scene { display: block; }
.pour-qui .audience-grid { display: none; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}


/* Audience cards (mobile) */
.acard {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: border-color .25s, background .25s, transform .3s var(--ease);
}
.acard:hover {
  border-color: rgba(19,83,244,.3);
  background: var(--blue-light);
  transform: translateY(-4px);
}
.acard-emoji { display: block; font-size: 1.8rem; margin-bottom: 14px; line-height: 1; }
.acard h3 { font-size: 0.98rem; font-weight: 700; color: var(--black); margin-bottom: 8px; letter-spacing: -0.01em; }
.acard p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ─── Système orbital ─── */
.orbital-scene {
  position: relative;
  width: min(520px, calc(100vw - 56px));
  aspect-ratio: 1;
  margin: 20px auto 16px;
}

/* Anneau de l'orbite — couleur Pack Identité */
.orbital-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1.5px solid rgba(19,83,244,.25);
  pointer-events: none;
}

/* Noyau central — bleu Klubik */
.orbital-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  box-shadow: 0 0 32px rgba(19,83,244,.35);
}
.orbital-ping {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(19,83,244,.2);
  animation: orb-ping 2.5s ease-out infinite;
  pointer-events: none;
}
.orbital-ping--2 { width: 104px; height: 104px; animation-delay: .9s; }
@keyframes orb-ping {
  0%   { transform: scale(.75); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.orbital-core-inner {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: white;
}

/* ─── Noeuds ─── */
.onode {
  position: absolute;
  top: 50%; left: 50%;
  cursor: pointer;
  transition: opacity .4s;
}
.onode-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 2px solid rgba(19,83,244,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  transform: translate(-50%, -50%);
  transition: background .3s, border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.onode:hover .onode-btn,
.onode.active .onode-btn {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translate(-50%, -50%) scale(1.25);
}
.onode-label {
  position: absolute;
  top: 36px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
  transition: color .3s;
}
.onode.active .onode-label,
.onode:hover .onode-label { color: var(--blue); }

/* Popup au clic */
.onode-popup {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  background: var(--white);
  border: 1.5px solid rgba(19,83,244,.2);
  border-radius: 16px;
  padding: 18px;
  z-index: 200;
  box-shadow: var(--shadow-md), 0 0 0 4px var(--blue-light);
}
.onode.active .onode-popup { display: block; }
.onode-popup::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 10px;
  background: rgba(19,83,244,.3);
}
.onode-popup[style*="bottom"]::before {
  top: auto;
  bottom: -10px;
}
.onode-popup h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.onode-popup p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.65;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• AVANT / APRÃˆS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.avant-apres { padding: 76px 0; background: var(--surface); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ba-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: box-shadow .25s, border-color .25s;
}
.ba-item:hover {
  border-color: rgba(19,83,244,.2);
  box-shadow: var(--shadow-sm);
}
.ba-pair {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ba-side {
  flex: 1;
  border-radius: var(--radius);
  padding: 18px 14px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.ba-side--avant {
  background: #F3F4F6;
  border: 1.5px dashed #D1D5DB;
}
.ba-side--apres {
  background: var(--blue-light);
  border: 1.5px solid rgba(19,83,244,.2);
}
.ba-tag {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  background: white;
  padding: 2px 7px;
  border-radius: 50px;
}
.ba-tag--blue { color: var(--blue); background: rgba(19,83,244,.1); }
.ba-arrow {
  color: var(--blue);
  flex-shrink: 0;
  opacity: 0.6;
}
.ba-caption {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

/* BA logo visuals */
.ba-before-logo, .ba-after-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bbl-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #9CA3AF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.bbl-name { font-size: 0.78rem; font-weight: 800; color: #374151; letter-spacing: 0.04em; }
.bbl-sub  { font-size: 0.62rem; color: #9CA3AF; margin-top: 2px; }

/* BA post visuals */
.ba-before-post { text-align: center; }
.bbp-label { font-size: 0.6rem; font-weight: 600; color: #9CA3AF; letter-spacing: 1px; text-transform: uppercase; }
.bbp-score { font-size: 1.5rem; font-weight: 900; color: #374151; margin: 3px 0; letter-spacing: -1px; }
.bbp-note  { font-size: 0.6rem; color: #9CA3AF; }
.ba-after-post {
  background: linear-gradient(135deg, #0A0A0A, var(--blue));
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  width: 100%;
}
.bap-eyebrow { font-size: 0.52rem; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,.5); text-transform: uppercase; margin-bottom: 4px; }
.bap-score {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 5px;
}
.bap-score span { font-size: 0.9rem; letter-spacing: 0; color: rgba(255,255,255,.45); }
.bap-tag {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
  padding: 3px 8px;
  border-radius: 50px;
  margin-bottom: 4px;
}
.bap-clubs { font-size: 0.55rem; color: rgba(255,255,255,.35); }

/* BA communication visuals */
.ba-before-comm { text-align: center; }
.bbc-title { font-size: 0.85rem; font-weight: 900; color: #374151; letter-spacing: -0.5px; }
.bbc-sub { font-size: 0.62rem; color: #9CA3AF; margin-top: 4px; line-height: 1.5; }
.ba-after-comm {
  background: var(--blue);
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  width: 100%;
}
.bac-tag { font-size: 0.52rem; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,.6); text-transform: uppercase; margin-bottom: 4px; }
.bac-title { font-size: 1.1rem; font-weight: 900; color: white; letter-spacing: -1px; line-height: 1.1; margin-bottom: 4px; }
.bac-venue { font-size: 0.58rem; color: rgba(255,255,255,.55); }

/* BA jersey visuals */
.ba-before-jersey { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bbj-shape {
  width: 52px; height: 64px;
  background: #D1D5DB;
  border-radius: 6px 6px 3px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bbj-num { font-size: 1.3rem; font-weight: 900; color: #9CA3AF; }
.ba-after-jersey { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.baj-shape {
  width: 52px; height: 64px;
  background: var(--blue);
  border-radius: 6px 6px 3px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.baj-stripe {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 100%;
  background: rgba(255,255,255,.15);
}
.baj-num { font-size: 1.3rem; font-weight: 900; color: white; position: relative; z-index: 1; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• STICKY CTA MOBILE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• WHY KLUBIK â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why { padding: 76px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.why-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}
.why-left > p { color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 36px; }
.why-right { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: transform .25s var(--ease);
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-item:hover { transform: translateX(6px); }
.why-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.05em;
  padding-top: 4px;
  flex-shrink: 0;
  width: 28px;
}
.why-text h4 { font-size: 0.98rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.why-text p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• PORTFOLIO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.portfolio { padding: 76px 0; background: var(--surface); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.pcard:hover {
  border-color: rgba(19,83,244,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pcard-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  padding: 24px;
  overflow: hidden;
}
.pcard-info { padding: 20px 24px 24px; }
.pcard-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.pcard-info h4 { font-size: 0.98rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.pcard-info p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.portfolio .section-head { margin-bottom: 28px; }
.portfolio-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 64px 40px;
  background: var(--white);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-xl);
}
.portfolio-placeholder-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-placeholder-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.portfolio-placeholder-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
}
.portfolio-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 32px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Portfolio visuals */
.identity-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.id-logo { display: flex; justify-content: center; }
.id-name { font-size: 1.1rem; font-weight: 800; color: var(--black); letter-spacing: -0.02em; }
.id-colors { display: flex; gap: 8px; }
.id-colors div { width: 24px; height: 24px; border-radius: 50%; }

.jersey-showcase { display: flex; gap: 16px; align-items: center; }
.js-home {
  width: 70px;
  height: 90px;
  background: var(--blue);
  border-radius: 8px 8px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.js-home::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 28px; background: rgba(255,255,255,.12); }
.js-stripe { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 16px; height: 100%; background: rgba(255,255,255,.15); }
.js-num { font-size: 1.6rem; font-weight: 900; color: white; letter-spacing: -2px; position: relative; z-index: 1; }
.js-num--dark { color: var(--black); }
.js-away {
  width: 60px;
  height: 78px;
  background: white;
  border: 2px solid var(--blue);
  border-radius: 8px 8px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-showcase { display: flex; gap: 8px; width: 100%; }
.ss-post {
  flex: 1;
  height: 140px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  text-align: center;
}
.ss-post--1 { background: linear-gradient(135deg, #0A0A0A, var(--blue)); }
.ss-post--2 { background: var(--surface); border: 1px solid var(--border); }
.ss-post--3 { background: var(--blue); }
.ss-badge { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: 1px; margin-bottom: 4px; }
.ss-score { font-size: 1.6rem; font-weight: 900; color: white; letter-spacing: -2px; line-height: 1; }
.ss-label { font-size: 0.55rem; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,.7); margin-top: 4px; }
.ss-event { font-size: 0.75rem; font-weight: 700; color: var(--black); }
.ss-event-sub { font-size: 0.65rem; color: var(--muted); margin-top: 4px; }
.ss-transfer { font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,.7); }
.ss-transfer-name { font-size: 0.9rem; font-weight: 800; color: white; margin-top: 4px; }

.sponsor-showcase { width: 100%; }
.sp-cover {
  background: var(--blue);
  border-radius: 8px 8px 0 0;
  padding: 14px 16px;
}
.sp-club-name { font-size: 0.85rem; font-weight: 800; color: white; }
.sp-subtitle { font-size: 0.65rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.sp-grid {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.sp-offer {
  flex: 1;
  padding: 10px 6px;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  border-right: 1px solid var(--border);
}
.sp-offer:last-child { border-right: none; }
.sp-offer.gold { background: #FFF9E6; color: #B8860B; }
.sp-offer.silver { background: #F5F5F5; color: #555; }
.sp-offer.bronze { background: #FFF3EE; color: #B45309; }

.web-showcase { width: 100%; }
.ws-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px 8px 0 0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ws-bar > span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.ws-url { font-size: 0.62rem; color: var(--muted); margin-left: 8px; background: white; border: 1px solid var(--border); border-radius: 4px; padding: 2px 10px; }
.ws-content { background: white; border: 1px solid var(--border); border-top: none; border-radius: 0 0 8px 8px; padding: 10px; }
.ws-nav { display: flex; gap: 8px; margin-bottom: 8px; }
.ws-nav div { height: 4px; width: 32px; background: var(--border); border-radius: 2px; }
.ws-hero-block { height: 40px; background: linear-gradient(90deg, var(--blue-light), var(--surface)); border-radius: 6px; margin-bottom: 8px; }
.ws-cards { display: flex; gap: 6px; }
.ws-cards div { flex: 1; height: 28px; background: var(--surface); border-radius: 4px; }

.merch-showcase { display: flex; gap: 10px; align-items: flex-end; }
.merch-item { border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.banner { width: 100%; height: 36px; background: var(--blue); }
.banner-text { font-size: 0.55rem; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,.85); }
.badge { width: 52px; height: 52px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }
.flyer { width: 64px; height: 88px; background: linear-gradient(160deg, var(--blue-light), white); border: 1px solid var(--border); border-radius: 8px; padding: 8px; }
.flyer-title { font-size: 0.7rem; font-weight: 800; color: var(--black); }
.flyer-date { font-size: 0.65rem; font-weight: 700; color: var(--blue); margin-top: 4px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• PROCESS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.process { padding: 76px 0; background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  z-index: 0;
}
.pstep {
  padding: 0 24px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
.pstep-num {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 24px;
  transition: background .25s, color .25s, box-shadow .25s;
}
.pstep:hover .pstep-num { background: var(--blue); color: white; box-shadow: var(--shadow-blue); }
.pstep-bar { display: none; }
.pstep h4 { font-size: 0.98rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.pstep p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• CONTACT â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact { padding: 76px 0; background: var(--surface); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}
.contact-left > p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 36px; }
.contact-reach { display: flex; flex-direction: column; gap: 14px; }
.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem !important;
  padding: 16px 28px !important;
  margin-bottom: 28px;
  box-shadow: var(--shadow-blue);
}
.contact-wa-btn:hover { transform: translateY(-3px) !important; }

/* Bouton flottant WhatsApp */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-blue), 0 8px 32px rgba(19,83,244,.3);
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue), 0 12px 40px rgba(19,83,244,.4);
}
@media (max-width: 768px) {
  .wa-float span { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; bottom: 24px; right: 20px; }
}

.reach-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.reach-item:hover { color: var(--blue); }
.reach-item svg { color: var(--blue); flex-shrink: 0; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.field input,
.field select,
.field textarea {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
  resize: none;
}
.field input::placeholder,
.field textarea::placeholder { color: #B0B7C3; }
.field select option { background: white; color: var(--ink); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.btn-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.form-hint { text-align: center; font-size: 0.78rem; color: var(--muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FOOTER â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer { background: var(--white); border-top: 1px solid var(--border); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-brand .logo { font-size: 1.6rem; margin-bottom: 12px; display: inline-block; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; max-width: 240px; line-height: 1.6; }
.footer-cols { display: flex; gap: 60px; }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--muted); transition: color .18s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: var(--muted); transition: color .18s; }
.footer-legal a:hover { color: var(--blue); }

/* ─── Pages légales ─── */
.legal-page {
  padding: 120px 0 80px;
  min-height: 70vh;
}
.legal-header {
  margin-bottom: 48px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
  transition: color .18s;
}
.legal-back:hover { color: var(--blue); }
.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 8px;
}
.legal-updated { font-size: 0.85rem; color: var(--muted); }
.legal-content {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.legal-section h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal-section p,
.legal-section ul {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}
.legal-section ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: disc;
}
.legal-section a { color: var(--blue); }
.legal-section a:hover { text-decoration: underline; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 56px; padding-top: 130px; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-tags { justify-content: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  /* 4 cards on tablet (hide template) */
  .hero-right { height: 460px; max-width: 460px; margin: 0 auto; }
  .hcard--jersey   { top: 0;   left: 0;   width: 150px; }
  .hcard--match    { top: 22px; right: 0; width: 200px; }
  .hcard--brand    { top: 165px; left: 82px; width: 168px; }
  .hcard--template { display: none; }
  .hcard--sponsor  { bottom: 0; right: 10px; width: 160px; }
  /* grids */
  .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .feat-card { padding: 36px; }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .audience-grid   { grid-template-columns: repeat(2, 1fr); }
  .ba-grid         { grid-template-columns: 1fr; }
  .packs-row--main { grid-template-columns: 1fr; }
  .packs-row--secondary { grid-template-columns: 1fr; max-width: 480px; }
  .pack-card--featured { transform: none; padding-top: 52px; }
  .pack-card--featured:hover { transform: translateY(-4px); }
  .klubikites { padding: 36px 32px; }
  .klubikites-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    z-index: 905;
    font-size: 1.1rem;
  }
  .nav-links.open a { color: var(--ink); padding: 12px 24px; }
  .burger { display: flex; }
  /* Hero mobile */
  .hero { min-height: unset; padding-top: 110px; padding-bottom: 48px; gap: 40px; }
  .hero-right { display: none; }
  .desk-br { display: none; }
  .mob-br { display: inline; }
  .hcard--jersey  { top: 0; left: 0; width: 130px; }
  .hcard--match   { top: 18px; right: 0; width: 172px; }
  .hcard--brand   { top: 148px; left: 62px; width: 146px; }
  .hcard--sponsor { bottom: 0; right: 4px; width: 142px; }
  .feat-grid { grid-template-columns: 1fr; gap: 24px; }
  .feat-card { padding: 24px 20px; }
  .features-grid   { grid-template-columns: 1fr; }
  .audience-grid   { grid-template-columns: 1fr; }
  .ba-grid         { grid-template-columns: 1fr; }
  .packs-row--secondary { max-width: 100%; }
  .klubikites { padding: 28px 20px; }
  .klubikites-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-cols { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  /* Hero compact iPhone */
  .hero { padding-top: 96px; padding-bottom: 40px; gap: 32px; }
  .hero-title { font-size: 2.2rem; letter-spacing: -0.03em; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; justify-content: center; }
  .hero-eyebrow { font-size: 0.62rem; }
  .hero-right { height: 280px; }
  .hcard--jersey  { width: 112px; }
  .hcard--match   { width: 152px; top: 12px; }
  .hcard--brand   { width: 128px; top: 130px; left: 50px; }
  .hcard--sponsor { width: 132px; }
  /* Divers */
  .ba-pair { flex-direction: column; }
  .ba-arrow { transform: rotate(90deg); }
  .process-steps { grid-template-columns: 1fr; }
  .klubikites-grid { grid-template-columns: 1fr; }
  /* Navbar pill réduite */
  #navbar { padding: 12px 16px; }
  .nav-inner { height: 56px; padding: 0 16px; }
  .logo-img { height: 40px; }
}

