/* =============================================
   IPTV Belgique 24 — Styles partagés
   Palette : Noir #000000 | Jaune #FDDA24 | Rouge #EF3340
   ============================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --noir:    #000000;
  --jaune:   #FDDA24;
  --rouge:   #EF3340;
  --fond:    #0A0A0F;
  --fond2:   #12121A;
  --card:    #1A1A24;
  --blanc:   #FFFFFF;
  --gris:    #B8C1D1;
  --gris2:   #6B7690;
  --wa:      #25D366;
  --grad:    linear-gradient(135deg, #EF3340 0%, #FDDA24 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--fond);
  color: var(--blanc);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Marquee (barre défilante) ── */
.be-marquee-wrap {
  background: linear-gradient(90deg, #EF3340 0%, #000000 50%, #FDDA24 100%);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.be-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: be-scroll 30s linear infinite;
}
.be-marquee-track span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 0 60px;
}
@keyframes be-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Top Bar ── */
.be-topbar {
  background: var(--fond2);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.be-topbar p {
  color: var(--blanc);
  font-size: 13px;
  font-weight: 400;
}
.be-topbar span { color: var(--jaune); font-weight: 600; }

/* ── Navbar ── */
.be-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.be-nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.be-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.be-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--blanc);
  white-space: nowrap;
}
.be-logo .accent { color: var(--jaune); }
.be-navbar-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.be-navbar-logo img {
  display: block;
  height: 52px;
  width: auto;
  max-height: 52px;
  max-width: 220px;
  object-fit: contain;
}
.be-footer-logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.be-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.be-nav-links a {
  color: var(--gris);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.be-nav-links a:hover,
.be-nav-links a.active { color: var(--blanc); background: rgba(255,255,255,0.07); }
.be-nav-cta {
  background: var(--wa);
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap;
}
.be-nav-cta:hover { background: #20b957 !important; transform: translateY(-1px) !important; }

/* ── Burger ── */
.be-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.be-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition: 0.3s;
}
.be-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,15,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.be-mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.be-mobile-menu a {
  color: var(--blanc);
  font-size: 22px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 12px;
  transition: background 0.2s;
}
.be-mobile-menu a:hover { background: rgba(255,255,255,0.08); }
.be-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--blanc);
  font-size: 32px;
  cursor: pointer;
}

/* ── Badge pilule ── */
.be-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,51,64,0.1);
  border: 1px solid rgba(239,51,64,0.3);
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--rouge);
  font-size: 14px;
  font-weight: 500;
}

