/* ===== NOTYGO — Site vitrine v3 ===== */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Barlow+Condensed:wght@700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0A1F44;
  --navy-dark:   #060d1a;
  --navy-light:  #0d2a5e;
  --navy-mid:    #112357;
  --gold:        #FF6422;
  --gold-dark:   #e5531b;
  --accent:      #FF6422;
  --accent-dark: #e5531b;
  --text:        #1a2332;
  --text-muted:  #6b7280;
  --bg:          #fafaf8;
  --surface:     #ffffff;
  --surface-2:   #f3f2ef;
  --border:      #e2e8f0;
  --border-2:    #d0d8e4;

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

  --shadow-sm:  0 1px 4px rgba(10,31,68,0.06);
  --shadow-md:  0 4px 16px rgba(10,31,68,0.09);
  --shadow-lg:  0 8px 40px rgba(10,31,68,0.14);
  --shadow-xl:  0 20px 60px rgba(10,31,68,0.18);

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(.22,.68,0,1.2), transform 0.6s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
nav {
  background: rgba(13, 42, 94, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-ctas { display: flex; gap: 0.625rem; align-items: center; }

.btn-nav-login {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.btn-nav-login:hover {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.35);
}

.btn-nav-register {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.btn-nav-register:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,176,31,0.35);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.2s;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background: white;
  color: var(--navy);
  padding: 7rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Vague de séparation bas du hero */
.hero::after { display: none; }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0; pointer-events: none; z-index: 1;
}
.hero-wave svg { display: block; width: 100%; height: 70px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,176,31,0.12);
  color: var(--gold);
  border: 1px solid rgba(255,176,31,0.25);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInDown 0.7s both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  max-width: 820px;
  margin: 0 auto 1.5rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  animation: fadeInUp 0.7s 0.1s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.75rem;
  font-weight: 300;
  animation: fadeInUp 0.7s 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s both;
}

/* ─────────────────────────────────────────
   STATS STRIP (moved outside hero)
───────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 2rem;
  position: relative;
  z-index: 2;
}
.stats-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   HERO DECORATIVE ELEMENTS
───────────────────────────────────────── */
.hero-blob-coral {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
.hero-arc-coral {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, var(--gold), var(--accent-dark));
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
.hero-dots {
  position: absolute;
  bottom: 100px;
  left: 52%;
  pointer-events: none;
}
.hero-dots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.hero-dot {
  width: 4px;
  height: 4px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.25;
}
.hero-lines {
  position: absolute;
  pointer-events: none;
  top: 60px;
  right: 380px;
}

/* ─────────────────────────────────────────
   HERO FEATURE BULLETS
───────────────────────────────────────── */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 1.5rem 0 2rem;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-feature-shield {
  width: 44px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 18%, 100% 65%, 50% 100%, 0% 65%, 0% 18%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255,100,34,0.35);
}
.hero-feature-shield svg {
  width: 20px;
  height: 20px;
}
.hero-feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.hero-feature-text span {
  font-size: 0.77rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   PLATFORM BADGES
───────────────────────────────────────── */
.hero-platforms {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-block;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 12px rgba(255,176,31,0.3);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,176,31,0.4);
}

.btn-secondary {
  background: rgba(10,31,68,0.06);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  border: 1px solid rgba(10,31,68,0.2);
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(10,31,68,0.1);
  border-color: rgba(10,31,68,0.35);
  transform: translateY(-1px);
}
/* In the CTA section (dark bg), btn-secondary should be white-on-dark */
.cta-section .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.2);
}
.cta-section .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
section { padding: 5.5rem 2rem; }

.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.1;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 3.5rem;
  font-weight: 300;
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   COMMENT ÇA MARCHE
───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: step-counter;
}

.step {
  text-align: center;
  padding: 2.25rem 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(255,100,34,0.3);
}

.step h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─────────────────────────────────────────
   FEATURE CARDS
