/* =========================================================
   irontvpro — main.css  2026
   Design moderne inspiré du référentiel
   ========================================================= */


/* ---------- Variables ---------- */
:root {
  --bg:           #eef2fb;
  --text:         #111827;
  --muted:        #4b5563;
  --primary:      #3b82f6;
  --primary-dark: #2563eb;
  --secondary:    #7c3aed;
  --accent:       #f43f5e;
  --green:        #22c55e;
  --light:        #f0f4fb;
  --white:        #ffffff;
  --dark:         #0f172a;
  --border:       #e5e7eb;
  --radius:       1rem;
  --radius-sm:    0.5rem;
  --radius-lg:    1.5rem;
  --radius-xl:    2rem;
  --shadow:       0 4px 20px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
.h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.025em;
  color: var(--text);
}
.h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.sub {
  color: var(--muted);
  margin: 0.4rem 0 2.5rem;
  font-size: 1.05rem;
}

/* ---------- Layout ---------- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section    { padding: 5rem 0; }
.section.alt{ background: var(--light); }
.grid-3     { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border), 0 2px 12px rgba(0,0,0,0.04);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 800; font-size: 1.05rem;
  color: var(--dark);
  flex-shrink: 0;
}
.logo { width: 40px; height: 40px; object-fit: contain; }
.brand span { color: var(--primary-dark); }

.menu { display: flex; gap: 1.2rem; align-items: center; }
.menu a {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  font-size: 0.92rem;
}
.menu a:hover { color: var(--text); }

.btn--nav {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 2rem !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.btn--nav:hover { background: var(--primary) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 0.3rem;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.hamburger span { width: 23px; height: 2px; background: var(--text); border-radius: 2px; display: block; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(145deg, #edf3ff 0%, #f0f5fb 40%, #f5f8ff 100%);
  text-align: center;
  padding: 7rem 1rem 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -5%,
    rgba(59,130,246,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
}

/* Badge */
.badge-top {
  display: inline-block;
  background: #fff0f3;
  color: var(--accent);
  padding: 0.38rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(244,63,94,0.18);
  width: fit-content;
  margin-left: auto; margin-right: auto;
}
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.clients {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: var(--primary);
  font-weight: 600;
}
.seo-intro {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* CTA */
.cta { display: flex; gap: 0.9rem; justify-content: center; align-items: center; flex-wrap: wrap; }

/* Hero Floating Decorations */
.hero__deco {
  position: absolute; z-index: 1;
  border-radius: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero__deco--play {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #ff6b8a, #ff9a7b);
  left: 6%; top: 28%;
  box-shadow: 0 10px 28px rgba(255,107,138,0.38);
  font-size: 1.4rem; color: white;
}
.hero__deco--tv {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  right: 5%; top: 22%;
  border-radius: 1.6rem;
  box-shadow: 0 10px 32px rgba(124,58,237,0.32);
  font-size: 1.9rem; color: white;
}
.hero__deco--sport {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  border-radius: 50%;
  left: 9%; bottom: 18%;
  font-size: 0.62rem; font-weight: 800; color: white;
  box-shadow: 0 6px 20px rgba(249,115,22,0.38);
  letter-spacing: 0.02em;
  text-align: center;
}
.hero__deco--dot1 {
  width: 18px; height: 18px;
  background: rgba(124,58,237,0.45);
  border-radius: 50%;
  right: 13%; top: 14%;
}
.hero__deco--dot2 {
  width: 26px; height: 26px;
  background: rgba(59,130,246,0.45);
  border-radius: 50%;
  right: 3.5%; top: 58%;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  line-height: 1.4;
}
.btn--primary {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.btn--primary:hover {
  background: #1e40af;
  box-shadow: 0 6px 22px rgba(59,130,246,0.45);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.btn--dark:hover { background: #1e293b; }
.btn--whatsapp {
  background: #25d366;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  white-space: nowrap;
}
.btn--whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 1.5rem 2.5rem;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--text);
  white-space: nowrap;
}
.trust-item svg {
  width: 18px; height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid var(--border);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card--dark {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.card--dark h3 { color: var(--white); }
.card--dark p  { color: rgba(255,255,255,0.68); }
.card--dark .icon { background: rgba(255,255,255,0.1); }
.card .icon {
  width: 54px; height: 54px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--primary);
}
.card .icon svg { flex-shrink: 0; }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.card p  { font-size: 0.88rem; color: var(--muted); }

/* =========================================================
   FEATURES / WHY
   ========================================================= */
#features .container,
#why .container { text-align: center; }

/* =========================================================
   STEPS
   ========================================================= */
#how { text-align: center; }
.steps { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin: 2.5rem 0; }
.step { flex: 1; min-width: 200px; text-align: center; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  margin-bottom: 0.9rem;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(59,130,246,0.32);
}

/* =========================================================
   DEVICES SECTION
   ========================================================= */
#appareils { text-align: center; }
.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.device-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.device-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.device-icon {
  width: 72px; height: 72px;
  margin: 0 auto 0.9rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.device-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius); }
.device-card span {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  display: block;
}

/* =========================================================
   CHANNELS SLIDERS (double piste)
   ========================================================= */
.channels-wrapper {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.channels-section {
  background: var(--white);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}
.channels-section--fr {
  border-bottom: 1px solid var(--border);
}
.channels-section--intl {
  background: var(--light);
}
.channels-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.55rem;
}
.channels-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
}
.channels-track--ltr {
  animation: marqueeX 50s linear infinite;
}
.channels-track--rtl {
  animation: marqueeX-rtl 50s linear infinite;
}
.channels-section:hover .channels-track { animation-play-state: paused; }
.channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  background: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text);
  white-space: nowrap;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.channel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeX-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* =========================================================
   TABS / TARIFS
   ========================================================= */
#tarifs { text-align: center; }
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  gap: 0.35rem;
  flex-wrap: wrap;
  background: var(--light);
  padding: 0.35rem;
  border-radius: 2rem;
  width: fit-content;
  margin-left: auto; margin-right: auto;
  border: 1px solid var(--border);
}
.tab-btn {
  background: transparent;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.22s;
}
.tab-btn.active {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.tarif-note {
  text-align: center;
  margin-top: 2.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.tarif-note a { color: var(--primary); font-weight: 600; text-decoration: underline; }

.pricing {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  text-align: left;
}
.p-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}
.p-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.p-card--recommended {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.p-card--recommended .p-name     { color: rgba(255,255,255,0.55); }
.p-card--recommended .p-price    { color: var(--white); }
.p-card--recommended .p-feats li { color: rgba(255,255,255,0.72); border-bottom-color: rgba(255,255,255,0.1); }
.p-card--recommended .p-feats li::before { color: var(--primary); }

.p-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  display: block;
}
.p-price {
  font-size: 2.3rem;
  font-weight: 900;
  margin: 0.4rem 0;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.p-feats {
  list-style: none;
  margin: 1.3rem 0 0.5rem;
  padding: 0;
}
.p-feats li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.p-feats li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.p-card .btn {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 1.4rem;
}
.badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================================
   STATS
   ========================================================= */
#stats { text-align: center; }
.stat { text-align: center; padding: 1.5rem; }
.stat h3 { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.3rem; }
.stat p  { color: var(--muted); font-size: 0.95rem; }

/* =========================================================
   COMPARATIF
   ========================================================= */
#comparatif { text-align: center; }
.comparatif {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border-radius: 0;
  overflow: visible;
  box-shadow: var(--shadow);
}
.comparatif th, .comparatif td {
  border: 1px solid var(--border);
  padding: 1rem 1.3rem;
  text-align: center;
  font-size: 0.92rem;
}
.comparatif th { background: var(--dark); color: var(--white); font-weight: 600; }
.comparatif tr:nth-child(even) td { background: var(--light); }
.comparatif td:first-child { text-align: left; font-weight: 500; }

/* =========================================================
   AVIS / TESTIMONIALS MARQUEE
   ========================================================= */
#avis { text-align: center; overflow: hidden; }
#avis .container { margin-bottom: 0; }

.testi-marquee-wrapper {
  overflow: hidden;
  padding: 2rem 0 1rem;
  cursor: grab;
  user-select: none;
}
.testi-marquee-wrapper:active { cursor: grabbing; }

.testis {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  align-items: stretch;
  will-change: transform;
}

.testi {
  flex: 0 0 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: left;
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.05em;
}
.testi blockquote {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 1.3rem;
  flex: 1;
}
.testi figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem;
  flex-shrink: 0;
}
.testi-avatar[data-color="rose"]   { background: #f43f5e; }
.testi-avatar[data-color="indigo"] { background: #6366f1; }
.testi-avatar[data-color="green"]  { background: #22c55e; }
.testi-avatar[data-color="orange"] { background: #f97316; }
.testi-avatar[data-color="purple"] { background: #7c3aed; }
.testi-name { font-weight: 700; font-size: 0.88rem; }
.testi-verified {
  font-size: 0.74rem;
  color: var(--green);
  display: flex; align-items: center; gap: 0.25rem;
  margin-top: 0.15rem;
}

/* =========================================================
   VOD / MOVIES SLIDER
   ========================================================= */
#vod { overflow: hidden; }
#vod .container > .h2 { text-align: left; }
.vod-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.vod-wrapper::-webkit-scrollbar { display: none; }
.vod-wrapper { scrollbar-width: none; }
.vod-track {
  display: flex;
  gap: 1rem;
}
.movie-card {
  flex: 0 0 175px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
}
.movie-card:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }
.movie-card img {
  width: 175px;
  height: 262px;
  object-fit: cover;
  display: block;
}
.movie-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  color: var(--white);
  padding: 1.5rem 0.8rem 0.8rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vod-controls {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1rem;
}
.vod-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
  color: var(--text);
}
.vod-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* =========================================================
   GARANTIES
   ========================================================= */
#garanties { text-align: center; }
#garanties .card h3 { margin-bottom: 0.5rem; color: var(--primary); }

/* =========================================================
   REVENDEUR TEASER
   ========================================================= */
#revendeur-teaser { text-align: center; }
#revendeur-teaser p { margin: 1rem 0 2rem; color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
#faq { text-align: center; }
#faq .container { text-align: left; }
#faq .h2 { text-align: center; }

.faq {
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.faq:first-of-type { border-top: 1px solid var(--border); margin-top: 1.5rem; }
.faq summary {
  font-weight: 600;
  cursor: pointer;
  padding: 1.3rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.28s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq[open] > summary::after { transform: rotate(45deg); }
.faq p {
  padding: 0 0 1.3rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* =========================================================
   WHATSAPP CTA BOX
   ========================================================= */
.wa-cta-box { background: var(--light); padding: 2.5rem 0; }
.wa-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.wa-icon { width: 54px; height: 54px; color: #25d366; flex-shrink: 0; }
.wa-cta-text { flex: 1; min-width: 180px; }
.wa-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.2rem; }
.wa-sub   { font-size: 0.88rem; color: var(--muted); }

/* =========================================================
   CONTACT
   ========================================================= */
#contact { text-align: center; }
.contact-list { list-style: none; margin-top: 1.5rem; }
.contact-list li { margin-bottom: 1rem; font-size: 1rem; }
.contact-list a { color: var(--primary); font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 2.5rem 0;
  text-align: center;
}
.foot { display: flex; flex-direction: column; gap: 1.1rem; align-items: center; }
.footer p { font-size: 0.88rem; color: var(--muted); }
.footer nav { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer nav a { color: var(--muted); font-size: 0.85rem; transition: color 0.2s; }
.footer nav a:hover { color: var(--primary); }

/* =========================================================
   WHATSAPP FLOATING
   ========================================================= */
.whatsapp-float {
  position: fixed; bottom: 88px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 1000;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.whatsapp-float svg { display: block; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }

/* =========================================================
   STICKY BAR
   ========================================================= */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--white);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  border-top: 1px solid var(--border);
}
.sticky-bar > a:first-child {
  font-weight: 600; font-size: 0.9rem; color: var(--text);
}

/* =========================================================
   SHIMMER GRADIENT TEXT
   ========================================================= */
.shimmer {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: hidden;
}
.shimmer::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer-move 3s infinite;
  pointer-events: none;
}
@keyframes shimmer-move {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}



/* =========================================================
   RESPONSIVE — Tablet (≤1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   RESPONSIVE — Mobile (≤768px)
   ========================================================= */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    background: var(--white);
    position: absolute;
    top: 68px; right: 1rem;
    width: 230px;
    padding: 1.2rem;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    z-index: 999;
  }
  .menu.show { display: flex; }
  .menu .btn--nav { width: 100%; text-align: center; }
  .hamburger { display: flex; }

  .hero { padding: 5rem 1rem 4rem; }
  .hero__deco--play { left: 2%; }
  .hero__deco--tv   { right: 1%; width: 60px; height: 60px; font-size: 1.4rem; }

  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 0.75rem 1.5rem;
    padding: 0.3rem 0;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .devices-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .wa-cta-inner { flex-direction: column; text-align: center; padding: 1.5rem; }
  .wa-cta-inner .btn { width: 100%; }

  .pricing { grid-template-columns: 1fr; }

  .footer nav { flex-wrap: wrap; gap: 0.8rem; }
  .sticky-bar { padding: 0.8rem 1rem; }
  .sticky-bar > a:first-child { font-size: 0.82rem; }
}

/* =========================================================
   RESPONSIVE — Small Mobile (≤480px)
   ========================================================= */
@media (max-width: 480px) {
  html, body { font-size: 15px; overflow-x: hidden; }

  .hero { padding: 4rem 1rem 3rem; }
  .cta { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .hero__deco { display: none; }

  .grid-3    { grid-template-columns: 1fr; gap: 1rem; }
  .card      { padding: 1.3rem; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .device-card  { padding: 1.3rem 0.8rem; }

  .steps { flex-direction: column; gap: 1.2rem; }

  .comparatif th, .comparatif td { padding: 0.6rem; font-size: 0.82rem; }

  .testi { flex: 0 0 280px; }

  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 0.65rem 1.5rem;
    padding: 0.2rem 0;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .sticky-bar { flex-direction: column; gap: 0.5rem; padding: 1rem; text-align: center; }
  .sticky-bar > a:first-child { width: 100%; }

  .whatsapp-float { bottom: 80px; right: 14px; }
  .promo-popup    { width: 260px; bottom: 70px; right: 10px; }
  .footer nav     { flex-direction: column; gap: 0.4rem; }

  .movie-card     { flex: 0 0 140px; }
  .movie-card img { width: 140px; height: 210px; }
}

/* =========================================================
   RESPONSIVE — Medium Mobile (481–768px)
   ========================================================= */
@media (min-width: 481px) and (max-width: 768px) {
  .hero { padding: 5rem 1.5rem 4rem; }
  .pricing  { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-popup  { width: 270px; }
}

/* Tarifs scroll snap sur mobile */
@media (max-width: 480px) {
  .tab-content.active {
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    max-height: 88vh;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-card {
    width: 95%; max-width: 380px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin: 0 auto;
  }
  #tarifs .container { padding-left: 0; padding-right: 0; overflow-x: hidden; }
}

/* =========================================================
   PERFORMANCE — Mobile (disable GPU-heavy effects)
   ========================================================= */
@media (max-width: 768px) {
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* =========================================================
   PERFORMANCE — content-visibility for off-screen sections
   ========================================================= */
#faq, #contact, .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

/* =========================================================
   PERFORMANCE — Respect reduced motion preference
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .shimmer::before,
  .channels-track--ltr,
  .channels-track--rtl,
  .testis,
  .whatsapp-float::after {
    animation: none !important;
  }
  * { transition-duration: 0.01ms !important; }
}
