/* ═══════════════════════════════════════════════════════
   L'IPTV — Design System
   Couleurs: fond sombre #0d0d0d, accent or #f0a500
═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:          #0d0d0d;
  --bg-2:        #141414;
  --bg-3:        #1a1a1a;
  --bg-4:        #222;
  --border:      #2a2a2a;
  --accent:      #f0a500;
  --accent-dark: #c8880a;
  --accent-glow: rgba(240,165,0,.18);
  --text:        #f0f0f0;
  --text-muted:  #888;
  --text-dim:    #666;
  --success:     #22c55e;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.5);
  --transition:  .25s cubic-bezier(.4,0,.2,1);
  --font-body:   'Inter', system-ui, sans-serif;
  --font-heading:'Poppins', 'Inter', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-xl  { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-lg  { padding: .875rem 2rem; font-size: 1rem; }
.btn-full, .btn-block { width: 100%; justify-content: center; }

/* ── Text helpers ── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ════════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════════ */
.announcement-bar {
  background: var(--accent);
  color: #000;
  text-align: center;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.5); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.site-logo { text-decoration: none; display: flex; align-items: center; }
.site-logo img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 8px;
}
/* fallback text logo (si image non chargée) */
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}
.logo-accent { color: var(--accent); }

/* Nav */
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-list li a {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-list li a:hover,
.nav-list li.active a {
  color: var(--text);
  background: var(--bg-3);
}

/* Header CTA */
.header-cta { display: flex; gap: .75rem; align-items: center; margin-left: 1rem; }

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.mobile-nav ul li a {
  display: block;
  color: var(--text-muted);
  font-weight: 500;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav ul li a:hover { color: var(--text); background: var(--bg-3); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero-section {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.hero-bg-effect {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(240,165,0,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent-glow);
  border: 1px solid rgba(240,165,0,.3);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  padding: .375rem .875rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text); }

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}
.hero-features-list span {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  color: var(--text-muted);
}
.hero-features-list span svg { color: var(--success); flex-shrink: 0; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong { font-size: 1.25rem; font-weight: 700; color: var(--accent); }
.hero-trust-item span  { font-size: .8rem; color: var(--text-muted); }
.hero-trust-sep { width: 1px; height: 32px; background: var(--border); }

/* ── Hero Diaporama ── */
.hero-visual { display: flex; justify-content: center; align-items: stretch; }

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 460px;
  overflow: hidden;
  border-radius: 18px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.slider-cols { display: flex; gap: 10px; height: 100%; padding: 0 2px; }
.s-col { display: flex; flex-direction: column; gap: 10px; flex: 1; will-change: transform; }
.s-col-1 { animation: s-up 22s linear infinite; }
.s-col-2 { animation: s-dn 28s linear infinite; }
.s-col-3 { animation: s-up 25s linear infinite; }
.s-col:hover { animation-play-state: paused; }

@keyframes s-up  { from { transform: translateY(0); }    to { transform: translateY(-50%); } }
@keyframes s-dn  { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.s-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  height: 145px;
  background: linear-gradient(145deg, var(--c1), var(--c2));
  border: 1px solid rgba(255,255,255,.08);
  cursor: default;
  transition: transform .25s, box-shadow .25s;
}
.s-card:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(0,0,0,.5); z-index: 2; }
.s-card-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -62%);
  font-size: 3rem;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.6));
  line-height: 1;
}
.s-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, transparent 100%);
  padding: .65rem .7rem .5rem;
}
.s-card-cat {
  display: block;
  font-size: .59rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--accent);
  margin-bottom: .15rem;
}
.s-card-name {
  display: block;
  font-size: .77rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s-card-badge {
  position: absolute;
  top: .5rem; right: .5rem;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px;
  padding: .12rem .38rem;
  font-size: .58rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}

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

/* ════════════════════════════════════════════
   COMPAT
════════════════════════════════════════════ */
.compat-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.compat-label {
  text-align: center;
  font-size: .85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}
.compat-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.compat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.device-icon { font-size: 1.75rem; }
.compat-item span { font-size: .8rem; color: var(--text-muted); }

/* ════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════ */
.features-section { padding: 6rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(240,165,0,.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════════════════
   CHANNELS SECTION
════════════════════════════════════════════ */
.channels-section { padding: 6rem 0; background: var(--bg-2); }

.channels-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.channel-tab {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .625rem 1.25rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.channel-tab:hover  { border-color: var(--accent); color: var(--accent); }
.channel-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}

.channels-panel { display: none; }
.channels-panel.active { display: block; }

.channels-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-bottom: 2rem;
}
.channel-badge {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .4rem .875rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.channel-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.channels-cta { text-align: center; margin-top: 1rem; }

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing-preview-section,
.full-pricing-section { padding: 6rem 0; }

.pricing-tabs-wrapper { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.pricing-tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.pricing-tab {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .625rem 1.25rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.pricing-tab:hover  { border-color: var(--accent); color: var(--accent); }
.pricing-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}
.tab-badge {
  position: absolute;
  top: -8px;
  right: -4px;
  background: var(--success);
  color: #000;
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pricing-card--popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  box-shadow: 0 0 40px var(--accent-glow);
}
.pricing-popular-badge {
  background: var(--accent);
  color: #000;
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  padding: .375rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin: -1.75rem -1.75rem 1.5rem;
}
.pricing-duration {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.pricing-price { margin-bottom: .5rem; }
.price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.price-per-month {
  font-size: .8rem;
  color: var(--text-dim);
  margin-top: .25rem;
  display: block;
}
.pricing-saving {
  background: rgba(34,197,94,.15);
  color: var(--success);
  font-size: .78rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 1.25rem;
}
.pricing-features {
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.pricing-features li {
  font-size: .85rem;
  color: var(--text-muted);
}
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .875rem;
  color: var(--text-dim);
}

/* Guarantee */
.pricing-guarantee { margin-top: 4rem; }
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.guarantee-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.guarantee-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.guarantee-item strong { display: block; font-size: .95rem; margin-bottom: .5rem; }
.guarantee-item p { font-size: .85rem; color: var(--text-muted); }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials-section { padding: 6rem 0; background: var(--bg-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(240,165,0,.2);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border: 1px solid rgba(240,165,0,.3);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span  { font-size: .8rem; color: var(--text-dim); }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-quick-section,
.faq-full-section { padding: 6rem 0; }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-wrapper .faq-list { max-width: 100%; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
}
.faq-answer p { color: var(--text-muted); line-height: 1.7; font-size: .95rem; }
.faq-item.open .faq-answer { display: block; }

.faq-cta { text-align: center; margin-top: 2.5rem; }

.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.faq-contact-cta {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}
.faq-contact-cta h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: .75rem; }
.faq-contact-cta p  { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════ */
.final-cta-section { padding: 5rem 0; }
.final-cta-box {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid rgba(240,165,0,.25);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(240,165,0,.1) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: .875rem;
}
.final-cta-box p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.final-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.final-cta-guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: .85rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer-cta-band {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-cta-text h2 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: .5rem; }
.footer-cta-text p  { color: var(--text-muted); }
.footer-cta-actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }

.footer-main { padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .875rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .75rem;
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links li a,
.footer-links li span {
  font-size: .875rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links li a:hover { color: var(--accent); }

.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-link {
  width: 36px; height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover { background: var(--accent-glow); border-color: var(--accent); color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-inner p { font-size: .85rem; color: var(--text-dim); }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-links a { font-size: .8rem; color: var(--text-dim); transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--text-muted); }

/* ════════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.page-hero-sub { font-size: 1.05rem; color: var(--text-muted); }

/* ════════════════════════════════════════════
   CHANNELS (full page)
════════════════════════════════════════════ */
.channels-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.stat-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.stat-box strong { display: block; font-family: var(--font-heading); font-size: 1.75rem; color: var(--accent); margin-bottom: .25rem; }
.stat-box span   { font-size: .85rem; color: var(--text-muted); }

.channel-category-block { margin-bottom: 3rem; }
.channel-category-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.channels-more-notice {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.channels-more-notice p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ════════════════════════════════════════════
   COMPARISON TABLE
════════════════════════════════════════════ */
.comparison-section { padding: 5rem 0; background: var(--bg-2); }
.comparison-table-wrapper { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.comparison-table th,
.comparison-table td {
  padding: .875rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table th:first-child,
.comparison-table td:first-child { text-align: left; }
.comparison-table thead th { background: var(--bg-3); font-weight: 600; color: var(--text-muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.comparison-table .highlight-col { background: rgba(240,165,0,.05); }
.comparison-table thead .highlight-col { background: rgba(240,165,0,.15); color: var(--accent); }
.badge-best { background: var(--accent); color: #000; font-size: .65rem; padding: 2px 6px; border-radius: 4px; margin-left: .4rem; }
.comparison-table .check   { color: var(--success); }
.comparison-table .partial { color: #f59e0b; }
.comparison-table .cross   { color: #ef4444; }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact-section { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-form-col h2,
.contact-info-col h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .875rem; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--transition);
  width: 100%;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--bg-2); }
.form-notice { font-size: .8rem; color: var(--text-dim); text-align: center; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.contact-method-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-method div { display: flex; flex-direction: column; gap: .25rem; }
.contact-method strong { font-size: .95rem; }
.contact-method a { font-size: .9rem; color: var(--accent); }
.contact-method span { font-size: .8rem; color: var(--text-dim); }

.contact-hours {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.contact-hours h3 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 1rem; }
.contact-hours ul { display: flex; flex-direction: column; gap: .5rem; }
.contact-hours ul li { display: flex; justify-content: space-between; font-size: .875rem; color: var(--text-muted); }
.contact-hours ul li strong { color: var(--text); }

.contact-trial-cta {
  background: var(--accent-glow);
  border: 1px solid rgba(240,165,0,.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.contact-trial-cta h3 { font-size: 1rem; margin-bottom: .5rem; }
.contact-trial-cta p  { font-size: .875rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ════════════════════════════════════════════
   PRICING SELECTOR (tarifs page)
════════════════════════════════════════════ */
.pricing-selector { text-align: center; margin-bottom: 2.5rem; }
.pricing-selector-label { color: var(--text-muted); margin-bottom: 1rem; font-size: .95rem; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid        { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards        { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: repeat(2, 1fr); }
  .channels-stats       { grid-template-columns: repeat(2, 1fr); }
}

/* Blog section home */
.blog-home-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 900px) { .blog-home-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .blog-home-grid { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
  .main-nav,
  .header-cta           { display: none; }
  .burger-btn           { display: flex; }
  .mobile-nav.open      { display: block; }

  /* Layout grids */
  .hero-inner           { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual          { display: none; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .features-grid        { grid-template-columns: 1fr; }
  .pricing-cards        { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .channels-stats       { grid-template-columns: repeat(2, 1fr); }
  .contact-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cta-inner     { flex-direction: column; text-align: center; }
  .footer-bottom-inner  { flex-direction: column; text-align: center; }
  .hero-trust           { flex-wrap: wrap; gap: 1rem; }
  .final-cta-box        { padding: 2.5rem 1.25rem; }

  /* Section padding reductions */
  .hero-section         { padding: 3.5rem 0 2.5rem; }
  .features-section,
  .channels-section,
  .pricing-preview-section,
  .full-pricing-section,
  .testimonials-section,
  .faq-quick-section,
  .faq-full-section,
  .final-cta-section,
  .comparison-section   { padding: 3.5rem 0; }
  .pricing-guarantee    { margin-top: 2.5rem; }

  /* Announcement bar */
  .announcement-bar     { font-size: .78rem; padding: .4rem .75rem; line-height: 1.5; }

  /* Tabs: horizontal scroll on mobile */
  .channels-tabs,
  .pricing-tabs         {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: .4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .channels-tabs::-webkit-scrollbar,
  .pricing-tabs::-webkit-scrollbar { display: none; }
  .channel-tab,
  .pricing-tab          { white-space: nowrap; flex-shrink: 0; }

  /* Form inputs — prevent iOS zoom (requires ≥16px) */
  .form-group input,
  .form-group select,
  .form-group textarea  { font-size: 1rem; }

  /* FAQ CTA */
  .faq-contact-cta      { padding: 2rem 1.25rem; }

  /* Float buttons */
  .float-btns           { bottom: 1rem; right: 1rem; gap: .6rem; }

  /* Footer band */
  .footer-cta-band      { padding: 2.5rem 0; }
  .footer-cta-actions   { width: 100%; }
  .footer-main          { padding: 3rem 0 1.5rem; }
}

@media (max-width: 560px) {
  /* Pricing: 1 column on small phones */
  .pricing-cards        { grid-template-columns: 1fr; }
  .guarantee-grid       { grid-template-columns: 1fr; }

  /* Hero trust: 2-col grid */
  .hero-trust           { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-trust-sep       { display: none; }

  /* Contact section */
  .contact-grid         { gap: 2rem; }
}

@media (max-width: 480px) {
  .channels-stats       { grid-template-columns: 1fr; }
  .hero-actions         { flex-direction: column; }
  .btn-xl               { width: 100%; justify-content: center; }

  /* Section padding */
  .features-section,
  .channels-section,
  .pricing-preview-section,
  .full-pricing-section,
  .testimonials-section,
  .faq-quick-section,
  .faq-full-section,
  .final-cta-section    { padding: 3rem 0; }

  /* Smaller float buttons */
  .float-btn            { width: 48px; height: 48px; }
  .float-btn svg        { width: 22px; height: 22px; }

  /* Header height */
  .header-inner         { height: 60px; }
  .site-logo img        { height: 42px; }
}

/* ════════════════════════════════════════════
   BOUTONS FLOTTANTS WHATSAPP / TELEGRAM
════════════════════════════════════════════ */
.float-btns {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  z-index: 999;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
}
.float-btn--wa  { background: #25d366; }
.float-btn--tg  { background: #2ca5e0; }
.float-btn svg  { fill: #fff; }
.float-btn .tooltip {
  position: absolute;
  right: 64px;
  background: var(--bg-3);
  color: var(--text);
  font-size: .8rem;
  font-weight: 500;
  padding: .35rem .75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: 1px solid var(--border);
}
.float-btn:hover .tooltip { opacity: 1; }