───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(255,100,34,0.1), var(--shadow-md);
  border-color: rgba(255,100,34,0.2);
  transform: translateY(-3px);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255,100,34,0.09);
  border-radius: 12px;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 22px; height: 22px;
  color: var(--accent);
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-card-new {
  border-color: rgba(254,85,54,0.2);
  background: linear-gradient(160deg, rgba(254,85,54,0.03) 0%, var(--surface) 60%);
}
.feature-card-new::before {
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.feature-card-new:hover { border-color: rgba(254,85,54,0.35); }

.feature-new-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-left: 6px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

/* ─────────────────────────────────────────
   WAVE SEPARATORS
───────────────────────────────────────── */
.wave-sep {
  line-height: 0;
  display: block;
}
.wave-sep svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* ─────────────────────────────────────────
   SECTION DECORATIVE SYSTEM
───────────────────────────────────────── */

/* Comment ça marche — coral blob top-right + navy dots bottom-left */
.section-how {
  position: relative;
  overflow: hidden;
}
.section-how::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 450px; height: 450px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}
.section-how::after {
  content: '';
  position: absolute;
  bottom: 60px; left: -10px;
  width: 140px; height: 100px;
  background-image: radial-gradient(var(--navy) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.14;
  pointer-events: none;
}

/* Fonctionnalités — navy blob top-left + coral dots bottom-right */
.section-features-main {
  position: relative;
  overflow: hidden;
}
.section-features-main::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}
.section-features-main::after {
  content: '';
  position: absolute;
  bottom: 50px; right: -10px;
  width: 130px; height: 110px;
  background-image: radial-gradient(var(--gold) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.22;
  pointer-events: none;
}

/* Pricing — coral blob top-right + navy dots bottom-left */
.section-pricing-main {
  position: relative;
  overflow: hidden;
}
.section-pricing-main::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}
.section-pricing-main::after {
  content: '';
  position: absolute;
  bottom: 40px; left: -10px;
  width: 110px; height: 90px;
  background-image: radial-gradient(var(--navy) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.12;
  pointer-events: none;
}

/* Bêta CTA — small coral blob accent */
.section-beta-cta {
  position: relative;
  overflow: hidden;
}
.section-beta-cta::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 280px; height: 280px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

/* ─────────────────────────────────────────
   SPORTS SECTION
───────────────────────────────────────── */
.sports-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
  padding: 5.5rem 2rem;
}
.sports-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.09;
  pointer-events: none;
}
.sports-section::after {
  content: '';
  position: absolute;
  bottom: 40px; left: 30px;
  width: 130px; height: 90px;
  background-image: radial-gradient(rgba(255,255,255,0.5) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 1;
  pointer-events: none;
}

.sports-section .section-title { color: white; }
.sports-section .section-subtitle { color: rgba(255,255,255,0.5); }
.sports-section .section-label { color: rgba(255,100,34,0.85); }

.sports-grid {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sport-badge {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
  cursor: default;
}
.sport-badge:hover {
  background: rgba(255,100,34,0.14);
  border-color: rgba(255,100,34,0.40);
  color: white;
  box-shadow: 0 4px 14px rgba(255,100,34,0.18);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  transition: all 0.25s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(255,100,34,0.15);
  background: linear-gradient(160deg, rgba(255,100,34,0.03) 0%, var(--surface) 100%);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255,100,34,0.3);
}

.pricing-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}
.pricing-price sup { font-size: 1.4rem; font-weight: 700; vertical-align: super; letter-spacing: 0; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; margin-top: 2px; }

.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.875rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.925rem;
  transition: all 0.2s;
}

.btn-pricing-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(255,100,34,0.3);
}
.btn-pricing-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(255,100,34,0.4);
  transform: translateY(-1px);
}

