/* ============================================
   FOXX IPTV — Styles custom v1.0
   Préfixe : .fx- sur toutes les classes custom
   ============================================ */

/* --- Variables -------------------------------- */
:root {
  --fx-orange:   #FF6B1A;
  --fx-red:      #D62828;
  --fx-navy:     #1A1A2E;
  --fx-dark-bg:  #0F0F1A;
  --fx-white:    #FFFFFF;
  --fx-cream:    #FFF7F0;
  --fx-body-txt: #3D3D3D;
  --fx-border:   #F0E0D0;
  --fx-wa:       #25D366;
  --fx-gradient: linear-gradient(90deg, #D62828 0%, #FF6B1A 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fx-body-txt);
  background: #fff;
}

h1, h2, h3, h4 { color: var(--fx-navy); line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 700; }
h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 700; }
h3 { font-size: clamp(19px, 3vw, 24px); font-weight: 600; }

a { color: var(--fx-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* --- Barre défilante ------------------------- */
.fx-marquee-bar {
  background: var(--fx-gradient);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.fx-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: fx-scroll 30s linear infinite;
}

.fx-marquee-track:hover { animation-play-state: paused; }

.fx-marquee-item {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  padding-right: 80px;
}

@keyframes fx-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Top bar --------------------------------- */
.fx-topbar {
  background: var(--fx-navy);
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 4px 16px;
}

/* --- Navbar ---------------------------------- */
.fx-navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}

.fx-navbar.fx-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  border-color: var(--fx-border);
}

.fx-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.fx-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}

.fx-logo-img {
  height: 78px;
  width: auto;
}

/* Nav links */
.fx-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.fx-nav-links a {
  color: var(--fx-navy);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
  text-decoration: none !important;
}

.fx-nav-links a:hover,
.fx-nav-links a.fx-active {
  background: var(--fx-cream);
  color: var(--fx-orange);
}

/* Buttons */
.fx-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fx-wa);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
  flex-shrink: 0;
}

.fx-btn-wa:hover {
  background: #1bb858;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

.fx-btn-wa-lg {
  font-size: 17px;
  padding: 15px 32px;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.fx-btn-wa-xl {
  font-size: 19px;
  padding: 18px 44px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}

.fx-btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-size: 17px;
  padding: 16px 24px;
  border-radius: 50px;
}

.fx-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.7);
  text-decoration: none !important;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}

.fx-btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* Burger */
.fx-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
  width: 40px;
  height: 40px;
}

.fx-burger:hover { background: var(--fx-cream); }

.fx-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fx-navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

.fx-burger.fx-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fx-burger.fx-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.fx-burger.fx-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay + menu */
.fx-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity .3s;
}

.fx-mobile-overlay.fx-visible { display: block; }
.fx-mobile-overlay.fx-open { opacity: 1; }

.fx-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 85vw);
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -4px 0 40px rgba(0,0,0,.15);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.fx-mobile-menu.fx-open { right: 0; }

.fx-mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.fx-mobile-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--fx-navy);
  padding: 4px 8px;
  border-radius: 8px;
}

.fx-mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fx-mobile-nav a {
  display: block;
  color: var(--fx-navy);
  font-size: 18px;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: 12px;
  transition: background .2s;
  text-decoration: none !important;
}

.fx-mobile-nav a:hover {
  background: var(--fx-cream);
  color: var(--fx-orange);
}

.fx-mobile-wa {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* --- Hero ------------------------------------ */
.fx-hero {
  background: var(--fx-gradient);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.fx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.fx-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.fx-hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(80,10,10,.4);
  margin-bottom: 20px;
}

.fx-hero-sub {
  color: rgba(255,255,255,.92);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 36px;
  text-shadow: 0 1px 4px rgba(80,10,10,.3);
}

.fx-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero price card */
.fx-hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 40px 32px;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  box-shadow: 0 20px 60px rgba(80,10,10,.3);
}

.fx-hero-badge {
  display: inline-block;
  background: #fff;
  color: var(--fx-red);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: .8px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.fx-hero-card-label {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.fx-hero-price {
  color: #fff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.fx-hero-price-info {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin-bottom: 24px;
}

.fx-hero-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.fx-hero-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.93);
  font-size: 14px;
  font-weight: 500;
}