/* ── Dégradé texte ── */
.be-grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Boutons ── */
.be-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.be-btn-rouge {
  background: #EF3340;
  color: #fff;
  box-shadow: 0 8px 32px rgba(239,51,64,0.35);
}
.be-btn-rouge:hover { background: #FF4A57; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(239,51,64,0.45); }
.be-btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
}
.be-btn-wa:hover { background: #20b957; transform: translateY(-2px); }
.be-btn-lg { padding: 20px 48px; font-size: 17px; border-radius: 14px; }

/* ── Section titles ── */
.be-section { padding: 80px 24px; }
.be-section-dark { background: var(--fond); }
.be-section-mid  { background: var(--fond2); }
.be-section-light { background: #F8FAFC; }
.be-container { max-width: 1200px; margin: 0 auto; }

.be-kicker {
  font-size: 14px;
  font-weight: 500;
  color: var(--rouge);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.be-h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--blanc);
}
.be-section-light .be-h2 { color: #111; }
.be-subtitle {
  font-size: 17px;
  color: var(--gris);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.be-section-light .be-subtitle { color: #444; }

/* ── Hero ── */
.be-hero {
  position: relative;
  background: var(--fond);
  padding: 100px 24px 80px;
  text-align: center;
  overflow: hidden;
}
.be-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.be-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.be-h1 {
  font-size: 68px;
  font-weight: 900;
  line-height: 1.08;
  margin: 20px 0 24px;
  color: var(--blanc);
}
.be-h1-sub {
  font-size: 22px;
  color: var(--gris);
  margin-bottom: 20px;
  font-weight: 400;
}
.be-hero-desc {
  font-size: 17px;
  color: var(--gris);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.be-hero-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.be-hero-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px 28px;
  text-align: left;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
}
.be-hero-card-icon { margin-bottom: 12px; }
.be-hero-card-title { font-size: 15px; font-weight: 700; color: var(--blanc); margin-bottom: 4px; }
.be-hero-card-desc { font-size: 13px; color: var(--gris2); }

/* ── Stats ── */
.be-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.be-stat-num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.be-stat-label { font-size: 16px; color: var(--gris); font-weight: 500; }

/* ── Feature 2-cols ── */
.be-feature-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  align-items: center;
}
.be-feature-list { display: flex; flex-direction: column; gap: 28px; margin: 32px 0; }
.be-feature-item { display: flex; gap: 16px; align-items: flex-start; }
.be-feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(239,51,64,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.be-feature-text-title { font-size: 17px; font-weight: 700; color: var(--blanc); margin-bottom: 6px; }
.be-feature-text-desc { font-size: 15px; color: var(--gris); line-height: 1.65; }

/* ── Stats cards (droite) ── */
.be-stats-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.be-stats-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.be-stats-card-num {
  font-size: 32px; font-weight: 800; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.be-stats-card-label { font-size: 13px; color: var(--gris2); font-weight: 500; }

/* ── Pricing Card ── */
.be-price-wrap { display: flex; justify-content: center; margin-top: 48px; }
.be-price-card {
  position: relative;
  background: #0A0A0F;
  border: 2px solid #EF3340;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(239,51,64,0.3), 0 0 120px rgba(253,218,36,0.15);
}
.be-price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rouge);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(239,51,64,0.4);
}
.be-price-name { font-size: 22px; font-weight: 700; color: var(--blanc); margin-bottom: 4px; }
.be-price-meta { font-size: 14px; color: var(--gris2); margin-bottom: 24px; }
.be-price-amount {
  font-size: 80px; font-weight: 800; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 20px rgba(239,51,64,0.4));
  margin-bottom: 6px;
}
.be-price-note { font-size: 13px; color: var(--gris2); margin-bottom: 32px; }
.be-price-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 24px 0; }
.be-price-features { text-align: left; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.be-price-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--gris);
}
.be-price-feature svg { min-width: 18px; color: var(--rouge); }
.be-btn-wa-full {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 18px; border-radius: 12px;
  background: var(--wa); color: #fff; font-size: 16px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  border: none; cursor: pointer;
}
.be-btn-wa-full:hover { background: #20b957; transform: translateY(-2px); }
.be-price-guarantee { font-size: 13px; color: var(--gris2); margin-top: 16px; font-style: italic; }
.be-price-reassure {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 32px; flex-wrap: wrap;
}
.be-price-reassure-item { font-size: 14px; color: var(--gris2); display: flex; align-items: center; gap: 6px; }

/* ── Features Grid 3×2 ── */
.be-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.be-fgrid-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
}
.be-fgrid-icon {
  width: 52px; height: 52px;
  background: rgba(239,51,64,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.be-fgrid-title { font-size: 18px; font-weight: 700; color: var(--blanc); margin-bottom: 10px; }
.be-fgrid-desc { font-size: 14px; color: var(--gris); line-height: 1.65; }

/* ── Compat Grid ── */
.be-compat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.be-compat-card {
  background: #fff;
  border: 1px solid #e5e7ef;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.be-compat-card:hover { box-shadow: 0 8px 32px rgba(239,51,64,0.12); transform: translateY(-3px); }
.be-compat-icon { font-size: 40px; margin-bottom: 12px; }
.be-compat-label { font-size: 14px; font-weight: 600; color: #1a1a2e; }

/* ── FAQ ── */
.be-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.be-faq-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
}
.be-faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; color: var(--blanc);
  font-size: 16px; font-weight: 600; text-align: left;
  gap: 16px;
}
.be-faq-arrow {
  min-width: 24px; height: 24px;
  background: rgba(239,51,64,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.be-faq-item.open .be-faq-arrow { transform: rotate(180deg); background: rgba(239,51,64,0.25); }
.be-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 15px; color: var(--gris); line-height: 1.7;
}
.be-faq-a-inner { padding: 0 28px 22px; }

/* ── CTA final ── */
.be-cta-section {
  background: var(--fond);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.be-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(239,51,64,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.be-cta-h2 {
  font-size: 56px; font-weight: 900;
  line-height: 1.1; margin-bottom: 20px;
}
.be-cta-sub { font-size: 20px; color: var(--gris); margin-bottom: 40px; }

/* ── Footer ── */
.be-footer {
  background: #050810;
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.be-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.be-footer-logo { font-size: 24px; font-weight: 800; color: var(--blanc); margin-bottom: 16px; }
.be-footer-logo .accent { color: var(--jaune); }
.be-footer-desc { font-size: 14px; color: var(--gris2); line-height: 1.7; margin-bottom: 20px; }
.be-footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--jaune); font-size: 15px; font-weight: 600;
  transition: color 0.2s;
}
.be-footer-wa:hover { color: var(--blanc); }
.be-footer-title { font-size: 13px; font-weight: 700; color: var(--blanc); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.be-footer-links { display: flex; flex-direction: column; gap: 10px; }
.be-footer-links a { font-size: 14px; color: var(--gris2); transition: color 0.2s; }
.be-footer-links a:hover { color: var(--jaune); }
.be-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--gris2);
  max-width: 1200px; margin: 0 auto;
}
.be-footer-bottom a { color: var(--gris2); text-decoration: underline; }
.be-footer-bottom a:hover { color: var(--jaune); }

/* ── WhatsApp Flottant ── */
.be-wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 64px; height: 64px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.be-wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.55); }

/* ── Page hero court (sous-pages) ── */
.be-hero-short {
  background: var(--fond);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.be-hero-short .be-h1 { font-size: 48px; }

/* ── Link feature ── */
.be-feature-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--rouge); font-size: 15px; font-weight: 600;
  transition: gap 0.2s;
}
.be-feature-link:hover { gap: 12px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .be-nav-links { display: none; }
  .be-burger { display: flex; }
  .be-navbar-logo img { height: 40px; max-height: 40px; max-width: 160px; }

  .be-h1 { font-size: 40px; }
  .be-h2 { font-size: 32px; }
  .be-cta-h2 { font-size: 36px; }
  .be-stat-num { font-size: 40px; }
  .be-price-amount { font-size: 60px; }
  .be-hero { padding: 72px 20px 60px; }

  .be-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .be-features-grid { grid-template-columns: 1fr; }
  .be-compat-grid { grid-template-columns: repeat(2, 1fr); }
  .be-feature-layout { grid-template-columns: 1fr; gap: 40px; }
  .be-hero-cards { gap: 12px; }
  .be-hero-card { min-width: 140px; }
  .be-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .be-section { padding: 60px 20px; }
  .be-price-reassure { gap: 16px; flex-direction: column; align-items: center; }
  .be-stats-cards { grid-template-columns: 1fr 1fr; }
  .be-cta-section { padding: 72px 20px; }
}