.btn-pricing-secondary {
  background: var(--bg);
  color: var(--navy);
  border: 2px solid var(--border-2);
}
.btn-pricing-secondary:hover {
  border-color: var(--navy);
  background: var(--surface-2);
}

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-section {
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(13, 42, 94, 0.7) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.10;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.07;
  pointer-events: none;
}
/* White dots in CTA */
.cta-section .cta-dots {
  position: absolute;
  top: 30px; left: 40px;
  width: 100px; height: 80px;
  background-image: radial-gradient(rgba(255,255,255,0.35) 2px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.cta-section p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.25rem;
  font-size: 1rem;
  font-weight: 300;
}

/* ─────────────────────────────────────────
   BLOG
───────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-2);
}

.blog-card-img {
  height: 190px;
  background: #0d2a5e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}
.blog-card-img img { transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.blog-card-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; opacity: 0.8; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.925rem;
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10,31,68,0.2);
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); letter-spacing: 0.2px; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,31,68,0.07);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  border: none;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(10,31,68,0.2);
  font-family: var(--font-body);
}
.btn-submit:hover {
  box-shadow: 0 8px 28px rgba(10,31,68,0.3);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: #0d2a5e;
  color: rgba(255,255,255,0.65);
  padding: 4rem 2rem 2rem;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,176,31,0.3), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 270px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-logo img { height: 30px; width: auto; display: block; }

.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
  display: inline-block;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── SOCIAL ── */
.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   PAGE HERO (sous-pages)
───────────────────────────────────────── */
.page-hero {
  background: white;
  color: var(--navy);
  padding: 5rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Blob coral haut droite */
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
/* Vague arrondie bas → transition vers section suivante */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -32px; left: -5%; right: -5%;
  height: 64px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}
/* Dots navy coin bas gauche via background-image */
.page-hero .page-hero-dots {
  position: absolute;
  bottom: 50px; left: 20px;
  width: 110px; height: 80px;
  background-image: radial-gradient(var(--navy) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.12;
  pointer-events: none;
}
.page-hero .section-label { color: var(--accent); margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.05;
}
.page-hero p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────
   FONCTIONNALITÉ CLÉ — 2 colonnes
───────────────────────────────────────── */
.feat-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

/* ─────────────────────────────────────────
   NOTIFICATION SHOWCASE (fonctionnalites)
───────────────────────────────────────── */
.notif-showcase {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
}
.notif-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: url('/images/fond1.png') center / cover no-repeat;
}
.notif-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(6,13,26,0.35) 0%, rgba(6,13,26,0.1) 100%);
}
.notif-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 2rem;
  width: 100%;
  max-width: 320px;
}
.notif-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: notifSlideIn 0.5s both;
}
.notif-card:nth-child(2) { animation-delay: 0.2s; }
@keyframes notifSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}
.notif-card-solo {
  background: rgba(254,85,54,0.18);
  border-color: rgba(254,85,54,0.35);
}
.notif-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.notif-card-header span { font-size: 0.68rem; color: rgba(255,255,255,0.45); }
.notif-card-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.25rem; }
.notif-card-body { font-size: 0.8rem; color: rgba(255,255,255,0.72); }
.notif-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   SCREENSHOTS
───────────────────────────────────────── */
.screenshot-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  line-height: 0;
}
.screenshot-img {
  width: 100%;
  display: block;
  height: auto;
}
.screenshots-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.screenshot-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1;
}