.fx-feat-check {
  width: 20px;
  height: 20px;
  background: rgba(255,107,26,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B1A;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

.fx-hero-disclaimer {
  text-align: center;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-top: 11px;
}

/* --- Stats band ------------------------------ */
.fx-stats-band {
  background: #fff;
  padding: 40px 24px;
  border-bottom: 1px solid var(--fx-border);
}

.fx-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.fx-stat-icon { font-size: 30px; margin-bottom: 8px; display: block; }
.fx-stat-value { font-size: 28px; font-weight: 800; color: var(--fx-navy); display: block; line-height: 1; margin-bottom: 4px; }
.fx-stat-label { font-size: 14px; color: #6b7280; font-weight: 500; }

/* --- Sections -------------------------------- */
.fx-section { padding: 80px 24px; }
.fx-bg-white { background: #fff; }
.fx-bg-cream { background: var(--fx-cream); }
.fx-bg-dark  { background: var(--fx-navy); }

.fx-section-inner { max-width: 1200px; margin: 0 auto; }

.fx-section-head {
  text-align: center;
  margin-bottom: 52px;
}

.fx-section-head h2 { margin-bottom: 12px; }

.fx-section-head.fx-dark-head h2 { color: #fff; }

.fx-section-sub {
  font-size: 18px;
  color: #6b7280;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.fx-section-sub.fx-dark-sub { color: rgba(255,255,255,.7); }

/* --- Feature grid ---------------------------- */
.fx-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fx-feat-card {
  background: #fff;
  border: 1px solid var(--fx-border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(214,40,40,.05);
  transition: box-shadow .2s, transform .2s;
}

.fx-feat-card:hover {
  box-shadow: 0 8px 24px rgba(214,40,40,.1);
  transform: translateY(-2px);
}

.fx-feat-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,107,26,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.fx-feat-card h3 { font-size: 18px; margin-bottom: 8px; }
.fx-feat-card p  { font-size: 15px; color: #6b7280; margin: 0; line-height: 1.5; }

/* --- Tarif ----------------------------------- */
.fx-pricing-wrap {
  max-width: 480px;
  margin: 0 auto 48px;
}

.fx-pricing-card {
  background: #fff;
  border: 2px solid var(--fx-orange);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(255,107,26,.15);
}

.fx-pricing-badge {
  display: inline-block;
  background: var(--fx-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.fx-pricing-title {
  font-size: 20px;
  color: var(--fx-navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.fx-pricing-price {
  font-size: 80px;
  font-weight: 800;
  color: var(--fx-orange);
  line-height: 1;
  margin-bottom: 4px;
}

.fx-pricing-period {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 28px;
}

.fx-pricing-feats {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.fx-pricing-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fx-body-txt);
  font-weight: 500;
}

.fx-check-circle {
  width: 22px;
  height: 22px;
  background: rgba(255,107,26,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fx-orange);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Reassurance row */
.fx-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.fx-reassurance-item {
  background: var(--fx-cream);
  border-radius: 12px;
  padding: 20px 12px;
}

.fx-reassurance-icon { font-size: 26px; display: block; margin-bottom: 8px; }
.fx-reassurance-title { font-size: 13px; font-weight: 700; color: var(--fx-navy); display: block; margin-bottom: 4px; }
.fx-reassurance-text { font-size: 12px; color: #6b7280; }

/* --- Channels -------------------------------- */
.fx-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fx-channel-card {
  background: #fff;
  border: 1px solid var(--fx-border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(214,40,40,.04);
  transition: box-shadow .2s, transform .2s;
}

.fx-channel-card:hover {
  box-shadow: 0 6px 20px rgba(214,40,40,.08);
  transform: translateY(-2px);
}

.fx-channel-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.fx-channel-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.fx-channel-card p  { font-size: 13px; color: #6b7280; margin: 0; line-height: 1.5; }

/* --- Devices --------------------------------- */
.fx-devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fx-device-card {
  background: var(--fx-cream);
  border: 1px solid var(--fx-border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}

.fx-device-card:hover {
  box-shadow: 0 6px 20px rgba(214,40,40,.08);
  transform: translateY(-2px);
}

.fx-device-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.fx-device-card h3 { font-size: 15px; font-weight: 600; color: var(--fx-navy); margin: 0; }

/* --- Steps ----------------------------------- */
.fx-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.fx-steps-connector {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--fx-red), var(--fx-orange));
  pointer-events: none;
}

.fx-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.fx-step-num {
  width: 72px;
  height: 72px;
  background: var(--fx-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(214,40,40,.3);
}

.fx-step h3 { font-size: 17px; margin-bottom: 8px; }
.fx-step p  { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.5; }

.fx-steps-cta { text-align: center; margin-top: 48px; }

/* --- Guarantees ------------------------------ */
.fx-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fx-guarantee-item { text-align: center; padding: 28px 16px; }
.fx-guarantee-icon { font-size: 44px; display: block; margin-bottom: 14px; }
.fx-guarantee-item h3 { font-size: 17px; margin-bottom: 8px; }
.fx-guarantee-item p  { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.5; }

/* --- Dark stats ------------------------------ */
.fx-dark-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.fx-dark-stat-value { font-size: 48px; font-weight: 800; color: #fff; display: block; line-height: 1; margin-bottom: 8px; }
.fx-dark-stat-label { font-size: 16px; color: rgba(255,255,255,.7); font-weight: 500; line-height: 1.4; }

/* --- FAQ ------------------------------------- */
.fx-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fx-faq-item {
  background: #fff;
  border: 1px solid var(--fx-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(214,40,40,.04);
}

.fx-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--fx-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background .2s;
  font-family: inherit;
}

.fx-faq-q:hover { background: var(--fx-cream); }

.fx-faq-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,26,.1);
  border-radius: 50%;
  transition: transform .3s;
  color: var(--fx-orange);
  font-size: 11px;
}

.fx-faq-item.fx-open .fx-faq-chevron { transform: rotate(180deg); }

.fx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.fx-faq-item.fx-open .fx-faq-a { max-height: 400px; }

.fx-faq-a-inner {
  padding: 0 22px 18px;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* --- CTA final ------------------------------- */
.fx-cta-section {
  background: var(--fx-gradient);
  padding: 80px 24px;
  text-align: center;
}

.fx-cta-section h2 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(80,10,10,.4);
  margin-bottom: 14px;
}

.fx-cta-sub {
  color: rgba(255,255,255,.9);
  font-size: 20px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* --- Footer ---------------------------------- */
.fx-footer {
  background: var(--fx-dark-bg);
  color: #9ca3af;
  padding: 64px 24px 32px;
}

.fx-footer-inner { max-width: 1200px; margin: 0 auto; }

.fx-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.fx-footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }

.fx-footer-logo { margin-bottom: 14px; }
.fx-footer-logo-img { height: 140px; width: auto; }

.fx-footer-desc { font-size: 14px; line-height: 1.7; }

.fx-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fx-footer-links a { color: #9ca3af; font-size: 14px; display: block; transition: color .2s; text-decoration: none !important; }
.fx-footer-links a:hover { color: var(--fx-orange); }

.fx-footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  color: var(--fx-wa) !important;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background .2s;
  margin-bottom: 12px;
}

.fx-footer-wa-link:hover { background: rgba(37,211,102,.18); }

.fx-footer-hours { font-size: 13px; color: #6b7280; line-height: 1.7; }

.fx-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

/* --- Hero court (pages internes) ------------- */
.fx-hero-short {
  background: var(--fx-gradient);
  padding: 52px 24px;
  text-align: center;
}

.fx-hero-short h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(80,10,10,.4);
  margin-bottom: 12px;
}

.fx-hero-short p {
  color: rgba(255,255,255,.9);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Content cards (pages internes) ---------- */
.fx-content-grid {
  max-width: 900px;
  margin: 0 auto;
}

.fx-content-card {
  background: #fff;
  border: 1px solid var(--fx-border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(214,40,40,.04);
}

.fx-content-card h2 { font-size: 22px; margin-bottom: 14px; }
.fx-content-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--fx-orange); }
.fx-content-card p  { font-size: 15px; color: #6b7280; line-height: 1.7; margin-bottom: 12px; }
.fx-content-card p:last-child { margin-bottom: 0; }

.fx-alert-info {
  background: rgba(255,107,26,.06);
  border: 1px solid rgba(255,107,26,.2);
  border-left: 4px solid var(--fx-orange);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--fx-body-txt);
  margin: 14px 0;
  line-height: 1.6;
}

/* Étapes numérotées */
.fx-num-steps { display: flex; flex-direction: column; gap: 20px; margin: 20px 0; }

.fx-num-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.fx-num-step-n {
  width: 40px;
  height: 40px;
  background: var(--fx-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.fx-num-step-body h3 { font-size: 17px; margin-bottom: 5px; color: var(--fx-navy); }
.fx-num-step-body p  { font-size: 15px; color: #6b7280; margin: 0; line-height: 1.6; }

/* Problèmes/solutions */
.fx-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fx-problem-card {
  background: #fff;
  border: 1px solid var(--fx-border);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 2px 6px rgba(214,40,40,.04);
}

.fx-problem-card h3 {
  font-size: 17px;
  color: var(--fx-navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fx-problem-card p { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.7; }

/* Contact WA block */
.fx-wa-block {
  background: var(--fx-cream);
  border: 2px solid rgba(37,211,102,.25);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.fx-wa-block-icon { font-size: 72px; display: block; margin-bottom: 14px; }
.fx-wa-block-num  { font-size: 28px; font-weight: 800; color: var(--fx-navy); margin-bottom: 8px; }
.fx-wa-block p    { font-size: 16px; color: #6b7280; margin-bottom: 26px; line-height: 1.6; }

/* --- Utilitaires ----------------------------- */
.fx-center { text-align: center; }
.fx-mt-12  { margin-top: 12px; }
.fx-mt-24  { margin-top: 24px; }
.fx-mt-32  { margin-top: 32px; }
.fx-mt-48  { margin-top: 48px; }
.fx-mb-12  { margin-bottom: 12px; }
.fx-mb-24  { margin-bottom: 24px; }
.fx-mb-32  { margin-bottom: 32px; }
.fx-orange { color: var(--fx-orange); }

/* --- Responsive ------------------------------ */
@media (max-width: 768px) {
  .fx-nav-links,
  .fx-nav-cta { display: none; }
  .fx-burger   { display: flex; }

  .fx-hero { padding: 48px 20px; }
  .fx-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .fx-hero-card { max-width: 100%; margin-left: 0; padding: 32px 24px; }
  .fx-hero-price { font-size: 56px; }
  .fx-hero-ctas { flex-direction: column; gap: 12px; }
  .fx-hero-sub  { font-size: 17px; }

  .fx-stats-inner     { grid-template-columns: repeat(2,1fr); }
  .fx-features-grid   { grid-template-columns: 1fr; }
  .fx-channels-grid   { grid-template-columns: repeat(2,1fr); }
  .fx-devices-grid    { grid-template-columns: repeat(2,1fr); }
  .fx-guarantees-grid { grid-template-columns: repeat(2,1fr); }
  .fx-dark-stats-grid { grid-template-columns: repeat(2,1fr); }
  .fx-reassurance-grid{ grid-template-columns: repeat(2,1fr); }
  .fx-problem-grid    { grid-template-columns: 1fr; }
  .fx-footer-grid     { grid-template-columns: 1fr; gap: 28px; }

  .fx-steps-grid  { grid-template-columns: 1fr; gap: 20px; }
  .fx-steps-connector { display: none; }

  .fx-dark-stat-value { font-size: 36px; }
  .fx-pricing-price   { font-size: 64px; }

  .fx-section { padding: 52px 20px; }

  .fx-wa-block { padding: 40px 24px; }
  .fx-wa-block-num { font-size: 22px; }
  .fx-topbar { font-size: 11px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .fx-pricing-price { font-size: 56px; }
}
