/* =========================================================
   IPTV Smarters Pro — main.css
   Design moderne 2026
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f6fa;
  --text: #111827;
  --muted: #6b7280;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #7c3aed;
  --accent: #f59e0b;
  --green: #16a34a;
  --white: #ffffff;
  --dark: #0f172a;
  --dark-card: #111827;
  --border: #e5e7eb;
  --radius: .875rem;
  --radius-sm: .5rem;
  --shadow: 0 4px 24px rgba(0,0,0,.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --transition: .25s ease;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
.h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin: .4rem 0 2.5rem;
}

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

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 0;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: 1rem; color: var(--text);
  flex-shrink: 0;
}
.logo { width: 36px; height: 36px; object-fit: contain; }
.brand span { display: none; }
@media (min-width: 900px) { .brand span { display: inline; } }

.menu {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex: 1;
  justify-content: center;
}
.menu a {
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.menu a:hover { background: var(--bg-alt); color: var(--primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--dark);
  color: var(--white) !important;
  padding: .55rem 1.25rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { opacity: .85; transform: translateY(-1px); }

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #eef2ff 0%, #f9fafb 50%, #fdf4ff 100%);
  padding: 7rem 0 5rem;
  text-align: center;
}
.hero__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__float {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .45;
}
.hero__float--1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #c7d2fe, transparent);
  top: -80px; left: -80px;
}
.hero__float--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #ddd6fe, transparent);
  bottom: -60px; right: -60px;
}
.hero__float--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #fde68a, transparent);
  top: 30%; right: 10%;
}
/* Floating badges */
.hero__badge-float {
  position: absolute;
  border-radius: var(--radius);
  padding: .65rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow-md);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero__badge-float--sport {
  background: #ef4444;
  color: #fff;
  bottom: 22%;
  left: 4%;
  animation-delay: 0s;
}
.hero__badge-float--play {
  background: #fff;
  color: var(--dark);
  top: 18%;
  left: 5%;
  animation-delay: .8s;
}
.hero__badge-float--tv {
  background: #7c3aed;
  color: #fff;
  top: 15%;
  right: 5%;
  animation-delay: 1.6s;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.badge-top {
  display: inline-block;
  background: #fee2e2;
  color: #dc2626;
  padding: .35rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 1rem;
}
.clients {
  font-size: .95rem;
  margin-bottom: 2rem;
  color: var(--primary);
  font-weight: 600;
}
.seo-intro {
  font-size: .9rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .8rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn--ghost:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.trust-bar__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.trust-bar__item svg {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card--dark {
  background: var(--dark-card);
  color: var(--white);
  border-color: transparent;
}
.card--dark .icon-box { background: rgba(255,255,255,.1); }
.card--dark p { color: rgba(255,255,255,.65); }
.card--dark h3 { color: var(--white); }
.icon-box {
  width: 52px; height: 52px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.icon-box svg {
  width: 26px; height: 26px;
  color: var(--primary);
}
.card--dark .icon-box svg { color: #fff; }
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Devices Grid ---------- */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.device-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.device-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.device-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.device-icon--img {
  background: transparent;
}
.device-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.device-card span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

/* ---------- Channels Ticker ---------- */
.channels-section {
  padding: 4rem 0 2rem;
  overflow: hidden;
}
.channels-section .container { margin-bottom: 2.5rem; }
.channels-ticker-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.channels-ticker {
  display: flex;
  width: max-content;
  animation: tickerLeft 40s linear infinite;
}
.channels-ticker--reverse { animation: tickerRight 38s linear infinite; }
.channels-ticker:hover, .channels-ticker--reverse:hover {
  animation-play-state: paused;
}
.channels-track {
  display: flex;
  gap: .75rem;
  padding: 0 .375rem;
}
.channel-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  color: var(--text);
}
.channel-chip .ch-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.channel-chip.ch-sport .ch-dot { background: #ef4444; }
.channel-chip.ch-int .ch-dot { background: #f59e0b; }
@keyframes tickerLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes tickerRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ---------- Steps ---------- */
.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0 2.5rem;
}
.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  margin-bottom: .75rem;
  font-weight: 800;
  font-size: 1.1rem;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.step p { font-size: .9rem; color: var(--muted); }

/* ---------- Tarifs ---------- */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  gap: .5rem;
  flex-wrap: wrap;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: .35rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  background: transparent;
  border: none;
  padding: .55rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  color: var(--muted);
  transition: all var(--transition);
}
.tab-btn.active {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.pricing {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}
.p-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.p-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.p-card--recommended {
  background: var(--dark-card);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.p-card--recommended .btn--ghost {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
.p-card--recommended .btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.p-card--highlight {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(37,99,235,.08), var(--shadow);
}
.p-card--recommended .p-name { color: rgba(255,255,255,.6); }
.p-card--recommended .p-price { color: var(--white); }
.p-card--recommended .p-feats { color: rgba(255,255,255,.75); }
.p-card--recommended .p-feats li::before { color: #60a5fa; }
.p-name {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.p-duration {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.p-price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: .75rem 0;
  line-height: 1;
}
.p-price-sub {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.p-card--recommended .p-price-sub { color: rgba(255,255,255,.5); }
.p-feats {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
}
.p-feats li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: .55rem;
}
.p-feats li::before {
  content: "";
  display: inline-block;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.p-card--recommended .p-feats li { color: rgba(255,255,255,.8); }
.p-card--recommended .p-feats li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  padding: .28rem .75rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pricing-note {
  text-align: center;
  margin-top: 2rem;
}
.pricing-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: .95rem;
}
.pricing-note a:hover { color: var(--primary-dark); }

/* ---------- Stats ---------- */
#stats {
  background: linear-gradient(135deg, #eef2ff 0%, #f0f4ff 100%);
  padding: 4rem 0;
}
.stat { text-align: center; }
.stat h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .4rem;
}
.stat p { color: var(--muted); font-size: .95rem; }

/* ---------- Movies Slider ---------- */
.vod-section { overflow: hidden; }
.vod-section .container { margin-bottom: 0; }
.vod-section > .container { padding-bottom: 2rem; }
.movies-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0 1.5rem;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.movies-slider {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: moviesScroll 35s linear infinite;
}
.movies-slider:hover { animation-play-state: paused; }
.movie-card {
  width: 180px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform var(--transition);
}
.movie-card:hover { transform: scale(1.04); }
.movie-poster {
  width: 180px;
  height: 270px;
  position: relative;
  overflow: hidden;
  background: #111;
}
.movie-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.movie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem .85rem .85rem;
  z-index: 1;
}
.movie-quality {
  position: absolute;
  top: .6rem;
  right: .6rem;
  background: #10b981;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: .2rem .45rem;
  border-radius: .25rem;
  letter-spacing: .06em;
  z-index: 2;
}
.movie-title {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.2;
}
.movie-genre {
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  margin-top: .2rem;
}
@keyframes moviesScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Comparatif ---------- */
.comparatif {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparatif th, .comparatif td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparatif th {
  background: var(--dark-card);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.comparatif th:first-child { text-align: left; }
.comparatif td:first-child { text-align: left; font-weight: 500; }
.comparatif tr:last-child td { border-bottom: none; }
.comparatif tr:nth-child(even) td { background: var(--bg-alt); }

/* ---------- Avis / Testimonials ---------- */
.testis-header {
  text-align: center;
  margin-bottom: .5rem;
}
.testis-scroll-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.testis-scroll {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: .5rem 0 1rem;
  animation: testimonialScroll 45s linear infinite;
}
.testis-scroll:hover { animation-play-state: paused; }
@keyframes testimonialScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.stars { font-size: 1rem; color: #f59e0b; letter-spacing: .05em; }
.testi blockquote {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.testi figcaption {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 38px; height: 38px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
  flex-shrink: 0;
}
.testi-info { display: flex; flex-direction: column; }
.testi-info strong { font-size: .9rem; font-weight: 700; }
.testi-verified {
  font-size: .75rem;
  color: #16a34a;
  font-weight: 600;
}

/* ---------- Garanties ---------- */
#garanties .card h3 { color: var(--primary); margin-bottom: .5rem; }

/* ---------- Revendeur teaser ---------- */
#revendeur-teaser { text-align: center; }
#revendeur-teaser p { margin: 1rem 0; color: var(--muted); max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2rem; }
.faq {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq:hover { box-shadow: var(--shadow); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: .97rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}
.faq[open] summary::after {
  content: "−";
}
.faq p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- WhatsApp CTA Section ---------- */
.whatsapp-cta-section {
  background: var(--bg-alt);
  padding: 3.5rem 0;
}
.whatsapp-cta-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.whatsapp-cta-icon {
  width: 68px; height: 68px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-cta-icon svg { width: 36px; height: 36px; color: #16a34a; }
.whatsapp-cta-text { flex: 1; min-width: 200px; }
.whatsapp-cta-text h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .3rem; }
.whatsapp-cta-text p { font-size: .9rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.5rem;
  align-items: center;
}
.contact-list li { font-size: .97rem; }
.contact-list a { color: var(--primary); font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-alt);
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}
.foot { display: flex; flex-direction: column; gap: 1.25rem; align-items: center; }
.foot p { font-size: .88rem; color: var(--muted); }
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  justify-content: center;
}
.footer nav a {
  font-size: .84rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer nav a:hover { color: var(--primary); }

/* ---------- WhatsApp Floating ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #25d366;
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 1000;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ---------- Sticky Bar ---------- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: .75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.sticky-bar a { font-weight: 600; font-size: .9rem; color: var(--text); }

/* ---------- Shimmer ---------- */
.shimmer {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hamburger Mobile ---------- */
@media (max-width: 860px) {
  .menu {
    display: none;
    flex-direction: column;
    gap: .25rem;
    background: var(--white);
    padding: 1rem .75rem;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 999;
    border-bottom: 1px solid var(--border);
  }
  .menu.show { display: flex; }
  .menu a { padding: .6rem .75rem; border-radius: var(--radius-sm); font-size: .95rem; }
  .hamburger { display: flex; }
  .nav-cta { font-size: .82rem; padding: .5rem 1rem; }
  .header { position: sticky; }
}

/* ---------- Responsive Mobile ---------- */
@media (max-width: 600px) {
  .hero { padding: 6.5rem 0 4rem; }
  .hero__badge-float {
    padding: .3rem .6rem;
    font-size: .65rem;
    border-radius: .45rem;
    gap: .28rem;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
  }
  .hero__badge-float--play  { top: 1rem; left: 1rem; bottom: auto; }
  .hero__badge-float--tv    { top: 1rem; right: 1rem; bottom: auto; }
  .hero__badge-float--sport { top: 3rem; left: 1rem; bottom: auto; }
  .h1 { font-size: 1.85rem; }
  .cta { flex-direction: column; align-items: center; }
  .cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .trust-bar__items { gap: 1rem 2rem; }
  .trust-bar__item span { font-size: .82rem; }
  .features-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .device-card { padding: 1.25rem .75rem; }
  .device-icon { width: 42px; height: 42px; font-size: 1.3rem; }
  .device-card span { font-size: .78rem; }
  .steps { flex-direction: column; }
  .pricing { grid-template-columns: 1fr; }
  .p-card { padding: 1.75rem 1.5rem; }
  .comparatif th, .comparatif td { padding: .7rem .5rem; font-size: .82rem; }
  .testi { width: 260px; padding: 1.35rem; }
  .whatsapp-cta-box { flex-direction: column; text-align: center; }
  .whatsapp-cta-text { text-align: center; }
  .sticky-bar { flex-direction: column; gap: .5rem; padding: .8rem 1rem; }
  .sticky-bar a { text-align: center; }
  .footer nav { gap: .4rem .75rem; }
  .promo-popup { width: 260px; right: 10px; bottom: 80px; }
}

@media (min-width: 601px) and (max-width: 860px) {
  .devices-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .pricing { grid-template-columns: repeat(2, 1fr); }
}