/* ─────────────────────────────────────────
   EVENT BANNER
───────────────────────────────────────── */
.event-banner {
  margin-top: 1.5rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,100,34,0.06) 0%, var(--surface) 50%);
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.event-banner-label {
  position: absolute;
  top: -14px;
  left: 2rem;
  background: linear-gradient(90deg, var(--gold), #e5531b);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.event-banner-body {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 1;
}
.event-banner-features {
  list-style: none;
  display: flex;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
  margin: 0;
}
.event-banner-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text);
}
.btn-event-banner {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.925rem;
  background: linear-gradient(135deg, var(--gold), #e5531b);
  color: white;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,100,34,0.3);
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-event-banner:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─────────────────────────────────────────
   TARIFS PAGE — full table
───────────────────────────────────────── */
.pricing-table-wrap { overflow-x: auto; }

table.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
table.pricing-table th {
  background: #0d2a5e;
  color: white;
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}
table.pricing-table th:first-child { text-align: left; border-radius: var(--radius-sm) 0 0 0; }
table.pricing-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
table.pricing-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text);
}
table.pricing-table td:first-child { text-align: left; font-weight: 500; color: var(--text-muted); }
table.pricing-table tr:last-child td { border-bottom: none; }
table.pricing-table tr:nth-child(even) td { background: var(--bg); }
table.pricing-table .check { color: var(--accent); font-weight: 700; font-size: 1rem; }
table.pricing-table .cross { color: var(--border-2); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .feat-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .screenshots-duo { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .hero { padding: 5rem 1.5rem 4rem; }
  .hero-wave svg { height: 50px; }
  .hero-stat strong { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .event-banner { padding: 1.5rem 1.25rem; }
  .event-banner-features { flex-direction: column; gap: 0.4rem; }
  .btn-event-banner { width: 100%; text-align: center; }
  .hero-arc-coral { width: 200px; height: 200px; bottom: -50px; right: -50px; }
  .hero-lines { display: none; }
  .hero-dots { display: none; }
  .stats-strip-inner { justify-content: center; gap: 1.5rem; }
  .section-how::before { width: 250px; height: 250px; top: -80px; right: -80px; }
  .section-how::after { display: none; }
  .section-features-main::before { width: 200px; height: 200px; }
  .section-features-main::after { display: none; }
  .section-pricing-main::before { width: 200px; height: 200px; }
  .section-pricing-main::after { display: none; }
  .cta-section::before { width: 250px; }
  .cta-section::after { display: none; }
  .sports-section::after { display: none; }
  .wave-sep svg { height: 30px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero-stats { gap: 1rem; padding-top: 2rem; margin-top: 3rem; }
  .hero-stat strong { font-size: 1.7rem; }
  .feat-showcase .screenshot-wrap { order: -1; }
  .btn-primary, .btn-secondary { padding: 13px 22px; font-size: 0.9rem; }
  .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .sports-section { padding: 4rem 1.25rem; }
  .event-banner-body { flex-direction: column; gap: 1rem; }
  .hero-blob-coral { width: 300px; height: 300px; top: -80px; right: -80px; }
  .hero-arc-coral { width: 160px; height: 160px; }
  .hero-features { gap: 0.75rem; }
  .stats-strip { padding: 1.5rem 1.25rem; }
  .stats-strip-inner { gap: 1rem; }
  .npd-phone.hero-phone-size { width: 240px; }
  .npd-notif-app { font-size: 0.65rem; }
  .npd-notif-time { font-size: 0.65rem; }
  .tv-inst { font-size: 0.65rem; }
}

/* ─────────────────────────────────────────
   MOBILE NAV
───────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 200;
  flex-direction: column;
  padding: 2rem;
  max-height: 100vh;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: white; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu nav a:hover { color: white; }
.mobile-menu-ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu-ctas a {
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   HERO PHONE DEMO
═══════════════════════════════════════════ */
.hero-phone-demo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: fadeInUp 0.8s 0.4s both;
}

.hero-phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px; height: 360px;
  background: radial-gradient(ellipse, rgba(255,100,34,0.22) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-breathe 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.hero-phone-size {
  width: 300px;
  z-index: 1;
  transform: rotate(-2deg);
}
.npd-phone.hero-phone-size {
  width: 300px;
  border-radius: 40px;
}
.npd-phone.hero-phone-size::before {
  width: 75px;
  height: 7px;
}
.hero-phone-size .npd-screen {
  border-radius: 32px;
}
.hero-phone-size .npd-notifs-area {
  padding-bottom: 180px;
  min-height: 300px;
}
.feature-highlight-notif .npd-notifs-area {
  padding-bottom: 70px;
  min-height: 170px;
}

.hero-npd--1 {
  animation:
    notifIn 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.9s both,
    notifFloat 3.5s ease-in-out 1.5s infinite;
}
.hero-npd--2 {
  animation:
    notifIn 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.8s both,
    notifFloat 3.5s ease-in-out 2.5s infinite;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(10,31,68,0.1);
}

.hero-live-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

/* ═══════════════════════════════════════════
   HERO v2 — SPLIT LAYOUT + NOTIF MOCKUP
═══════════════════════════════════════════ */
.hero-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.hero-content { flex: 1; min-width: 0; max-width: 540px; }

.hero-content h1 {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
}
.hero-content p {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
}
.hero-content .hero-ctas { justify-content: flex-start; }

.hero-compat {
  font-size: 0.78rem;
  color: rgba(10,31,68,0.3);
  margin-top: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.hero-visual {
  flex: 0 0 auto;
  width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.notif-stack { position: relative; width: 100%; padding: 1rem; }

/* Notification bubbles */
.notif-bubble {
  background: white;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(10,31,68,0.2), 0 2px 8px rgba(10,31,68,0.08);
  margin-bottom: 12px;
  opacity: 0;
}

.notif-bubble--1 {
  animation:
    notifIn 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.6s both,
    notifFloat 3.5s ease-in-out 1.2s infinite;
}
.notif-bubble--2 {
  animation:
    notifIn 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.5s both,
    notifFloat 3.5s ease-in-out 2.2s infinite;
  margin-left: 20px;
}

@keyframes notifIn {
  from { opacity: 0; transform: translateY(-18px) scale(0.94); }
  to   { opacity: 1; transform: none; }
}

@keyframes notifFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.notif-bubble-icon {
  width: 38px;
  height: 38px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.notif-bubble-body  { flex: 1; min-width: 0; }

.notif-bubble-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.notif-bubble-app {
  font-size: 0.7rem;
  font-weight: 700;
  color: #3B82F6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notif-bubble-time { font-size: 0.68rem; color: #94a3b8; }

.notif-bubble-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 2px;
}

.notif-bubble-sub { font-size: 0.775rem; color: #64748b; }

.notif-hint {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
  margin-top: 6px;
  letter-spacing: 0.2px;
}

@media (max-width: 860px) {
  .hero-inner { flex-direction: column; text-align: center; gap: 2.5rem; }
  .hero-content h1,
  .hero-content p { text-align: center; }
  .hero-content .hero-ctas { justify-content: center; }
  .hero-content .hero-features { align-items: center; }
  .hero-content .hero-platforms { justify-content: center; }
  .hero-visual { width: 100%; max-width: 420px; }
  .notif-bubble--2 { margin-left: 0; }
  .hero-phone-size { width: 260px; transform: none; }
  .npd-phone { width: 260px; }
  .npd-phone--small { width: 200px; }
  .hero-phone-glow { width: 220px; height: 340px; }
  .hero-arc-coral { display: none; }
  .hero-dots { display: none; }
}

/* ═══════════════════════════════════════════
   STEPS v2 — ZIGZAG AVEC SCREENSHOTS
═══════════════════════════════════════════ */
.steps-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.step-v2 {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.step-v2--rev { flex-direction: column; }

.step-v2-text {
  flex: none;
  max-width: none;
  padding: 2rem 2rem 1.5rem;
}

.step-v2-text .step-number { margin: 0 0 1.25rem 0; }

.step-v2-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.step-v2-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.step-v2-img {
  flex: 1;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  background: #0A1F44;
  min-height: 220px;
  display: flex;
  align-items: stretch;
}

/* ═══════════════════════════════════════════
   APP MOCKUP SCREENS
═══════════════════════════════════════════ */
.app-screen {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
}

.app-chrome {
  background: #0f1828;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.app-chrome-dots { display: flex; gap: 5px; }
.app-chrome-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.app-chrome-title {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.2px;
  flex: 1;
  text-align: center;
  padding-right: 23px;
}

.app-body {
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.app-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
  display: block;
}

.app-field { display: flex; flex-direction: column; }

.app-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  padding: 8px 11px;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-chevron { color: rgba(255,255,255,0.22); font-size: 0.6rem; }

.app-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }

.app-cta {
  background: var(--gold);
  color: var(--navy);
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 0.79rem;
  font-weight: 700;
  text-align: center;
  cursor: default;
  margin-top: 4px;
}

.app-cta-outline {
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 0.72rem;
  text-align: center;
  cursor: default;
}

.app-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 2px 0;
}

.app-success {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}

.app-dot-green {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* QR screen */
.app-body-center { align-items: center; text-align: center; }

.app-qr-frame {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px;
  display: inline-flex;
}

.app-concours-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}

.app-team-name {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.38);
}

.app-hint-text {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.2px;
}

/* Call screen */
.app-vs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 0;
}

.app-team-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.77rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}

.app-vs {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.app-recent-item {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
}

.app-check { color: #22c55e; }

/* Lock screen step 4 */
.app-lockscreen {
  background: linear-gradient(180deg, #0c1529 0%, #111d35 100%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem 1.25rem 1.25rem;
  gap: 0.75rem;
  flex: 1;
  position: relative;
}

.app-lockscreen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 45% at 50% 0%, rgba(20,50,120,0.65) 0%, transparent 60%);
  pointer-events: none;
}

.app-lock-time {
  font-size: 2.8rem;
  font-weight: 200;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
  position: relative;
  text-shadow: 0 2px 20px rgba(255,255,255,0.1);
}

.app-lock-date {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  margin-top: -2px;
  position: relative;
}

.app-lock-notif {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  position: relative;
  animation: notifIn 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
}

.app-lock-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #1c3f82 0%, #0d2a5e 100%);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.app-lock-body { flex: 1; min-width: 0; }

.app-lock-row {
  display: flex; justify-content: space-between;
  margin-bottom: 2px;
}

.app-lock-app {
  font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.app-lock-t { font-size: 0.56rem; color: rgba(255,255,255,0.24); }

.app-lock-title {
  font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.92); line-height: 1.2;
}

.app-lock-sub {
  font-size: 0.62rem; color: rgba(255,255,255,0.45); margin-top: 1px;
}

.app-lock-hint {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.18);
  position: relative;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .steps-v2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-v2-text { padding: 1.5rem 1.5rem 1.25rem; }
  .step-v2-img { min-height: 180px; }
}

/* ═══════════════════════════════════════════
   FEATURE HIGHLIGHTS — SPLIT AVEC SCREENSHOTS
═══════════════════════════════════════════ */
.features-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-highlight {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature-highlight:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.feature-highlight--rev { flex-direction: row-reverse; }

.feature-highlight-text {
  flex: 1;
  padding: 2.75rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-highlight-icon {
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1;
}
.feature-highlight-icon svg {
  width: 40px; height: 40px;
  color: var(--accent);
}

.feature-highlight-text h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.feature-highlight-text p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.feature-highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-highlight-list li {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.feature-highlight-img {
  flex: 0 0 46%;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(255,100,34,0.10) 0%, transparent 60%),
    #0A1F44;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.feature-highlight-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.feature-highlight:hover .feature-highlight-img img { transform: scale(1.02); }

@media (max-width: 900px) {
  .feature-highlight,
  .feature-highlight--rev { flex-direction: column; }
  .feature-highlight-img { flex: none; height: 220px; width: 100%; }
  .feature-highlight-notif { flex: none; height: 300px; width: 100%; }
  .feature-highlight-text { padding: 2rem; }
}

/* ═══════════════════════════════════════════
   NOTIFICATION PHONE DEMO — feature highlight
═══════════════════════════════════════════ */
.feature-highlight-notif {
  flex: 0 0 46%;
  background:
    radial-gradient(ellipse 70% 50% at 70% 40%, rgba(255,100,34,0.14) 0%, transparent 60%),
    #0A1F44;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.npd-phone {
  width: 300px;
  background: #0b0f18;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 0 60px rgba(255,255,255,0.07),
    0 0 0 1px rgba(255,255,255,0.14),
    0 0 0 5px rgba(255,255,255,0.04),
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Dynamic island */
/* Variante petite taille — sections secondaires */
.npd-phone--small {
  width: 220px;
  border-radius: 32px;
}

.npd-phone::before {
  content: '';
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 7px;
  background: #000;
  border-radius: 999px;
  z-index: 5;
}

.npd-phone-ring {
  position: absolute;
  inset: -3px;
  border-radius: 37px;
  border: 1px solid rgba(255,100,34,0.22);
  pointer-events: none;
  animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; box-shadow: 0 0 0 0 rgba(255,100,34,0); }
  50%       { opacity: 1;   box-shadow: 0 0 28px 6px rgba(255,100,34,0.12); }
}

.npd-screen {
  background: linear-gradient(180deg, #0c1529 0%, #111d35 100%);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  padding-bottom: 14px;
}

.npd-screen::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 140% 50% at 50% -5%, rgba(20,50,120,0.75) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}

.npd-clock {
  text-align: center;
  padding: 30px 0 18px;
  position: relative; z-index: 1;
}

.npd-clock-time {
  font-size: 3.3rem;
  font-weight: 200;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(255,255,255,0.12);
}

.npd-clock-date {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.38);
  margin-top: 5px;
  letter-spacing: 0.3px;
}

.npd-notifs-area {
  padding: 0 8px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative; z-index: 1;
  min-height: 130px;
}

.npd-notif {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0;
  will-change: transform, opacity;
}

.npd-notif--a { animation: npd-cycle 7s ease 0.8s infinite; }
.npd-notif--b { animation: npd-cycle 7s ease 2.2s infinite; }

@keyframes npd-cycle {
  0%   { opacity: 0; transform: translateY(-14px) scale(0.93); }
  6%   { opacity: 1; transform: translateY(3px) scale(1.015); }
  12%  { opacity: 1; transform: translateY(0) scale(1); }
  76%  { opacity: 1; transform: translateY(0) scale(1); }
  86%  { opacity: 0; transform: translateY(8px) scale(0.97); }
  100% { opacity: 0; transform: translateY(-14px) scale(0.93); }
}

.npd-notif-icon {
  width: 29px; height: 29px;
  background: linear-gradient(135deg, #1c3f82 0%, #0d2a5e 100%);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.npd-notif-body { flex: 1; min-width: 0; }

.npd-notif-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.npd-notif-app {
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.npd-notif-time {
  font-size: 0.56rem;
  color: rgba(255,255,255,0.26);
}

.npd-notif-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.93);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.npd-notif-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.46);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.npd-lockscreen-hint {
  text-align: center;
  padding: 16px 0 12px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.4px;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════
   BETA POPUP
═══════════════════════════════════════════ */
.beta-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,31,68,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.beta-popup-overlay.beta-popup-visible {
  opacity: 1;
  pointer-events: all;
}

.beta-popup-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 72px rgba(10,31,68,0.28);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.beta-popup-overlay.beta-popup-visible .beta-popup-box {
  transform: none;
}

.beta-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--surface-2);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.beta-popup-close:hover { background: var(--border-2); color: var(--navy); }

.beta-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,100,34,0.08);
  color: var(--accent);
  border: 1px solid rgba(255,100,34,0.2);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.beta-popup-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

.beta-popup-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.beta-popup-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.beta-popup-counter { margin-bottom: 1.5rem; }

.beta-popup-bar-wrap {
  height: 7px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.beta-popup-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 999px;
  transition: width 0.7s ease;
}

.beta-popup-counter-label {
  font-size: 0.83rem;
  color: var(--text-muted);
  text-align: center;
}
.beta-popup-counter-label strong { color: var(--navy); }

.beta-popup-cta {
  display: block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(255,100,34,0.28);
}
.beta-popup-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,100,34,0.4);
}

/* ═══════════════════════════════════════════
   TV SCREEN MOCKUP
═══════════════════════════════════════════ */
.tv-mockup {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  background: #000;
  box-shadow: 0 0 50px rgba(255,255,255,0.06), 0 0 0 1px rgba(255,255,255,0.1);
}

.tv-header {
  background: white;
  border-bottom: 4px solid #2563eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  flex-shrink: 0;
  gap: 12px;
}

.tv-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.tv-club-badge {
  width: 32px; height: 32px;
  background: #2563eb;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.tv-club-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.2;
}

.tv-concours-name {
  font-size: 0.85rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.tv-clock {
  font-family: monospace;
  font-size: 2rem;
  font-weight: 900;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -1px;
}

.tv-clock-secs {
  font-size: 1rem;
  font-weight: 700;
  color: #9ca3af;
}

.tv-main {
  flex: 1;
  background: #000;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tv-match-card {
  background: #111827;
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tv-match-card--active {
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
  box-shadow: 0 0 12px rgba(37,99,235,0.4);
}

.tv-inst {
  font-size: 0.62rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  width: 52px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 3px 6px;
  text-align: center;
}

.tv-match-card--active .tv-inst { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.12); }

.tv-teams {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tv-time {
  font-size: 0.62rem;
  color: #6b7280;
  flex-shrink: 0;
  font-family: monospace;
}

.tv-match-card--active .tv-time { color: rgba(255,255,255,0.5); }

.tv-footer {
  background: white;
  border-top: 4px solid #2563eb;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-shrink: 0;
}

.tv-sponsor-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
}

.tv-sponsor-icon {
  width: 28px; height: 28px;
  background: #f3f4f6;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}

.tv-footer-label {
  font-size: 0.6rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-right: 1px solid #e5e7eb;
  padding-right: 20px;
  margin-right: 4px;
}

/* Player page (light) sponsor card */
.player-mockup {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  font-family: var(--font-body);
}

.player-header {
  background: var(--navy);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.player-header-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.player-header-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
}

.player-body {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.player-recent {
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
}

.player-recent-title {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 7px;
}

.player-recent-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  padding: 4px 0;
  color: var(--navy);
  border-bottom: 1px solid #f1f5f9;
}

.player-recent-item:last-child { border-bottom: none; }

.player-recent-pill {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.58rem;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

.player-sponsor-section {
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.player-sponsor-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #94a3b8;
  text-align: center;
  padding: 8px 12px 0;
}

.player-sponsor-card {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.player-sponsor-logo {
  width: 48px; height: 48px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid #e2e8f0;
}

.player-sponsor-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
}

.player-sponsor-desc {
  font-size: 0.62rem;
  color: #64748b;
}

.player-sponsor-btn {
  background: #2563eb;
  color: white;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
