/* ================================================================
   SUISSE-TV.CH — Design System v1.0
   Netflix-Inspired Dark Mode | 2026
   ================================================================ */

:root {
  --bg-primary:    #141414;
  --bg-secondary:  #000000;
  --bg-card:       #1f1f1f;
  --bg-hover:      #2a2a2a;
  --accent:        #e50914;
  --accent-hover:  #f40612;
  --accent-green:  #468254;
  --whatsapp:      #25D366;
  --text-1:        #ffffff;
  --text-2:        #b3b3b3;
  --text-3:        #757575;
  --border:        rgba(255,255,255,0.08);
  --font:          "Inter", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow:        0 8px 32px rgba(0,0,0,0.6);
  --transition:    all 0.25s ease;
  --max-w:         1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg-primary); color: var(--text-1); font-family: var(--font); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); color: inherit; }

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p  { color: var(--text-2); }

/* ---- LAYOUT ---- */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-alt { background: var(--bg-secondary); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* ---- BADGE ---- */
.badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(229,9,20,0.12);
  border: 1px solid rgba(229,9,20,0.35);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700;
  transition: var(--transition); white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(229,9,20,0.45); }
.btn-secondary { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.18); }
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }

/* ================================================================
   HEADER
   ================================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(to bottom, rgba(0,0,0,0.92) 0%, transparent 100%);
  transition: var(--transition);
  padding: 22px 0;
}
#header.scrolled {
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.7);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.nav-logo { font-size: 1.55rem; font-weight: 900; letter-spacing: -1px; flex-shrink: 0; }
.nav-logo .red { color: var(--accent); }
.nav-logo .white { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-links a {
  padding: 8px 11px; border-radius: 6px;
  font-size: 0.875rem; color: var(--text-2);
  transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-wa {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: var(--whatsapp); color: #fff;
  border-radius: var(--radius); font-size: 0.8rem; font-weight: 700;
  transition: var(--transition);
}
.nav-wa:hover { background: #1da851; }
.nav-cta { padding: 9px 20px !important; font-size: 0.875rem !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav { display: none; background: #000; border-top: 1px solid var(--border); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 24px; color: var(--text-2); border-bottom: 1px solid var(--border); font-size: 0.95rem; transition: var(--transition); }
.mobile-nav a:hover, .mobile-nav a.active { color: #fff; background: rgba(255,255,255,0.03); }
.mobile-nav-btns { padding: 16px 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-btns .btn { justify-content: center; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(229,9,20,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(70,130,84,0.07) 0%, transparent 45%),
    linear-gradient(160deg, #000 0%, #0d0d0d 60%, #050505 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-content h1 { margin-bottom: 24px; }
.hero-content .red { color: var(--accent); }
.hero-content p { font-size: 1.2rem; margin-bottom: 42px; max-width: 580px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.stat { border-left: 3px solid var(--accent); padding-left: 16px; }
.stat strong { display: block; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.stat span   { font-size: 0.8rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; display: block; }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 6px; color: var(--text-3); font-size: 0.7rem; letter-spacing: 1px;
  text-transform: uppercase; animation: floatY 2s ease-in-out infinite;
}
@keyframes floatY { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-around; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.875rem; color: var(--text-2); }
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-item strong { color: #fff; }

/* ================================================================
   FEATURES GRID
   ================================================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(229,9,20,0.4); transform: translateY(-5px); box-shadow: var(--shadow); }
.feat-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: rgba(229,9,20,0.1); display: flex; align-items: center;
  justify-content: center; color: var(--accent); margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }

.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(155deg, rgba(229,9,20,0.07) 0%, var(--bg-card) 60%);
  transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-5px); }

.pop-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 4px 22px;
  border-radius: 20px; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.price-label { font-size: 0.8rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.price-amount { line-height: 1; margin-bottom: 6px; }
.price-amount .curr { font-size: 1.2rem; font-weight: 700; color: var(--text-2); vertical-align: top; margin-top: 10px; display: inline-block; }
.price-amount .num  { font-size: 3.2rem; font-weight: 900; color: #fff; }
.price-promo { font-size: 0.85rem; color: var(--accent-green); margin-bottom: 28px; min-height: 22px; }

.price-features { margin-bottom: 30px; }
.price-features li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; color: var(--text-2); }
.price-features li:last-child { border-bottom: none; }
.price-features li svg { color: var(--accent-green); flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: var(--transition);
}
.review-card:hover { border-color: rgba(229,9,20,0.25); transform: translateY(-3px); }
.stars { color: #f5c518; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { margin-bottom: 20px; font-style: italic; line-height: 1.75; font-size: 0.95rem; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.reviewer-name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.reviewer-loc  { font-size: 0.78rem; color: var(--text-3); }

/* ================================================================
   CHANNELS SCROLL
   ================================================================ */
.channels-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 4px 0 16px; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.ch-chip {
  flex-shrink: 0; padding: 9px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 24px; font-size: 0.85rem; color: var(--text-2);
  transition: var(--transition); white-space: nowrap;
}
.ch-chip:hover { border-color: var(--accent); color: #fff; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: #fff; gap: 16px; transition: var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; transition: var(--transition); line-height: 1;
}
.faq-q.open .faq-icon { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--text-2); line-height: 1.8; }
.faq-a.open { display: block; }
.faq-a a { color: var(--accent); text-decoration: underline; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, rgba(229,9,20,0.12) 0%, transparent 50%, rgba(70,130,84,0.05) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(229,9,20,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p  { margin-bottom: 40px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-logo { font-size: 1.5rem; font-weight: 900; display: block; margin-bottom: 14px; }
.footer-logo .red { color: var(--accent); }
.footer-brand p { font-size: 0.9rem; margin-bottom: 22px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts a { display: flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 0.875rem; transition: var(--transition); }
.footer-contacts a:hover { color: #fff; }

.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-3); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-2); font-size: 0.875rem; transition: var(--transition); }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-3); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.82rem; color: var(--text-3); transition: var(--transition); }
.footer-legal a:hover { color: #fff; }

.footer-disc { border-top: 1px solid var(--border); padding: 14px 0; text-align: center; }
.footer-disc p { font-size: 0.72rem; color: var(--text-3); max-width: 900px; margin: 0 auto; }

/* ================================================================
   INNER PAGES
   ================================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #000 0%, var(--bg-primary) 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; max-width: 620px; margin: 0 auto; }

/* Devices */
.devices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.device-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 16px; text-align: center; transition: var(--transition);
}
.device-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.dev-icon { font-size: 2.6rem; margin-bottom: 12px; }
.device-card h3 { font-size: 0.95rem; color: #fff; margin-bottom: 6px; }
.device-card p { font-size: 0.82rem; }

/* Apps */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.app-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--transition);
}
.app-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.app-icon { font-size: 3rem; margin-bottom: 16px; }
.app-card h3 { margin-bottom: 8px; }
.app-card p { font-size: 0.875rem; margin-bottom: 20px; }
.app-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.app-tag { padding: 3px 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 4px; font-size: 0.72rem; color: var(--text-3); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-img { height: 190px; background: linear-gradient(135deg, #1a0305, #141414); display: flex; align-items: center; justify-content: center; font-size: 2.8rem; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 12px; margin-bottom: 10px; }
.blog-meta span { font-size: 0.78rem; color: var(--text-3); }
.blog-body h3 { margin-bottom: 8px; font-size: 1.05rem; transition: var(--transition); }
.blog-card:hover h3 { color: var(--accent); }
.blog-body p { font-size: 0.875rem; margin-bottom: 14px; }
.read-more { font-size: 0.82rem; color: var(--accent); font-weight: 700; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 7px; font-size: 0.875rem; color: var(--text-2); }
.form-ctrl {
  width: 100%; padding: 13px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); color: #fff; font-size: 0.925rem;
  font-family: var(--font); outline: none; transition: var(--transition);
}
.form-ctrl:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(229,9,20,0.12); }
textarea.form-ctrl { resize: vertical; min-height: 130px; }
.ci-list { display: flex; flex-direction: column; gap: 16px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; padding: 22px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.ci-icon { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon.r { background: rgba(229,9,20,0.12); color: var(--accent); }
.ci-icon.g { background: rgba(37,211,102,0.12); color: var(--whatsapp); }
.ci-text h4 { color: #fff; margin-bottom: 4px; font-size: 0.9rem; }
.ci-text p, .ci-text a { font-size: 0.875rem; color: var(--text-2); transition: var(--transition); }
.ci-text a:hover { color: #fff; }

/* Legal */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 150px 24px 80px; }
.legal-wrap h1 { margin-bottom: 8px; }
.legal-updated { color: var(--text-3); font-size: 0.875rem; margin-bottom: 48px; }
.legal-wrap h2 { margin: 40px 0 14px; font-size: 1.25rem; color: var(--accent); }
.legal-wrap p { margin-bottom: 16px; line-height: 1.85; color: var(--text-2); }
.legal-wrap ul { padding-left: 20px; margin-bottom: 16px; }
.legal-wrap ul li { list-style: disc; color: var(--text-2); padding: 4px 0; line-height: 1.75; }

/* Channels page */
.channels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.channel-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 12px; text-align: center;
  font-size: 0.875rem; color: var(--text-2); transition: var(--transition);
}
.channel-item:hover { border-color: var(--accent); color: #fff; }
.cat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.cat-header h3 { font-size: 1.2rem; }
.cat-count { padding: 3px 10px; background: rgba(229,9,20,0.12); border: 1px solid rgba(229,9,20,0.3); border-radius: 12px; font-size: 0.72rem; color: var(--accent); font-weight: 700; }

/* Comparison table */
.comp-table { overflow-x: auto; }
.comp-table table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.comp-table th { background: var(--bg-card); color: var(--text-3); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; }
.comp-table td { color: var(--text-2); }
.comp-table tr:hover td { background: rgba(255,255,255,0.02); }
.check { color: var(--accent-green); font-weight: 800; }
.cross { color: var(--text-3); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-wa { display: none; }
  .hamburger { display: flex; }
  .pricing-card.popular { transform: scale(1); }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band { padding: 60px 24px; }
  .page-hero { padding: 120px 0 60px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   HOMEPAGE EXTENDED COMPONENTS
   ================================================================ */

/* ---- HERO ENHANCED ---- */
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-live { display: flex; align-items: center; gap: 6px; padding: 4px 12px; background: rgba(229,9,20,0.15); border: 1px solid rgba(229,9,20,0.4); border-radius: 20px; font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.hero-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

/* ---- CONTENT RAIL (Netflix style — Infinite Scroll) ---- */
@keyframes scroll-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-ltr {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.content-rail { position: relative; margin-bottom: 48px; }
.rail-title { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.rail-title a { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-left: auto; }

/* Infinite scroll wrapper — masks edges with fade */
.auto-scroll-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  padding: 4px 0 14px;
}
/* The track: all items inline, double-set for seamless loop */
.auto-scroll-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}
.auto-scroll-track.rtl { animation: scroll-rtl 55s linear infinite; }
.auto-scroll-track.ltr { animation: scroll-ltr 50s linear infinite; }
.auto-scroll-track:hover { animation-play-state: paused; }

/* Content card (show/movie) */
.content-card {
  flex-shrink: 0; width: 160px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  overflow: hidden; cursor: pointer; transition: var(--transition);
  position: relative;
}
.content-card:hover { transform: scale(1.06); border-color: rgba(229,9,20,0.4); z-index: 2; box-shadow: 0 12px 40px rgba(0,0,0,0.8); }
.content-card-poster {
  height: 220px; display: flex; align-items: center; justify-content: center;
  background: #111; position: relative; overflow: hidden;
}
.content-card-poster img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.content-card:hover .content-card-poster img { transform: scale(1.08); }
.content-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); opacity: 0; transition: var(--transition); }
.content-card:hover .content-card-overlay { opacity: 1; }
.content-card-info { padding: 10px 12px; }
.content-card-title { font-size: 0.8rem; font-weight: 700; color: #fff; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.content-card-meta { font-size: 0.7rem; color: var(--text-3); }
.content-card-quality { position: absolute; top: 8px; right: 8px; padding: 2px 6px; background: rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.2); border-radius: 3px; font-size: 0.65rem; font-weight: 800; color: #fff; }

/* ---- SPORTS / CHANNELS LOGO RAIL ---- */
.league-card {
  flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 16px; text-align: center;
  width: 150px; transition: var(--transition); cursor: pointer;
}
.league-card:hover { border-color: var(--accent); transform: translateY(-4px) scale(1.04); box-shadow: var(--shadow); }
.league-name { font-size: 0.78rem; font-weight: 700; color: #fff; line-height: 1.3; }
.league-country { font-size: 0.68rem; color: var(--text-3); margin-top: 3px; }
.league-badge { display: inline-block; margin-top: 6px; padding: 2px 7px; background: rgba(229,9,20,0.12); border: 1px solid rgba(229,9,20,0.3); border-radius: 10px; font-size: 0.65rem; color: var(--accent); font-weight: 700; }
img.league-logo {
  width: 72px; height: 56px;
  object-fit: contain; display: block;
  margin: 0 auto 10px;
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transition: filter 0.3s ease;
}
.league-card:hover img.league-logo { filter: brightness(1.2) drop-shadow(0 4px 12px rgba(229,9,20,0.3)); }

/* ---- READING CONTENT (Long-form articles) ---- */
.reading-section { padding: 88px 0; }
.reading-inner { max-width: 900px; margin: 0 auto; }
.reading-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; line-height: 1.25; }
.reading-inner h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin: 36px 0 14px; color: #fff; }
.reading-inner h4 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--text-2); font-weight: 700; }
.reading-inner p { color: var(--text-2); line-height: 1.85; margin-bottom: 18px; font-size: 1.02rem; }
.reading-inner ul, .reading-inner ol { padding-left: 22px; margin-bottom: 18px; }
.reading-inner ul li { list-style: disc; color: var(--text-2); padding: 4px 0; line-height: 1.75; font-size: 1rem; }
.reading-inner ol li { list-style: decimal; color: var(--text-2); padding: 4px 0; line-height: 1.75; font-size: 1rem; }
.reading-inner a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.reading-inner strong { color: #fff; font-weight: 700; }

.info-box {
  background: rgba(229,9,20,0.06); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 28px 0;
}
.info-box p { color: var(--text-2); margin: 0; font-size: 0.95rem; }
.info-box strong { color: #fff; }

.success-box {
  background: rgba(70,130,84,0.08); border-left: 3px solid var(--accent-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 28px 0;
}
.success-box p { color: var(--text-2); margin: 0; font-size: 0.95rem; }

/* Comparison table within reading */
.vs-table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.vs-table th { padding: 14px 18px; text-align: left; background: var(--bg-card); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); border-bottom: 2px solid var(--border); }
.vs-table th.highlight { color: var(--accent); }
.vs-table td { padding: 12px 18px; font-size: 0.92rem; color: var(--text-2); border-bottom: 1px solid var(--border); }
.vs-table td.highlight { color: var(--accent-green); font-weight: 700; }
.vs-table tr:hover td { background: rgba(255,255,255,0.02); }
.vs-table .yes { color: var(--accent-green); font-weight: 800; }
.vs-table .no  { color: var(--text-3); }
.vs-table .partial { color: #f5c518; }

/* ---- LARGE REVIEW GRID ---- */
.reviews-grid-lg { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.rating-summary { display: flex; align-items: center; gap: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.rating-big { font-size: 5rem; font-weight: 900; color: #fff; line-height: 1; }
.rating-stars { font-size: 1.5rem; color: #f5c518; letter-spacing: 4px; margin-bottom: 4px; }
.rating-count { font-size: 0.875rem; color: var(--text-3); }
.rating-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 6px; }
.rbar { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; }
.rbar-label { width: 40px; color: var(--text-3); text-align: right; flex-shrink: 0; }
.rbar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.rbar-fill { height: 100%; background: #f5c518; border-radius: 3px; }
.rbar-count { width: 30px; color: var(--text-3); }

/* ---- STATS IMPACT BAND ---- */
.stats-band { background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 0; }
.stats-band-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2px; }
.stat-item { padding: 28px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--accent); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label  { font-size: 0.85rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; }

/* ---- HOW IT WORKS ---- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--accent), var(--border), transparent); }
.step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; font-weight: 900; color: var(--accent); }
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.875rem; }

/* ---- CHANNELS CATEGORY TABS ---- */
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-tab { padding: 7px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; font-size: 0.82rem; color: var(--text-3); cursor: pointer; transition: var(--transition); }
.cat-tab.active, .cat-tab:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---- IMAGE SEO — Content cards & League logos ---- */
.content-card-poster { background: #111; }
/* ---- BREADCRUMB NAV ---- */
.breadcrumb-nav { margin-bottom: 24px; }
.breadcrumb-nav ol { display: flex; gap: 8px; align-items: center; list-style: none; flex-wrap: wrap; }
.breadcrumb-nav li { font-size: 0.82rem; color: var(--text-3); }
.breadcrumb-nav a { color: var(--text-3); transition: color 0.2s; }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav [aria-current="page"] { color: var(--text-2); }

/* ---- CHANNELS HERO (chaines.php) ---- */
.channels-hero {
  padding: 140px 0 72px;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border);
}
.channels-hero-content { max-width: 800px; }
.channels-hero h1 { margin: 16px 0 20px; }
.channels-hero .hero-lead { font-size: 1.1rem; max-width: 640px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-ghost { padding: 14px 28px; border: 1px solid var(--border); border-radius: 8px; font-weight: 700; font-size: 0.95rem; transition: var(--transition); color: var(--text-2); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

/* ---- RAIL LABEL ---- */
.rail-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-3); font-weight: 700; margin-bottom: 12px; }

/* ---- CATEGORY OVERVIEW GRID ---- */
.cat-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.cat-overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  display: block;
  text-decoration: none;
}
.cat-overview-card:hover { border-color: rgba(229,9,20,0.4); transform: translateY(-3px); background: var(--bg-hover); }
.cat-overview-card--accent { border-color: rgba(229,9,20,0.25); background: rgba(229,9,20,0.04); }
.cat-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.cat-overview-card h3 { font-size: 1rem; margin-bottom: 8px; color: #fff; }
.cat-overview-card p { font-size: 0.83rem; color: var(--text-3); line-height: 1.6; margin-bottom: 14px; }
.cat-count { font-size: 0.75rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }

/* ---- CHANNEL GRID CARDS ---- */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin: 20px 0 32px;
}
.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  transition: var(--transition);
}
.channel-card:hover { border-color: rgba(229,9,20,0.35); background: var(--bg-hover); }
.ch-name { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-2); margin-bottom: 6px; }
.ch-qual { display: inline-block; font-size: 0.65rem; font-weight: 800; padding: 2px 7px; border-radius: 4px; background: rgba(70,130,84,0.15); border: 1px solid rgba(70,130,84,0.3); color: var(--accent-green); letter-spacing: 0.5px; }

/* ---- QUALITY GRID ---- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.quality-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quality-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.quality-card.qk::before  { background: linear-gradient(90deg, #e50914, #ff6b35); }
.quality-card.quhd::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.quality-card.qfhd::before { background: linear-gradient(90deg, #468254, #6ab47d); }
.quality-card.qhd::before  { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.quality-badge-label { font-size: 1.7rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 10px; display: block; }
.qk  .quality-badge-label { color: #e50914; }
.quhd .quality-badge-label { color: #a855f7; }
.qfhd .quality-badge-label { color: #468254; }
.qhd .quality-badge-label  { color: #60a5fa; }
.quality-card p { font-size: 0.82rem; color: var(--text-3); margin: 0; line-height: 1.65; }
.quality-card strong { color: var(--text-2); }

/* ---- FAQ ACCORDION ---- */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item.open { border-color: rgba(229,9,20,0.3); }
.faq-question {
  width: 100%; padding: 20px 24px; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 1rem; font-weight: 700; color: #fff; cursor: pointer; transition: background 0.2s;
  background: none; border: none; font-family: var(--font);
}
.faq-question:hover { background: var(--bg-hover); }
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0; border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  color: var(--accent); font-weight: 900; transition: transform 0.25s, border-color 0.25s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.25s;
  padding: 0 24px; color: var(--text-2); font-size: 0.95rem; line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 4px 24px 22px; }
.faq-answer p { color: var(--text-2); }

/* ---- CTA BAND (chaines.php) ---- */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  background: linear-gradient(135deg, #1a0a0a 0%, #1f1f1f 50%, #0f0a0f 100%);
  border: 1px solid rgba(229,9,20,0.2); border-radius: var(--radius-lg);
  padding: 48px 52px;
}
.cta-band-text { flex: 1; min-width: 280px; }
.cta-band-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 12px; }
.cta-band-text p { font-size: 1rem; }
.cta-band-actions { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }

/* Responsive additions */
@media (max-width: 768px) {
  .reading-section { padding: 60px 0; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .steps::before { display: none; }
  .rating-summary { flex-direction: column; align-items: flex-start; }
  .channels-hero { padding: 110px 0 48px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cat-overview-grid { grid-template-columns: 1fr 1fr; }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .channel-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .cta-band { padding: 32px 24px; flex-direction: column; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions a { width: 100%; justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .cat-overview-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
}

/* ---- DEVICE FEATURED CARDS (appareils.php) ---- */
.device-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.device-featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.device-featured-card:hover { transform: translateY(-4px); border-color: rgba(229,9,20,0.4); }
.device-featured-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.device--champion::before  { background: linear-gradient(90deg, #e50914, #ff4d4d); }
.device--specialist::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.device--value::before     { background: linear-gradient(90deg, #468254, #6ab47d); }
.device--popular::before   { background: linear-gradient(90deg, #d97706, #fbbf24); }
.device-badge-top {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-3);
}
.device-emoji { font-size: 2.4rem; line-height: 1; margin: 4px 0; }
.device-name { font-size: 1.15rem; font-weight: 900; color: #fff; margin: 0; }
.device-brand { font-size: 0.78rem; color: var(--text-3); margin: 0; }
.device-stars { font-size: 1rem; color: #f5c518; letter-spacing: 2px; }
.device-price-tag { display: flex; flex-direction: column; gap: 2px; }
.device-price { font-size: 1.25rem; font-weight: 900; color: var(--accent); }
.price-where { font-size: 0.72rem; color: var(--text-3); }
.device-specs-list { list-style: none; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.spec-item { display: flex; align-items: baseline; gap: 10px; font-size: 0.8rem; }
.spec-key { width: 72px; flex-shrink: 0; color: var(--text-3); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; }
.spec-val { color: var(--text-2); font-size: 0.82rem; }
.compat-badge {
  background: rgba(70,130,84,0.1); border: 1px solid rgba(70,130,84,0.25);
  border-radius: var(--radius); padding: 8px 12px;
  font-size: 0.75rem; font-weight: 700; color: var(--accent-green); text-align: center;
}
.device-cta {
  display: block; text-align: center; padding: 13px 16px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 0.9rem;
  border-radius: var(--radius); transition: background 0.2s;
  text-decoration: none; margin-top: 4px;
}
.device-cta:hover { background: var(--accent-hover); }

/* ---- TECHNICAL REQUIREMENTS GRID (appareils.php) ---- */
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.req-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.req-icon { font-size: 2rem; margin-bottom: 14px; }
.req-card h3 { font-size: 1rem; margin-bottom: 16px; color: #fff; }
.req-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.req-list li { font-size: 0.82rem; color: var(--text-3); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.req-qual { display: inline-block; padding: 3px 9px; border-radius: 4px; font-size: 0.72rem; font-weight: 800; white-space: nowrap; flex-shrink: 0; }
.req--bad  { background: rgba(229,9,20,0.12);  color: #e50914; border: 1px solid rgba(229,9,20,0.2); }
.req--ok   { background: rgba(245,197,24,0.1); color: #f5c518; border: 1px solid rgba(245,197,24,0.2); }
.req--good { background: rgba(70,130,84,0.12); color: var(--accent-green); border: 1px solid rgba(70,130,84,0.2); }
.req--best { background: rgba(96,165,250,0.1); color: #60a5fa; border: 1px solid rgba(96,165,250,0.2); }
.req-note { font-size: 0.78rem; color: var(--text-3); line-height: 1.6; padding-top: 12px; border-top: 1px solid var(--border); }
.req-note strong { color: var(--text-2); }

/* Responsive device cards */
@media (max-width: 768px) {
  .device-featured-grid { grid-template-columns: 1fr 1fr; }
  .req-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .device-featured-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   APPLICATIONS.PHP — APP GUIDE COMPONENTS
   ======================================================== */

/* ---- APP RAIL CARDS (inline emoji style) ---- */
.app-rail-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; min-width: 110px; padding: 16px 14px 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-align: center;
  position: relative; overflow: hidden;
}
.app-rail-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.app-rail-icon { font-size: 1.8rem; line-height: 1; }
.app-rail-label { font-size: 0.7rem; font-weight: 700; color: var(--text-3); line-height: 1.2; max-width: 90px; }

/* Platform logo cards in rails */
.platform-rail-logo {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; min-width: 110px; padding: 16px 14px 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-align: center;
}
.platform-rail-logo img { height: 36px; width: auto; object-fit: contain; filter: brightness(0.9); }
.platform-rail-logo span { font-size: 0.7rem; font-weight: 700; color: var(--text-3); }

/* ---- APP SECTION HEADERS ---- */
.app-section-header {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.app-section-header h2 { margin: 0; font-size: 1.6rem; }
.app-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
.app-badge--best { background: rgba(229,9,20,0.15); color: #e50914; border: 1px solid rgba(229,9,20,0.3); }
.app-badge--pro  { background: rgba(37,99,235,0.12); color: #60a5fa; border: 1px solid rgba(37,99,235,0.25); }
.app-badge--free { background: rgba(70,130,84,0.12); color: var(--accent-green); border: 1px solid rgba(70,130,84,0.25); }
.app-badge--new  { background: rgba(217,119,6,0.12); color: #fbbf24; border: 1px solid rgba(217,119,6,0.25); }

/* ---- APP META ROW (OS badges + price + rating) ---- */
.app-meta-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 18px;
}
.os-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3px;
  border: 1px solid transparent;
}
.os-android { background: rgba(61,220,132,0.1);  color: #3ddc84; border-color: rgba(61,220,132,0.25); }
.os-ios     { background: rgba(255,255,255,0.06); color: #c8c8d4; border-color: rgba(255,255,255,0.12); }
.os-tv      { background: rgba(96,165,250,0.1);   color: #60a5fa; border-color: rgba(96,165,250,0.2); }
.os-fire    { background: rgba(255,149,0,0.1);    color: #ff9500; border-color: rgba(255,149,0,0.2); }
.os-samsung { background: rgba(20,145,255,0.1);   color: #1491ff; border-color: rgba(20,145,255,0.2); }
.os-lg      { background: rgba(163,82,234,0.1);   color: #a352ea; border-color: rgba(163,82,234,0.2); }

/* ---- PRICE BADGE ---- */
.price-badge-app {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 800;
}
.price-badge-app.free { background: rgba(70,130,84,0.12); color: var(--accent-green); border: 1px solid rgba(70,130,84,0.25); }
.price-badge-app.paid { background: rgba(245,197,24,0.1);  color: #f5c518;            border: 1px solid rgba(245,197,24,0.2); }

/* ---- STAR RATING INLINE ---- */
.rating-inline {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem;
}
.rating-inline .stars { color: #f5c518; letter-spacing: 1px; }
.rating-inline .score { font-weight: 800; color: #f5c518; }
.rating-inline .votes { color: var(--text-3); font-size: 0.72rem; }

/* ---- HOW-TO INSTALLATION STEPS ---- */
.howto-steps {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.howto-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 24px; background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.howto-step:last-child { border-bottom: none; }
.step-number {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 900; color: #fff;
  margin-top: 2px;
}
.step-body h4 {
  font-size: 0.95rem; font-weight: 800; color: #fff;
  margin: 0 0 6px;
}
.step-body p {
  font-size: 0.85rem; color: var(--text-3); margin: 0; line-height: 1.65;
}
.step-body code {
  display: inline-block; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  padding: 2px 8px; font-family: 'Courier New', monospace;
  font-size: 0.8rem; color: #60a5fa; margin-top: 6px;
}

/* ---- EPG & CATCH-UP FEATURE CARDS ---- */
.epg-features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}
.epg-feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.epg-icon { font-size: 2rem; line-height: 1; }
.epg-feature-card h4 { font-size: 0.95rem; font-weight: 800; color: #fff; margin: 0; }
.epg-feature-card p  { font-size: 0.82rem; color: var(--text-3); margin: 0; line-height: 1.6; }

/* ---- VPN SECTION ---- */
.vpn-list {
  display: flex; flex-direction: column; gap: 12px;
}
.vpn-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
}
.vpn-item-left { display: flex; align-items: center; gap: 12px; }
.vpn-rank {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(229,9,20,0.1);
  border: 1px solid rgba(229,9,20,0.25); display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 900; color: var(--accent);
}
.vpn-name { font-size: 0.95rem; font-weight: 800; color: #fff; }
.vpn-desc { font-size: 0.78rem; color: var(--text-3); }
.vpn-price {
  font-size: 0.88rem; font-weight: 700; color: var(--accent-green);
  white-space: nowrap; flex-shrink: 0;
}

/* ---- FREE VS PAID COMPARISON BAND ---- */
.fp-compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.fp-col {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.fp-col h3 { font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.fp-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fp-col ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--text-3); line-height: 1.55;
}
.fp-col ul li::before { flex-shrink: 0; margin-top: 2px; }
.fp-col.fp-free ul li::before { content: '✓'; color: var(--accent-green); font-weight: 800; }
.fp-col.fp-paid ul li::before { content: '★'; color: #f5c518; font-weight: 800; }

/* ---- RESPONSIVE (applications.php) ---- */
@media (max-width: 768px) {
  .epg-features-grid    { grid-template-columns: 1fr 1fr; }
  .fp-compare-grid      { grid-template-columns: 1fr; }
  .app-section-header   { flex-wrap: wrap; }
  .howto-step           { padding: 16px 18px; gap: 14px; }
}
@media (max-width: 480px) {
  .epg-features-grid    { grid-template-columns: 1fr; }
  .app-rail-card        { min-width: 90px; }
  .step-number          { width: 30px; height: 30px; font-size: 0.8rem; }
}

/* ========================================================
   ABONNEMENTS.PHP — PRICING PAGE
   ======================================================== */

/* ---- PRICING HERO ---- */
.pricing-hero {
  padding: 130px 0 60px;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(229,9,20,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.pricing-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229,9,20,0.08); border: 1px solid rgba(229,9,20,0.2);
  border-radius: 20px; padding: 7px 18px;
  font-size: 0.8rem; font-weight: 700; color: var(--text-2);
  margin-bottom: 24px; letter-spacing: 0.3px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(229,9,20,0.6);
  animation: pulse-ring 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(229,9,20,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(229,9,20,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,9,20,0); }
}
.pricing-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.15; margin: 0 0 20px; color: #fff;
}
.pricing-hero-sub {
  font-size: 1rem; color: var(--text-2); margin: 0 0 36px; line-height: 1.7;
}
.pricing-hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-strip-inner {
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 32px;
  flex: 1; min-width: 220px;
}
.trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-body { display: flex; flex-direction: column; gap: 2px; }
.trust-body strong { font-size: 0.88rem; font-weight: 800; color: #fff; }
.trust-body span   { font-size: 0.76rem; color: var(--text-3); }
.trust-sep {
  width: 1px; background: var(--border); flex-shrink: 0;
  align-self: stretch;
}

/* ---- PRICING SECTION ---- */
.pricing-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0d0d 100%);
}
.pricing-multi-section {
  background: linear-gradient(180deg, #0c0e18 0%, var(--bg-primary) 100%);
}

/* ---- PRICING GRID ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* ---- BASE PLAN CARD ---- */
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ---- POPULAR CARD (VIP) ---- */
.plan-card--popular {
  border-color: var(--accent);
  background: linear-gradient(145deg, #1a0808 0%, #1f1010 100%);
  box-shadow: 0 0 0 1px rgba(229,9,20,0.25), 0 20px 60px rgba(229,9,20,0.12);
  transform: scale(1.03);
  z-index: 2;
}
.plan-card--popular:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 0 0 1px rgba(229,9,20,0.35), 0 24px 70px rgba(229,9,20,0.18);
}

/* ---- MULTI CARD ---- */
.plan-card--multi {
  background: linear-gradient(145deg, #0c0e1a 0%, #111320 100%);
  border-color: rgba(96,165,250,0.15);
}
.plan-card--multi-pop {
  border-color: rgba(96,165,250,0.45);
  box-shadow: 0 0 0 1px rgba(96,165,250,0.2), 0 16px 50px rgba(96,165,250,0.08);
  transform: scale(1.02);
}
.plan-card--multi-pop:hover {
  transform: scale(1.02) translateY(-3px);
}

/* ---- POPULAR RIBBON ---- */
.plan-popular-ribbon {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--accent);
  text-align: center; padding: 7px 16px;
  font-size: 0.72rem; font-weight: 900; color: #fff;
  letter-spacing: 1px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.plan-popular-ribbon--blue { background: #2563eb; }
.popular-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: pulse-ring 1.5s infinite;
  flex-shrink: 0;
}
.popular-pulse--blue { animation-name: pulse-ring-blue; }
@keyframes pulse-ring-blue {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Offset content when ribbon present */
.plan-card--popular > .plan-popular-ribbon ~ * { margin-top: 0; }
.plan-card--popular { padding-top: 48px; }
.plan-card--multi-pop { padding-top: 48px; }

/* ---- PLAN HEADER ---- */
.plan-header { margin-bottom: 20px; }
.plan-duration {
  font-size: 1.05rem; font-weight: 900; color: #fff;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.plan-free-months {
  font-size: 0.68rem; padding: 3px 9px; border-radius: 4px;
  background: var(--accent); color: #fff; font-weight: 900;
  letter-spacing: 0.5px; white-space: nowrap;
  animation: glow-pulse 2s infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,9,20,0.4); }
  50%       { box-shadow: 0 0 10px 3px rgba(229,9,20,0.3); }
}
.plan-tag {
  display: inline-flex; padding: 3px 10px; border-radius: 4px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
}
.plan-tag--discover { background: rgba(255,255,255,0.06); color: var(--text-3); border: 1px solid var(--border); }
.plan-tag--value    { background: rgba(70,130,84,0.12); color: var(--accent-green); border: 1px solid rgba(70,130,84,0.25); }
.plan-tag--vip      { background: rgba(229,9,20,0.15); color: #ff6b6b; border: 1px solid rgba(229,9,20,0.3); }
.plan-tag--duo      { background: rgba(96,165,250,0.1); color: #60a5fa; border: 1px solid rgba(96,165,250,0.2); }
.plan-tag--family   { background: rgba(96,165,250,0.15); color: #93c5fd; border: 1px solid rgba(96,165,250,0.3); }
.plan-tag--premium  { background: rgba(245,197,24,0.1); color: #f5c518; border: 1px solid rgba(245,197,24,0.2); }

/* ---- PLAN PRICE AREA ---- */
.plan-price-area {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px;
}
.plan-currency {
  font-size: 1.1rem; font-weight: 800; color: var(--text-2);
  margin-top: 6px; flex-shrink: 0;
}
.plan-currency--popular { color: #ff6b6b; }
.plan-currency--blue    { color: #60a5fa; }
.plan-price-main {
  font-size: 3rem; font-weight: 900; color: #fff; line-height: 1;
}
.plan-price-main--popular { color: #fff; font-size: 3.4rem; }
.plan-price-main--blue    { color: #93c5fd; font-size: 3rem; }
.plan-billing {
  font-size: 0.82rem; color: var(--text-3); margin-left: 2px; align-self: flex-end; padding-bottom: 4px;
}
.plan-billing--popular { color: rgba(255,255,255,0.5); }

/* ---- PER MONTH / SAVING ---- */
.plan-per-month {
  font-size: 0.8rem; color: var(--text-3); margin-bottom: 16px; line-height: 1.5;
}
.plan-per-month strong        { color: var(--text-2); }
.plan-per-month--popular      { color: rgba(255,255,255,0.55); }
.plan-per-month--popular strong { color: #fff; }
.plan-per-month--blue         { color: rgba(96,165,250,0.7); }
.plan-per-month--blue strong  { color: #93c5fd; }
.saving-pill {
  display: inline-block; background: rgba(70,130,84,0.15); color: var(--accent-green);
  border: 1px solid rgba(70,130,84,0.3); border-radius: 4px;
  padding: 1px 7px; font-size: 0.7rem; font-weight: 800;
}
.saving-pill--blue {
  background: rgba(96,165,250,0.1); color: #60a5fa; border-color: rgba(96,165,250,0.25);
}

/* ---- BONUS BANNER ---- */
.plan-bonus-banner {
  display: flex; align-items: center; gap: 12px;
  background: rgba(229,9,20,0.08); border: 1px solid rgba(229,9,20,0.2);
  border-radius: var(--radius); padding: 12px 14px; margin-bottom: 16px;
  font-size: 0.8rem;
}
.plan-bonus-banner > span { font-size: 1.4rem; flex-shrink: 0; }
.plan-bonus-banner div { display: flex; flex-direction: column; gap: 2px; }
.plan-bonus-banner strong { color: #ff6b6b; font-weight: 800; font-size: 0.85rem; }
.plan-bonus-banner span  { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* ---- PLAN DIVIDER ---- */
.plan-divider { height: 1px; background: var(--border); margin: 0 0 18px; }
.plan-divider--popular { background: rgba(229,9,20,0.2); }

/* ---- PLAN FEATURES ---- */
.plan-features {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  margin: 0 0 24px; flex: 1;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.83rem; color: var(--text-2); line-height: 1.5;
}
.pf-check {
  font-weight: 900; color: var(--accent-green);
  flex-shrink: 0; margin-top: 1px; font-size: 0.9rem;
}
.pf-check--pop  { color: #ff8080; }
.pf-check--blue { color: #60a5fa; }
.pf-x  { color: var(--text-3); flex-shrink: 0; font-size: 0.9rem; }
.pf-missing { opacity: 0.45; }

/* ---- PLAN CTA BUTTONS ---- */
.plan-cta {
  display: block; text-align: center;
  padding: 14px 20px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 800; text-decoration: none;
  transition: all 0.2s; margin-bottom: 10px;
}
.plan-cta--std {
  background: rgba(255,255,255,0.07); border: 1px solid var(--border); color: #fff;
}
.plan-cta--std:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.plan-cta--popular {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 20px rgba(229,9,20,0.35);
}
.plan-cta--popular:hover { background: var(--accent-hover); box-shadow: 0 6px 28px rgba(229,9,20,0.5); transform: translateY(-1px); }
.plan-cta--multi {
  background: rgba(96,165,250,0.08); border: 1px solid rgba(96,165,250,0.25); color: #60a5fa;
}
.plan-cta--multi:hover { background: rgba(96,165,250,0.15); border-color: rgba(96,165,250,0.4); }
.plan-cta--multi-pop {
  background: #2563eb; color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.plan-cta--multi-pop:hover { background: #1d4ed8; box-shadow: 0 6px 28px rgba(37,99,235,0.45); }

/* ---- PLAN NOTE & RATING ---- */
.plan-note {
  font-size: 0.72rem; color: var(--text-3); text-align: center; margin: 0;
}
.plan-note--popular { color: rgba(255,255,255,0.35); }
.plan-rating-row {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(229,9,20,0.15);
}
.plan-stars { color: #f5c518; font-size: 0.85rem; letter-spacing: 1px; }
.plan-rating-text { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ---- MULTI SCREENS VISUAL ---- */
.multi-screens-visual {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
.screen-pill {
  font-size: 0.72rem; font-weight: 700; color: var(--text-3);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 10px;
}
.screen-pill--blue { color: #60a5fa; background: rgba(96,165,250,0.07); border-color: rgba(96,165,250,0.2); }
.screen-count { color: var(--text-3); font-weight: 600; font-size: 0.9rem; }

/* ---- PRICING VALUE NOTE ---- */
.pricing-value-note {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  text-align: center; margin-top: 32px;
  font-size: 0.83rem; color: var(--text-3); line-height: 1.6;
}
.pricing-value-note strong { color: var(--text-2); }
.pricing-value-note a { color: var(--accent); text-decoration: none; font-weight: 700; }
.pricing-value-note a:hover { text-decoration: underline; }
.pricing-value-note svg { flex-shrink: 0; color: #60a5fa; }

/* ---- FULL FEATURES GRID ---- */
.features-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.ff-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.ff-icon { font-size: 2rem; line-height: 1; }
.ff-card h3 { font-size: 0.97rem; font-weight: 800; color: #fff; margin: 0; }
.ff-card p  { font-size: 0.82rem; color: var(--text-3); margin: 0; line-height: 1.65; }
.ff-card p strong { color: var(--text-2); }

/* ---- ORDER PROCESS ---- */
.process-section { background: linear-gradient(135deg, #0d0d0d 0%, #111117 100%); }
.order-process {
  display: flex; align-items: flex-start; gap: 0;
  flex-wrap: wrap; justify-content: center;
}
.op-step {
  flex: 1; min-width: 200px; max-width: 280px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 20px;
}
.op-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; flex-shrink: 0;
  box-shadow: 0 0 20px rgba(229,9,20,0.3);
}
.op-icon { font-size: 2rem; line-height: 1; }
.op-step h3 { font-size: 0.97rem; font-weight: 800; color: #fff; margin: 0; }
.op-step p  { font-size: 0.82rem; color: var(--text-3); margin: 0; line-height: 1.65; }
.op-step p a { color: var(--accent); text-decoration: none; font-weight: 700; }
.op-connector {
  flex-shrink: 0; align-self: center;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, rgba(229,9,20,0.4), rgba(229,9,20,0.1));
  margin-top: -60px;
}
.process-cta-row { display: flex; justify-content: center; margin-top: 40px; }

/* ---- BUYER GUIDE ---- */
.buyer-guide-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.buyer-profile-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px; position: relative;
}
.buyer-profile-card--highlight {
  border-color: var(--accent);
  background: linear-gradient(145deg, #1a0808 0%, #1f1010 100%);
  box-shadow: 0 0 0 1px rgba(229,9,20,0.15), 0 12px 40px rgba(229,9,20,0.08);
}
.bp-badge-top {
  position: absolute; top: -1px; right: 20px;
  background: var(--accent); color: #fff;
  font-size: 0.68rem; font-weight: 900; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 0 0 8px 8px;
}
.bp-emoji { font-size: 2rem; line-height: 1; }
.buyer-profile-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin: 0; }
.bp-desc { font-size: 0.82rem; color: var(--text-3); margin: 0; line-height: 1.65; }
.bp-recommendation {
  display: flex; gap: 10px; font-size: 0.82rem; color: var(--text-2);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px; line-height: 1.6;
}
.bp-recommendation strong { color: #fff; }
.bp-arrow { color: var(--accent); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.bp-cta {
  display: block; text-align: center; padding: 11px 16px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-2);
  font-size: 0.82rem; font-weight: 800; text-decoration: none; margin-top: auto;
  transition: all 0.2s;
}
.bp-cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }
.bp-cta--red {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.bp-cta--red:hover { background: var(--accent-hover); }

/* ---- COMPARE SPLIT ---- */
.compare-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.compare-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.compare-col--multi { border-color: rgba(96,165,250,0.25); }
.compare-col-header {
  padding: 24px 24px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.compare-col--multi .compare-col-header { border-color: rgba(96,165,250,0.15); }
.compare-icon { font-size: 1.6rem; margin-bottom: 4px; }
.compare-col-header h3 { font-size: 1rem; font-weight: 800; color: #fff; margin: 0; }
.compare-col-header p  { font-size: 0.78rem; color: var(--text-3); margin: 0; }
.compare-list {
  list-style: none; padding: 20px 24px; display: flex; flex-direction: column; gap: 10px;
  background: var(--bg-card);
}
.compare-list li { font-size: 0.83rem; color: var(--text-2); line-height: 1.55; display: flex; gap: 8px; }
.cl-good::before   { content: '✓'; color: var(--accent-green); font-weight: 900; flex-shrink: 0; }
.cl-neutral::before { content: '→'; color: #60a5fa; font-weight: 900; flex-shrink: 0; }
.compare-price-highlight {
  padding: 16px 24px; background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-2); font-weight: 600;
}
.compare-price-highlight strong { color: #fff; font-size: 1.05rem; }
.compare-price-highlight--blue strong { color: #93c5fd; }

/* ---- ADVANTAGE GRID ---- */
.advantage-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
}
.adv-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.adv-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.adv-icon--red    { background: rgba(229,9,20,0.12); }
.adv-icon--green  { background: rgba(70,130,84,0.12); }
.adv-icon--yellow { background: rgba(245,197,24,0.1); }
.adv-icon--blue   { background: rgba(96,165,250,0.1); }
.adv-icon--purple { background: rgba(163,82,234,0.1); }
.adv-icon--orange { background: rgba(251,146,60,0.1); }
.adv-card h3 { font-size: 0.97rem; font-weight: 800; color: #fff; margin: 0; }
.adv-card p  { font-size: 0.82rem; color: var(--text-3); margin: 0; line-height: 1.65; }

/* ---- GUARANTEE BOX ---- */
.guarantee-box {
  display: flex; align-items: flex-start; gap: 32px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(70,130,84,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(70,130,84,0.25);
  border-radius: var(--radius-lg); padding: 48px 52px;
}
.guarantee-icon { font-size: 4rem; flex-shrink: 0; line-height: 1; }
.guarantee-body { flex: 1; min-width: 260px; }
.guarantee-body h2 { font-size: 1.5rem; font-weight: 900; color: #fff; margin: 0 0 16px; }
.guarantee-body p  { font-size: 0.87rem; color: var(--text-2); margin: 0 0 14px; line-height: 1.7; }
.guarantee-body p strong { color: #fff; }
.guarantee-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.gbadge {
  background: rgba(70,130,84,0.1); border: 1px solid rgba(70,130,84,0.25);
  color: var(--accent-green); border-radius: 6px;
  padding: 6px 14px; font-size: 0.78rem; font-weight: 800;
}

/* ---- PAYMENT GUIDE ---- */
.payment-guide-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start;
}
.payment-guide-body h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 0 14px; }
.payment-guide-body p  { font-size: 0.85rem; color: var(--text-2); margin: 0 0 20px; line-height: 1.7; }
.payment-guide-body a  { color: var(--accent); text-decoration: none; }
.payment-guide-body a:hover { text-decoration: underline; }
.payment-steps { display: flex; flex-direction: column; gap: 0; }
.payment-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.payment-step:last-child { border-bottom: none; }
.pstep-num {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: rgba(229,9,20,0.1); border: 2px solid rgba(229,9,20,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; color: var(--accent);
}
.pstep-body h4 { font-size: 0.9rem; font-weight: 800; color: #fff; margin: 0 0 6px; }
.pstep-body p  { font-size: 0.82rem; color: var(--text-3); margin: 0; line-height: 1.65; }
.pstep-body a  { color: var(--accent); text-decoration: none; font-weight: 700; }

/* ---- PAYMENT SIDEBAR ---- */
.security-card, .contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  margin-bottom: 16px;
}
.security-card h4, .contact-card h4 {
  font-size: 0.93rem; font-weight: 800; color: #fff; margin: 0 0 14px;
}
.security-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.security-card ul li { font-size: 0.82rem; color: var(--accent-green); font-weight: 600; }
.contact-card p { font-size: 0.82rem; color: var(--text-3); margin: 0 0 12px; }
.contact-wa-btn, .contact-email-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; border-radius: var(--radius);
  font-size: 0.83rem; font-weight: 800; text-decoration: none;
  transition: all 0.2s; margin-bottom: 8px;
}
.contact-wa-btn  { background: #25d366; color: #fff; }
.contact-wa-btn:hover  { background: #20ba5a; }
.contact-email-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-2); }
.contact-email-btn:hover { background: rgba(255,255,255,0.09); color: #fff; }

/* ---- PRICING CTA BAND ---- */
.cta-band--pricing {
  background: linear-gradient(135deg, #0f0505 0%, #1a0a0a 40%, #0f0f14 100%);
  border: 1px solid rgba(229,9,20,0.25);
}
.cta-band--pricing h2 { font-size: 1.7rem; font-weight: 900; color: #fff; margin: 0 0 12px; }
.cta-band--pricing p  { font-size: 0.87rem; color: var(--text-2); margin: 0 0 16px; line-height: 1.7; }
.cta-trust-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 0.78rem; color: var(--text-3); font-weight: 600;
}
.cta-band-eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); font-weight: 800; margin: 0 0 8px; }

/* ---- RESPONSIVE PRICING ---- */
@media (max-width: 1024px) {
  .pricing-grid       { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
  .plan-card--popular { transform: scale(1.01); }
}
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-card--popular { transform: none; }
  .plan-card--multi-pop { transform: none; }
  .compare-split { grid-template-columns: 1fr; }
  .payment-guide-grid { grid-template-columns: 1fr; }
  .guarantee-box { padding: 32px 28px; }
  .op-connector { display: none; }
  .order-process { flex-direction: column; align-items: center; }
  .trust-strip-inner { flex-direction: column; }
  .trust-sep { width: 100%; height: 1px; align-self: auto; }
  .buyer-guide-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .pricing-hero { padding: 110px 0 48px; }
  .pricing-hero-title { font-size: 1.9rem; }
  .plan-price-main { font-size: 2.6rem; }
  .plan-price-main--popular { font-size: 2.8rem; }
  .cta-band--pricing { padding: 36px 28px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .features-full-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   AVIS.PHP — REVIEWS PAGE
   ======================================================== */

/* ---- AVIS HERO ---- */
.avis-hero {
  padding: 130px 0 56px;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-primary) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.avis-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245,197,24,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.avis-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.avis-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,0.08); border: 1px solid rgba(245,197,24,0.2);
  border-radius: 20px; padding: 7px 18px;
  font-size: 0.8rem; font-weight: 700; color: #f5c518;
  margin-bottom: 24px; letter-spacing: 0.3px;
}
.avis-hero-sub {
  font-size: 1rem; color: var(--text-2); margin: 0 0 32px; line-height: 1.7;
}

/* ---- HERO AGGREGATE DISPLAY ---- */
.hero-aggregate {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 32px; max-width: 480px;
  margin: 0 auto;
}
.hero-agg-score {
  font-size: 3.8rem; font-weight: 900; color: #fff; line-height: 1;
  flex-shrink: 0;
}
.hero-agg-right { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.hero-agg-stars { font-size: 1.6rem; color: #f5c518; letter-spacing: 2px; }
.hero-agg-label { font-size: 0.8rem; color: var(--text-3); }
.hero-agg-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.hagg-b {
  font-size: 0.72rem; font-weight: 700; color: var(--text-3);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 4px; padding: 3px 8px;
}
.hagg-b--green { color: var(--accent-green); background: rgba(70,130,84,0.1); border-color: rgba(70,130,84,0.2); }

/* ---- TRUST STRIP 5 COLS ---- */
.trust-strip-inner--5 { justify-content: stretch; }

/* ---- SECTION COMPACT ---- */
.section--compact { padding: 48px 0; }

/* ---- AGGREGATE RATING BOX ---- */
.aggregate-rating-box {
  display: grid; grid-template-columns: auto 1fr auto; gap: 48px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 48px;
}
.arb-score-col { text-align: center; }
.arb-number {
  font-size: 4.5rem; font-weight: 900; color: #fff; line-height: 1;
  margin-bottom: 4px;
}
.arb-stars { font-size: 1.8rem; color: #f5c518; letter-spacing: 3px; margin-bottom: 4px; }
.arb-label { font-size: 0.88rem; font-weight: 800; color: var(--accent-green); }
.arb-count { font-size: 0.75rem; color: var(--text-3); margin-top: 2px; }

/* ---- STAR BAR ROWS ---- */
.arb-bars-col { display: flex; flex-direction: column; gap: 10px; }
.star-bar-row {
  display: flex; align-items: center; gap: 12px;
}
.sbr-label { font-size: 0.78rem; color: #f5c518; font-weight: 700; width: 30px; flex-shrink: 0; text-align: right; }
.sbr-track {
  flex: 1; height: 8px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.sbr-fill {
  height: 100%; border-radius: 4px;
  transition: width 0.6s ease;
}
.sbr-fill--5 { background: linear-gradient(90deg, #468254, #6ab47d); }
.sbr-fill--4 { background: linear-gradient(90deg, #85c178, #a8d8a1); }
.sbr-fill--3 { background: linear-gradient(90deg, #f5c518, #ffd700); }
.sbr-fill--2 { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.sbr-fill--1 { background: linear-gradient(90deg, #e50914, #ff4d4d); }
.sbr-pct { font-size: 0.72rem; color: var(--text-3); width: 36px; flex-shrink: 0; }
.sbr-count { font-size: 0.72rem; color: var(--text-3); width: 40px; flex-shrink: 0; text-align: right; }

/* ---- ARB CTA COL ---- */
.arb-cta-col { display: flex; flex-direction: column; gap: 12px; max-width: 220px; }
.arb-cta-title { font-size: 0.88rem; font-weight: 700; color: var(--text-2); line-height: 1.5; }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }

/* ---- FEATURED REVIEWS GRID ---- */
.featured-reviews-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.review-featured-card--full { grid-column: 1 / -1; }

.review-featured-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.2s;
}
.review-featured-card:hover { border-color: rgba(245,197,24,0.25); }

/* ---- RFC HEADER ---- */
.rfc-header {
  display: flex; align-items: flex-start; gap: 16px;
}
.rfc-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 900; color: #fff; letter-spacing: 0.5px;
}
.rfc-avatar--red    { background: linear-gradient(135deg, #e50914, #c0070f); }
.rfc-avatar--blue   { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.rfc-avatar--green  { background: linear-gradient(135deg, #468254, #2d6b3a); }
.rfc-avatar--yellow { background: linear-gradient(135deg, #d97706, #b45309); }
.rfc-avatar--purple { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.rfc-avatar--orange { background: linear-gradient(135deg, #ea580c, #c2410c); }
.rfc-avatar--teal   { background: linear-gradient(135deg, #0891b2, #0e7490); }

.rfc-meta { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.rfc-name { font-size: 1rem; font-weight: 800; color: #fff; }
.rfc-location { font-size: 0.75rem; color: var(--text-3); }
.rfc-stars-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rfc-stars { color: #f5c518; font-size: 1rem; letter-spacing: 1px; }
.rfc-verified {
  font-size: 0.68rem; font-weight: 700; color: var(--accent-green);
  background: rgba(70,130,84,0.1); border: 1px solid rgba(70,130,84,0.2);
  border-radius: 4px; padding: 2px 7px;
}
.rfc-plan {
  font-size: 0.68rem; font-weight: 700; color: #f5c518;
  background: rgba(245,197,24,0.08); border: 1px solid rgba(245,197,24,0.18);
  border-radius: 4px; padding: 2px 7px;
}
.rfc-date { font-size: 0.72rem; color: var(--text-3); flex-shrink: 0; white-space: nowrap; }

/* ---- RFC DEVICE TAGS ---- */
.rfc-device-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.rfc-dtag {
  font-size: 0.72rem; font-weight: 700; color: var(--text-2);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 10px;
}

/* ---- RFC TITLE & BODY ---- */
.rfc-title {
  font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.4; margin: 0;
}
.rfc-body { display: flex; flex-direction: column; gap: 12px; }
.rfc-body p { font-size: 0.85rem; color: var(--text-2); margin: 0; line-height: 1.75; }
.rfc-body p strong { color: #fff; }
.rfc-body p em { color: var(--text-1); font-style: italic; }

/* ---- SUCCESS STORIES ---- */
.success-stories-section {
  background: linear-gradient(180deg, #0d0d0d 0%, var(--bg-primary) 100%);
}
.success-stories-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.success-story-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.ss-eyebrow { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.ss-tag {
  font-size: 0.72rem; font-weight: 800; color: #60a5fa;
  background: rgba(96,165,250,0.08); border: 1px solid rgba(96,165,250,0.2);
  border-radius: 4px; padding: 3px 10px;
}
.ss-client { font-size: 0.75rem; color: var(--text-3); font-weight: 600; }
.success-story-card h3 { font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.4; margin: 0; }

/* Before/After block */
.ss-situation { display: flex; gap: 0; align-items: stretch; flex-wrap: wrap; }
.ss-block {
  flex: 1; min-width: 160px; padding: 16px;
  border-radius: var(--radius);
}
.ss-block--before { background: rgba(229,9,20,0.05); border: 1px solid rgba(229,9,20,0.12); }
.ss-block--after  { background: rgba(70,130,84,0.05); border: 1px solid rgba(70,130,84,0.15); }
.ss-block-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); margin-bottom: 10px; }
.ss-block ul { display: flex; flex-direction: column; gap: 6px; }
.ss-block ul li { font-size: 0.78rem; color: var(--text-2); line-height: 1.5; }
.ss-block--before ul li strong { color: #ff6b6b; }
.ss-block--after  ul li strong { color: var(--accent-green); }
.ss-arrow { display: flex; align-items: center; justify-content: center; padding: 0 12px; font-size: 1.4rem; color: var(--text-3); flex-shrink: 0; }

/* Result highlight */
.ss-result {
  display: flex; align-items: center; gap: 12px;
  background: rgba(70,130,84,0.08); border: 1px solid rgba(70,130,84,0.2);
  border-radius: var(--radius); padding: 14px 16px;
}
.ss-result-number { font-size: 1.6rem; font-weight: 900; color: var(--accent-green); flex-shrink: 0; }
.ss-result-label { font-size: 0.82rem; color: var(--text-2); line-height: 1.5; }
.ss-result-label strong { color: #fff; }

/* Timeline */
.ss-timeline { display: flex; flex-direction: column; gap: 0; }
.ss-timeline-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.ss-timeline-item:last-child { border-bottom: none; }
.ss-timeline-item--win { background: rgba(70,130,84,0.03); border-radius: var(--radius); padding: 14px 12px; }
.ss-tl-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  margin-top: 4px;
}
.ss-tl-dot--bad  { background: rgba(229,9,20,0.5); border: 2px solid rgba(229,9,20,0.3); }
.ss-tl-dot--good { background: var(--accent-green); box-shadow: 0 0 8px rgba(70,130,84,0.5); }
.ss-tl-body { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; }
.ss-tl-body strong { color: #fff; }

/* Quote */
.ss-quote {
  border-left: 3px solid var(--accent); padding-left: 16px;
  font-size: 0.85rem; color: var(--text-2); font-style: italic; line-height: 1.7; margin: 0;
}
.ss-quote cite { display: block; margin-top: 6px; font-size: 0.75rem; color: var(--text-3); font-style: normal; font-weight: 700; }

/* ---- REVIEWS GRID ---- */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.reviews-grid--compact { grid-template-columns: repeat(3, 1fr); }

.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover {
  border-color: rgba(245,197,24,0.2);
  transform: translateY(-2px);
}
.review-card--compact { padding: 20px 18px; gap: 8px; }

/* RC HEADER */
.rc-header { display: flex; align-items: center; gap: 10px; }
.rc-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; color: #fff;
}
.rc-avatar--red    { background: linear-gradient(135deg, #e50914, #c0070f); }
.rc-avatar--blue   { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.rc-avatar--green  { background: linear-gradient(135deg, #468254, #2d6b3a); }
.rc-avatar--yellow { background: linear-gradient(135deg, #d97706, #b45309); }
.rc-avatar--purple { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.rc-avatar--orange { background: linear-gradient(135deg, #ea580c, #c2410c); }
.rc-avatar--teal   { background: linear-gradient(135deg, #0891b2, #0e7490); }

.rc-meta { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.rc-name { font-size: 0.85rem; font-weight: 800; color: #fff; }
.rc-loc  { font-size: 0.72rem; color: var(--text-3); }
.rc-date { font-size: 0.7rem; color: var(--text-3); flex-shrink: 0; white-space: nowrap; }
.rc-stars { font-size: 0.9rem; color: #f5c518; letter-spacing: 1px; }
.rc-title { font-size: 0.85rem; font-weight: 800; color: #fff; line-height: 1.4; margin: 0; }
.rc-body { font-size: 0.8rem; color: var(--text-2); margin: 0; line-height: 1.7; flex: 1; }
.rc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rc-tag {
  font-size: 0.68rem; font-weight: 700; color: var(--text-3);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 4px; padding: 2px 7px;
}
.rc-verified {
  font-size: 0.7rem; font-weight: 700; color: var(--accent-green);
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border);
}

/* ---- LOAD MORE ROW ---- */
.reviews-load-more {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 40px; text-align: center;
}
.rlm-count { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.rlm-shown { font-size: 0.82rem; color: var(--text-3); }
.rlm-bar-track {
  width: 200px; height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
}
.rlm-bar-fill { height: 100%; background: var(--accent-green); border-radius: 2px; }

/* ---- TRUST ARTICLE SECTION ---- */
.trust-article-section {
  background: linear-gradient(180deg, #0c0c10 0%, var(--bg-primary) 100%);
}
.trust-article-grid {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start;
}
.trust-article-body .section-eyebrow {
  display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: #60a5fa; font-weight: 800;
  margin-bottom: 12px;
}
.trust-article-body h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 20px; color: #fff; }
.trust-article-body h3 { font-size: 1rem; font-weight: 800; color: #fff; margin: 20px 0 10px; }
.trust-article-body p  { font-size: 0.86rem; color: var(--text-2); margin: 0 0 14px; line-height: 1.75; }
.trust-article-body p strong { color: #fff; }

.trust-why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; margin-bottom: 14px;
}
.trust-why-card h4 { font-size: 0.9rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.trust-why-card ul { display: flex; flex-direction: column; gap: 7px; }
.trust-why-card ul li { font-size: 0.8rem; color: var(--accent-green); font-weight: 600; }

/* ---- CTA BAND AVIS ---- */
.cta-band--avis {
  background: linear-gradient(135deg, #080a10 0%, #0f1018 40%, #100808 100%);
  border: 1px solid rgba(245,197,24,0.15);
}
.cta-avis-stats {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  margin-top: 20px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.cas-item {
  flex: 1; min-width: 100px; text-align: center; padding: 14px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.cas-num { font-size: 1.3rem; font-weight: 900; color: #f5c518; }
.cas-label { font-size: 0.7rem; color: var(--text-3); }
.cas-sep { width: 1px; background: var(--border); align-self: stretch; }

/* ---- RESPONSIVE AVIS ---- */
@media (max-width: 1024px) {
  .aggregate-rating-box { grid-template-columns: auto 1fr; gap: 28px; }
  .arb-cta-col { grid-column: 1 / -1; max-width: none; flex-direction: row; align-items: center; justify-content: space-between; }
  .trust-article-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .featured-reviews-grid { grid-template-columns: 1fr; }
  .success-stories-grid  { grid-template-columns: 1fr; }
  .reviews-grid          { grid-template-columns: 1fr 1fr; }
  .reviews-grid--compact { grid-template-columns: 1fr 1fr; }
  .aggregate-rating-box  { grid-template-columns: 1fr; gap: 20px; text-align: center; padding: 28px 24px; }
  .arb-cta-col { flex-direction: column; }
  .hero-aggregate { flex-direction: column; gap: 12px; }
}
@media (max-width: 540px) {
  .reviews-grid          { grid-template-columns: 1fr; }
  .reviews-grid--compact { grid-template-columns: 1fr; }
  .ss-situation          { flex-direction: column; }
  .ss-arrow              { display: none; }
  .cta-avis-stats        { flex-direction: column; }
  .cas-sep               { width: 100%; height: 1px; }
}

/* ============================================================
   FAQ.PHP — Centre d'Aide
   ============================================================ */

/* ── Hero ── */
.faq-hero {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, #1a0000 0%, #141414 50%, #0a0a1a 100%);
  border-bottom: 1px solid #2a2a2a;
}
.faq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 32px;
}
.faq-breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color .2s;
}
.faq-breadcrumb a:hover { color: var(--accent); }
.faq-breadcrumb span    { color: #555; }

.faq-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.faq-hero-text   { flex: 1; }
.faq-hero-badge  {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.faq-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
.faq-hero-accent { color: var(--accent); }
.faq-hero-desc {
  font-size: 1.1rem;
  color: #aaa;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}
.faq-hero-stats {
  display: flex;
  gap: 32px;
}
.faq-stat       { display: flex; flex-direction: column; gap: 4px; }
.faq-stat-num   { font-size: 1.8rem; font-weight: 900; color: var(--accent); line-height: 1; }
.faq-stat-label { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: .05em; }

.faq-hero-icon {
  font-size: 6rem;
  opacity: 0.15;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}

/* ── Filter Tabs ── */
.faq-filter-section {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: #0f0f0f;
  border-bottom: 1px solid #222;
  padding: 14px 0;
}
.faq-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.faq-filter-btn {
  background: #1f1f1f;
  border: 1px solid #333;
  color: #aaa;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 24px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  font-family: inherit;
}
.faq-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(229,9,20,.08);
}
.faq-filter-btn--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-filter-btn--active:hover {
  background: #c0000f;
  border-color: #c0000f;
  color: #fff;
}

/* ── FAQ Main ── */
.faq-main { padding: 60px 0; }

.faq-category-section {
  margin-bottom: 56px;
  scroll-margin-top: 140px;
}

.faq-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #252525;
}
.faq-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.faq-cat-meta h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.faq-question-count {
  font-size: 0.78rem;
  color: #666;
  font-weight: 500;
}

/* ── Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: #3a3a3a; }
.faq-item.open  {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(229,9,20,.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.faq-q-text {
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
  line-height: 1.4;
  flex: 1;
  transition: color .2s;
}
.faq-item.open .faq-q-text  { color: #fff; }
.faq-item:hover .faq-q-text { color: #fff; }

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #888;
  transition: background .2s, color .2s, transform .3s;
}
.faq-item.open .faq-chevron {
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.75;
  border-top: 1px solid #252525;
  padding-top: 18px;
}
.faq-answer-inner a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.faq-answer-inner a:hover {
  text-decoration: underline;
}
.faq-answer-inner strong { color: #e0e0e0; }
.faq-answer-inner table {
  border-radius: 10px;
  overflow: hidden;
}

/* ── CTA Section ── */
.faq-cta-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #0f0f0f 0%, #141414 100%);
  border-top: 1px solid #222;
}

.faq-cta-card {
  background: linear-gradient(135deg, #1a0000 0%, #1f1f1f 100%);
  border: 1px solid #3a1010;
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.faq-cta-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.faq-cta-content { flex: 1; }
.faq-cta-content h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.faq-cta-content p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 8px;
  font-size: 0.97rem;
}
.faq-cta-promise {
  color: #888;
  font-size: 0.88rem;
}
.faq-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.faq-cta-wa  { white-space: nowrap; }
.faq-cta-sub { white-space: nowrap; }

/* ── Quick Links ── */
.faq-quicklinks { }
.faq-quicklinks h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 16px;
  text-align: center;
}
.faq-quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.faq-quicklink {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s, transform .2s;
}
.faq-quicklink:hover {
  border-color: var(--accent);
  background: rgba(229,9,20,.06);
  transform: translateY(-2px);
}
.fql-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.faq-quicklink strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ddd;
  margin-bottom: 3px;
}
.faq-quicklink small {
  font-size: 0.77rem;
  color: #777;
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .faq-quicklinks-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-cta-card        { flex-direction: column; text-align: center; }
  .faq-cta-actions     { flex-direction: row; justify-content: center; }
}
@media (max-width: 768px) {
  .faq-hero            { padding: 120px 0 48px; }
  .faq-hero-inner      { flex-direction: column; }
  .faq-hero-icon       { display: none; }
  .faq-hero-stats      { gap: 20px; }
  .faq-filter-section  { top: 64px; }
  .faq-filter-tabs     { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .faq-filter-btn      { flex-shrink: 0; }
  .faq-cta-card        { padding: 28px 24px; }
  .faq-cta-actions     { flex-direction: column; }
  .faq-quicklinks-grid { grid-template-columns: 1fr 1fr; }
  .faq-question        { padding: 16px 18px; }
  .faq-answer-inner    { padding: 0 18px 18px; padding-top: 14px; }
}
@media (max-width: 480px) {
  .faq-hero-stats      { flex-direction: column; gap: 12px; }
  .faq-quicklinks-grid { grid-template-columns: 1fr; }
  .faq-cta-content h2  { font-size: 1.35rem; }
}

/* ============================================================
   CONTACT.PHP — Page Contact & Support
   ============================================================ */

/* ── Hero ── */
.contact-hero {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, #0a1a0a 0%, #141414 50%, #0a0a1a 100%);
  border-bottom: 1px solid #222;
  overflow: hidden;
}
.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 32px;
}
.contact-breadcrumb a  { color: #888; text-decoration: none; transition: color .2s; }
.contact-breadcrumb a:hover { color: var(--accent); }
.contact-breadcrumb span { color: #555; }

.contact-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.contact-hero-text { flex: 1; max-width: 600px; }
.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(70,130,84,.15);
  border: 1px solid rgba(70,130,84,.3);
  color: #5eba70;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.contact-hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #5eba70;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
.contact-hero-text h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.contact-hero-accent { color: #5eba70; }
.contact-hero-desc {
  font-size: 1.05rem;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-sla-strip { display: flex; flex-direction: column; gap: 10px; }
.contact-sla-item  {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #999;
}
.contact-sla-item svg    { color: #5eba70; flex-shrink: 0; }
.contact-sla-item strong { color: #e0e0e0; }

/* ── Hero visual (chat bubbles) ── */
.contact-hero-visual {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chv-bubble {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: float-in .6s ease both;
}
.chv-bubble--1 { animation-delay: .2s; }
.chv-bubble--2 { animation-delay: .5s; border-color: rgba(70,130,84,.3); background: rgba(70,130,84,.07); }
@keyframes float-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chv-avatar {
  width: 36px; height: 36px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.chv-msg p  { font-size: 0.88rem; color: #ddd; margin: 0 0 4px; line-height: 1.4; }
.chv-time   { font-size: 0.72rem; color: #666; }
.chv-badge  {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #5eba70;
  font-weight: 600;
  padding: 8px 14px;
  background: rgba(70,130,84,.1);
  border: 1px solid rgba(70,130,84,.2);
  border-radius: 24px;
  align-self: flex-start;
}
.chv-dot {
  width: 8px; height: 8px;
  background: #5eba70;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

/* ── Contact Options ── */
.contact-options-section { padding: 60px 0 0; }
.contact-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-option {
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-option--primary {
  background: linear-gradient(135deg, #0a2010 0%, #1a2a1a 100%);
  border: 1px solid rgba(70,130,84,.4);
  box-shadow: 0 0 40px rgba(70,130,84,.08);
}
.contact-option--secondary {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}
.co-badge {
  position: absolute;
  top: -12px; left: 28px;
  background: #5eba70;
  color: #0a1a0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.co-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}
.co-icon--wa    { background: rgba(37,211,102,.12); color: #25d366; }
.co-icon--email { background: rgba(59,130,246,.1);  color: #3b82f6; }

.contact-option h2 { font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0; }
.co-desc { font-size: 0.92rem; color: #aaa; line-height: 1.65; }
.co-benefits { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.co-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #bbb;
}
.co-benefits li svg { color: #5eba70; flex-shrink: 0; }
.contact-option--secondary .co-benefits li svg { color: #3b82f6; }

.co-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 1rem; padding: 14px 24px; border-radius: 10px;
  text-decoration: none; font-weight: 700; transition: all .2s;
}
.co-number, .co-email-addr {
  text-align: center; font-size: 0.82rem; color: #666; margin: 0; letter-spacing: .03em;
}

/* ── SLA Bar ── */
.contact-sla-bar {
  display: flex;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 60px;
}
.csb-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
}
.csb-item strong { display: block; font-size: 0.9rem; color: #e0e0e0; }
.csb-item small  { font-size: 0.78rem; color: #666; }
.csb-icon { font-size: 1.4rem; flex-shrink: 0; }
.csb-sep  { width: 1px; background: #2a2a2a; margin: 12px 0; }

/* ── Form Section ── */
.contact-form-section { padding: 0 0 80px; }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}
.cform-pretext {
  font-size: 0.92rem;
  color: #888;
  line-height: 1.65;
  padding: 14px 18px;
  background: rgba(229,9,20,.05);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
}
.cform-pretext a { color: var(--accent); font-weight: 600; text-decoration: none; }
.cform-pretext a:hover { text-decoration: underline; }

.cform-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 36px 32px;
}
.cform-title    { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cform-subtitle { font-size: 0.88rem; color: #777; margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row       { display: grid; gap: 16px; }
.cf-row--2    { grid-template-columns: 1fr 1fr; }

.cf-group         { display: flex; flex-direction: column; gap: 6px; }
.cf-group label   { font-size: 0.85rem; font-weight: 600; color: #ccc; }
.cf-group label span { color: var(--accent); }

.cf-input {
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  color: #e0e0e0;
  font-size: 0.93rem;
  font-family: inherit;
  padding: 12px 16px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  box-sizing: border-box;
}
.cf-input::placeholder { color: #555; }
.cf-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229,9,20,.12);
}
.cf-input--error { border-color: #e55; }
.cf-input--error:focus { box-shadow: 0 0 0 3px rgba(229,85,85,.15); }
.cf-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.cf-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.cf-error    { font-size: 0.8rem; color: #e55; display: none; }

.cf-checkbox-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 0.83rem; color: #888; line-height: 1.5;
}
.cf-checkbox-label input[type="checkbox"] { width: 0; height: 0; opacity: 0; position: absolute; }
.cf-checkmark {
  width: 18px; height: 18px;
  border: 1.5px solid #444;
  border-radius: 4px;
  background: #111;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all .2s;
  position: relative;
}
.cf-checkbox-label input:checked + .cf-checkmark {
  background: var(--accent); border-color: var(--accent);
}
.cf-checkbox-label input:checked + .cf-checkmark::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.cf-checkbox-label a { color: var(--accent); }

.cf-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; font-size: 1rem; border-radius: 10px;
  width: 100%; cursor: pointer; border: none;
  font-family: inherit; font-weight: 700; transition: all .2s;
}
.cf-submit:disabled { opacity: .6; cursor: not-allowed; }

.cf-success {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(70,130,84,.1);
  border: 1px solid rgba(70,130,84,.3);
  border-radius: 12px; padding: 18px 20px;
  color: #7dd98a; font-size: 0.92rem; line-height: 1.6;
}
.cf-success svg { flex-shrink: 0; margin-top: 2px; color: #5eba70; }
.cf-success a   { color: #25d366; font-weight: 600; }

/* ── Info Column ── */
.cinfo-col { display: flex; flex-direction: column; gap: 16px; }

.cinfo-card {
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 16px; padding: 24px;
}
.cinfo-card h3 {
  font-size: 0.8rem; font-weight: 700; color: #888;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px;
}
.cinfo-list  { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cinfo-item  { display: flex; align-items: flex-start; gap: 12px; }
.cinfo-icon  {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cinfo-icon--wa    { background: rgba(37,211,102,.12); color: #25d366; }
.cinfo-icon--email { background: rgba(59,130,246,.1);  color: #3b82f6; }
.cinfo-icon--clock { background: rgba(245,158,11,.1);  color: #f59e0b; }
.cinfo-icon--lang  { background: rgba(229,9,20,.08);   color: var(--accent); }

.cinfo-item > div  { display: flex; flex-direction: column; gap: 3px; }
.cinfo-item strong { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.cinfo-item a      { color: #e0e0e0; text-decoration: none; font-size: 0.93rem; font-weight: 600; }
.cinfo-item a:hover{ color: var(--accent); }
.cinfo-item span   { color: #ddd; font-size: 0.93rem; }
.cinfo-item small  { color: #666; font-size: 0.8rem; }

.cinfo-response-card {
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 16px; padding: 20px 24px;
}
.cinfo-response-card h3 {
  font-size: 0.8rem; font-weight: 700; color: #888;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px;
}
.crc-items { display: flex; flex-direction: column; gap: 12px; }
.crc-item  { display: flex; flex-direction: column; gap: 6px; }
.crc-meta  { display: flex; justify-content: space-between; align-items: center; }
.crc-label { font-size: 0.85rem; color: #bbb; }
.crc-time  { font-size: 0.8rem; font-weight: 700; color: #5eba70; }
.crc-bar-wrap { height: 5px; background: #2a2a2a; border-radius: 99px; overflow: hidden; }
.crc-bar        { height: 100%; background: #5eba70; border-radius: 99px; }
.crc-bar--email { background: #3b82f6; }
.crc-bar--form  { background: #f59e0b; }

.cinfo-offer-card {
  background: rgba(229,9,20,.05);
  border: 1px solid rgba(229,9,20,.15);
  border-radius: 14px; padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 12px;
}
.coc-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.cinfo-offer-card strong { display: block; font-size: 0.9rem; color: #e0e0e0; margin-bottom: 4px; }
.cinfo-offer-card p      { font-size: 0.83rem; color: #888; margin: 0; line-height: 1.5; }
.cinfo-offer-card a      { color: var(--accent); font-weight: 600; text-decoration: none; }
.cinfo-offer-card a:hover{ text-decoration: underline; }

.cinfo-trust {
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 14px; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-around;
}
.cit-stat   { text-align: center; }
.cit-num    { display: block; font-size: 1.3rem; font-weight: 900; color: var(--accent); }
.cit-label  { font-size: 0.72rem; color: #666; }
.cit-divider{ width: 1px; height: 40px; background: #2a2a2a; }

/* ── FAQ Teaser ── */
.contact-faq-teaser {
  padding: 56px 0;
  background: linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
  border-top: 1px solid #222;
}
.cft-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}
.cft-text h2 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cft-text p  { font-size: 0.9rem; color: #888; line-height: 1.65; margin: 0; max-width: 440px; }
.cft-text a  { color: var(--accent); font-weight: 600; text-decoration: none; }
.cft-text a:hover { text-decoration: underline; }
.cft-links { display: flex; flex-direction: column; gap: 8px; }
.cft-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: #aaa; text-decoration: none;
  padding: 8px 14px;
  background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 8px;
  transition: all .2s; white-space: nowrap;
}
.cft-link:hover { border-color: var(--accent); color: #fff; background: rgba(229,9,20,.06); }
.cft-btn  { flex-shrink: 0; white-space: nowrap; }

/* ── Responsive Contact ── */
@media (max-width: 1100px) {
  .contact-form-grid { grid-template-columns: 1fr; }
  .cinfo-col         { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .contact-options-grid { grid-template-columns: 1fr; }
  .contact-sla-bar      { flex-wrap: wrap; }
  .csb-sep              { display: none; }
  .cft-inner            { grid-template-columns: 1fr; gap: 20px; }
  .cft-links            { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .contact-hero        { padding: 120px 0 48px; }
  .contact-hero-inner  { flex-direction: column; gap: 32px; }
  .contact-hero-visual { width: 100%; max-width: 340px; align-self: center; }
  .cinfo-col           { display: flex; flex-direction: column; }
  .cf-row--2           { grid-template-columns: 1fr; }
  .cform-card          { padding: 24px 20px; }
  .contact-option      { padding: 28px 22px; }
}
@media (max-width: 540px) {
  .contact-sla-bar { flex-direction: column; }
  .csb-item        { padding: 16px 20px; }
  .cinfo-trust     { flex-direction: column; gap: 12px; }
  .cit-divider     { width: 40px; height: 1px; }
  .cft-links       { flex-direction: column; }
}

/* ============================================================
   MENTIONS-LEGALES.PHP — Page légale
   ============================================================ */

/* ── Hero ── */
.legal-hero {
  padding: 140px 0 48px;
  background: linear-gradient(160deg, #0d0d1a 0%, #141414 60%);
  border-bottom: 1px solid #222;
}
.legal-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: #888; margin-bottom: 24px;
}
.legal-breadcrumb a { color: #888; text-decoration: none; transition: color .2s; }
.legal-breadcrumb a:hover { color: var(--accent); }
.legal-breadcrumb span { color: #555; }

.legal-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: #fff; margin-bottom: 8px;
}
.legal-updated { font-size: 0.83rem; color: #666; margin-bottom: 18px; }
.legal-intro   { font-size: 0.97rem; color: #999; line-height: 1.75; max-width: 720px; }

/* ── Layout ── */
.legal-body { padding: 56px 0 80px; }
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── TOC Sidebar ── */
.legal-toc {
  position: sticky;
  top: 100px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 22px 20px;
}
.legal-toc-title {
  font-size: 0.75rem; font-weight: 700; color: #888;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 14px;
}
.legal-toc-list {
  list-style: none; counter-reset: none;
  display: flex; flex-direction: column; gap: 4px;
  padding: 0; margin: 0;
}
.legal-toc-list li { list-style: none; }
.legal-toc-list a {
  display: block;
  font-size: 0.82rem; color: #888; text-decoration: none;
  padding: 5px 8px; border-radius: 6px;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.legal-toc-list a:hover { background: #252525; color: #ddd; }

/* ── Sections ── */
.legal-content { display: flex; flex-direction: column; gap: 40px; }

.legal-section {
  border-bottom: 1px solid #1e1e1e;
  padding-bottom: 40px;
  scroll-margin-top: 110px;
}
.legal-section:last-child { border-bottom: none; padding-bottom: 0; }

.legal-section h2 {
  font-size: 1.3rem; font-weight: 800; color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2a2a2a;
}
.legal-section h3 {
  font-size: 1rem; font-weight: 700; color: #ddd;
  margin: 20px 0 10px;
}
.legal-section p {
  font-size: 0.93rem; color: #aaa; line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--accent); text-decoration: none; font-weight: 500; }
.legal-section a:hover { text-decoration: underline; }
.legal-section strong { color: #ddd; }
.legal-section em     { color: #bbb; }

.legal-list {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin: 12px 0 16px;
}
.legal-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: #aaa; line-height: 1.65;
}
.legal-list li::before {
  content: '–';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Info box / table ── */
.legal-info-box {
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 12px; overflow: hidden; margin: 16px 0;
}
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.legal-table th, .legal-table td { padding: 11px 16px; text-align: left; }
.legal-table th[scope="row"] {
  width: 40%; color: #888; font-weight: 600;
  background: #161616; border-right: 1px solid #2a2a2a;
  white-space: nowrap;
}
.legal-table td { color: #ccc; }
.legal-table tbody tr { border-bottom: 1px solid #1e1e1e; }
.legal-table tbody tr:last-child { border-bottom: none; }

.legal-table--full thead th {
  background: #161616; color: #888; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: .05em;
  font-weight: 700; border-bottom: 1px solid #2a2a2a;
}
.legal-table--full tbody td { color: #bbb; }
.legal-table-wrap { border-radius: 12px; overflow: hidden; border: 1px solid #2a2a2a; margin: 14px 0; }

/* ── Highlighted section (disclaimer) ── */
.legal-section--highlighted {
  background: rgba(229,9,20,.03);
  border: 1px solid rgba(229,9,20,.12);
  border-radius: 16px;
  padding: 32px;
}
.legal-section--highlighted h2 {
  color: #fff; border-bottom-color: rgba(229,9,20,.2);
}

/* ── Disclaimer box ── */
.legal-disclaimer-box {
  display: flex; gap: 18px;
  background: rgba(229,9,20,.06);
  border: 1px solid rgba(229,9,20,.2);
  border-radius: 12px; padding: 22px 24px;
  margin: 18px 0 24px;
}
.ldb-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.ldb-content h3 { margin-top: 0; color: #fff; }
.ldb-content p  { color: #bbb; font-size: 0.92rem; }
.ldb-content ul {
  list-style: none; padding: 0; margin: 10px 0 0;
  display: flex; flex-direction: column; gap: 7px;
}
.ldb-content ul li {
  font-size: 0.9rem; color: #aaa; line-height: 1.6;
  display: flex; align-items: flex-start; gap: 8px;
}
.ldb-content ul li::before {
  content: '▸'; color: var(--accent); flex-shrink: 0; margin-top: 1px;
}

/* ── Contact CTA (section 11) ── */
.legal-contact-cta {
  display: flex; flex-direction: column; gap: 14px;
  margin: 20px 0 24px;
}
.lcc-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 12px; padding: 18px 20px;
}
.lcc-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(59,130,246,.1); color: #3b82f6;
  display: flex; align-items: center; justify-content: center;
}
.lcc-icon--wa { background: rgba(37,211,102,.1); color: #25d366; }
.lcc-item > div { display: flex; flex-direction: column; gap: 3px; }
.lcc-item strong { font-size: 0.88rem; color: #ccc; }
.lcc-item a      { font-size: 0.93rem; color: var(--accent); text-decoration: none; font-weight: 600; }
.lcc-item a:hover{ text-decoration: underline; }
.lcc-item small  { font-size: 0.78rem; color: #666; }

.legal-note {
  font-size: 0.82rem !important;
  color: #555 !important;
  font-style: italic;
  border-top: 1px solid #1e1e1e;
  padding-top: 16px;
  margin-top: 16px !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc    { position: static; }
}
@media (max-width: 600px) {
  .legal-section--highlighted { padding: 20px 16px; }
  .legal-disclaimer-box       { flex-direction: column; gap: 12px; }
  .legal-table th[scope="row"]{ width: 35%; white-space: normal; }
  .legal-hero                 { padding: 120px 0 36px; }
}

/* ============================================================
   POLITIQUE-CONFIDENTIALITE.PHP — Spécifique
   ============================================================ */

/* ── Hero privacy ── */
.privacy-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.privacy-lpd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(70,130,84,.12);
  border: 1px solid rgba(70,130,84,.25);
  color: #5eba70;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.privacy-hero-shield {
  flex-shrink: 0;
  color: rgba(70,130,84,.25);
  opacity: .6;
}

/* ── Privacy Snapshot ── */
.privacy-snapshot-section {
  padding: 48px 0;
  background: #0f0f0f;
  border-bottom: 1px solid #1e1e1e;
}
.privacy-snapshot-title {
  font-size: 1rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 20px;
  text-align: center;
}
.privacy-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.psn-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.psn-card strong { font-size: 0.9rem; color: #e0e0e0; }
.psn-card p      { font-size: 0.82rem; color: #888; line-height: 1.55; margin: 0; }
.psn-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.psn-icon--green { background: rgba(70,130,84,.15); color: #5eba70; }

/* ── No-Logs Box ── */
.privacy-no-logs-box {
  display: flex;
  gap: 20px;
  background: rgba(70,130,84,.07);
  border: 1px solid rgba(70,130,84,.25);
  border-left: 4px solid #5eba70;
  border-radius: 12px;
  padding: 24px 22px;
  margin: 18px 0 22px;
}
.pnl-icon    { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }
.pnl-content h3 { margin-top: 0; color: #fff; }
.pnl-content p  { font-size: 0.92rem; color: #bbb; line-height: 1.7; }
.pnl-content ul {
  list-style: none; padding: 0;
  margin: 12px 0 0;
  display: flex; flex-direction: column; gap: 7px;
}
.pnl-content ul li {
  font-size: 0.9rem; color: #aaa; line-height: 1.55;
  display: flex; align-items: flex-start; gap: 8px;
}
.pnl-content ul li::before {
  content: '✗';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Highlight boxes ── */
.privacy-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 16px 0;
}
.privacy-highlight-box > svg { flex-shrink: 0; margin-top: 2px; }
.privacy-highlight-box strong { display: block; font-size: 0.92rem; margin-bottom: 5px; }
.privacy-highlight-box p      { font-size: 0.88rem; color: #aaa; margin: 0; line-height: 1.6; }

.privacy-highlight-box--green {
  background: rgba(70,130,84,.08);
  border: 1px solid rgba(70,130,84,.2);
}
.privacy-highlight-box--green > svg  { color: #5eba70; }
.privacy-highlight-box--green strong { color: #5eba70; }

.privacy-highlight-box--red {
  background: rgba(229,9,20,.06);
  border: 1px solid rgba(229,9,20,.18);
}
.privacy-highlight-box--red > svg  { color: var(--accent); }
.privacy-highlight-box--red strong { color: #f87171; }

/* ── Rights Grid ── */
.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.prg-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .2s;
}
.prg-card:hover { border-color: #3a3a3a; }
.prg-icon { font-size: 1.5rem; line-height: 1; }
.prg-card h3 { font-size: 0.9rem; color: #ddd; margin: 0; }
.prg-card p  { font-size: 0.82rem; color: #888; line-height: 1.55; margin: 0; }

.privacy-rights-cta {
  background: rgba(229,9,20,.04);
  border: 1px solid rgba(229,9,20,.12);
  border-radius: 12px;
  padding: 20px 22px;
}
.privacy-rights-cta p { font-size: 0.9rem; color: #aaa; line-height: 1.7; margin-bottom: 10px; }
.privacy-rights-cta p:last-child { margin-bottom: 0; }
.privacy-rights-cta a { color: var(--accent); font-weight: 600; text-decoration: none; }
.privacy-rights-cta a:hover { text-decoration: underline; }
.privacy-rights-cta strong { color: #ddd; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .privacy-snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-rights-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .privacy-hero-inner  { flex-direction: column; }
  .privacy-hero-shield { display: none; }
  .privacy-snapshot-grid { grid-template-columns: 1fr 1fr; }
  .privacy-no-logs-box   { flex-direction: column; gap: 12px; }
}
@media (max-width: 540px) {
  .privacy-snapshot-grid { grid-template-columns: 1fr; }
  .privacy-rights-grid   { grid-template-columns: 1fr; }
}

/* ============================================================
   CGV.PHP — Spécifique (réutilise legal-* existant)
   ============================================================ */

/* ── Étapes de commande ── */
.cgv-steps-list {
  list-style: none;
  padding: 0; margin: 18px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.cgv-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 16px 18px;
}
.cgv-step-num {
  width: 30px; height: 30px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.cgv-steps-list strong { display: block; font-size: 0.92rem; color: #e0e0e0; margin-bottom: 4px; }
.cgv-steps-list div    { font-size: 0.88rem; color: #aaa; line-height: 1.6; }
.cgv-steps-list a      { color: var(--accent); font-weight: 600; text-decoration: none; }
.cgv-steps-list a:hover{ text-decoration: underline; }


/* ================================================================
   MOBILE-FIRST RESPONSIVE — Corrections Globales
   Ajouté : Mars 2026 | Mobile Priority
   ================================================================ */

/* ── Navigation : cacher le bouton "Commencer" sur mobile
   (il est déjà présent dans le menu hamburger) ── */
@media (max-width: 640px) {
  .nav-cta { display: none; }
}

/* ── Container : moins de padding sur très petits écrans ── */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
}

/* ── Section padding réduit sur mobile ── */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }
}

/* ── Hero : stats en grille 2×2 sur mobile ── */
@media (max-width: 600px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
  }
  .stat strong { font-size: 1.7rem; }
  .hero-content p { font-size: 1.05rem; }
}
@media (max-width: 360px) {
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
}

/* ── Trust bar : grille 2 colonnes sur mobile ── */
@media (max-width: 680px) {
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    justify-items: start;
  }
}
@media (max-width: 360px) {
  .trust-inner { grid-template-columns: 1fr; }
}

/* ── CTA band : centré et empilé sur mobile ── */
@media (max-width: 768px) {
  .cta-band {
    text-align: center;
    align-items: center;
  }
  .cta-band .badge { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .cta-band { padding: 28px 20px; gap: 20px; }
  .cta-actions { gap: 12px; }
}

/* ── Pricing cards : ordre corrigé (popular en premier) ── */
@media (max-width: 680px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { order: -1; }
}

/* ── Reviews : 1 colonne sur mobile ── */
@media (max-width: 560px) {
  .reviews-grid-lg { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .rating-summary  { padding: 22px 18px; }
  .rating-big      { font-size: 3.5rem; }
}

/* ── Steps (comment ça marche) : 1 colonne sur mobile ── */
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step { padding: 0; }
}

/* ── Blog grid : 1 colonne sur mobile ── */
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-img  { height: 140px; }
}

/* ── Stats band : 1 colonne sur très petits écrans ── */
@media (max-width: 420px) {
  .stats-band-grid { grid-template-columns: 1fr !important; }
  .stat-item { border-bottom: 1px solid var(--border); border-right: none !important; }
  .stat-item:last-child { border-bottom: none; }
}

/* ── Features grid : 1 col sur petits écrans ── */
@media (max-width: 360px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card  { padding: 22px 18px; }
}

/* ── Reading section : overflow-x protection ── */
.reading-inner { overflow-wrap: break-word; word-break: break-word; }

/* ── vs-table : scroll horizontal sur mobile (NE PAS mettre display:block sur <table>) ── */
.vs-table { min-width: 680px; }
.vs-table th { white-space: nowrap; }
/* Le wrapper <div style="overflow-x:auto"> en HTML gère le scroll */

@media (max-width: 640px) {
  .info-box, .success-box { padding: 16px 18px; }
  .reading-inner h2 { margin-bottom: 14px; }
}

/* ── FAQ liste : padding réduit ── */
@media (max-width: 480px) {
  .faq-question { padding: 16px 18px; font-size: 0.92rem; }
  .faq-item.open .faq-answer { padding: 4px 18px 18px; }
}

/* ── Pages légales : masquer TOC sur mobile (trop long) ── */
@media (max-width: 600px) {
  .legal-toc { display: none; }
  .legal-hero { padding: 100px 0 30px; }
  .legal-body { padding: 36px 0 56px; }
  .legal-section { padding-bottom: 28px; }
  .legal-content { gap: 28px; }
  .legal-section h2 { font-size: 1.1rem; }
  .legal-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── Confidentialité : snapshot grid ── */
@media (max-width: 480px) {
  .privacy-snapshot-grid { grid-template-columns: 1fr; }
  .privacy-snapshot-section { padding: 32px 0; }
}

/* ── Footer : améliorations mobile ── */
@media (max-width: 480px) {
  .footer-brand p { font-size: 0.88rem; }
  .footer-col h4  { font-size: 0.85rem; }
  .footer-disc p  { font-size: 0.78rem; }
  .footer-legal   { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
}

/* ── Buttons : taille de tap minimale sur mobile ── */
@media (max-width: 640px) {
  .btn { min-height: 44px; }
  .faq-question { min-height: 48px; }
}

/* ── abonnements.php : grilles de plans ── */
@media (max-width: 640px) {
  .plans-grid        { grid-template-columns: 1fr !important; }
  .plans-grid-multi  { grid-template-columns: 1fr !important; }
  .plan-card.popular { order: -1; }
  .plan-features-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 420px) {
  .plan-features-grid { grid-template-columns: 1fr !important; }
}

/* ── chaines.php / applications.php ── */
@media (max-width: 480px) {
  .channels-hero { padding: 90px 0 36px; }
  .cat-tabs { gap: 6px; }
  .cat-tab  { padding: 6px 12px; font-size: 0.78rem; }
  .channel-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
  .cat-overview-grid { grid-template-columns: 1fr; }
}

/* ── appareils.php ── */
@media (max-width: 480px) {
  .device-featured-grid  { grid-template-columns: 1fr; }
  .device-featured-card  { padding: 22px 18px; }
}

/* ── contact.php ── */
@media (max-width: 640px) {
  .contact-options-grid  { grid-template-columns: 1fr !important; }
  .contact-option        { padding: 28px 22px; }
  .contact-sla-bar       { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 400px) {
  .contact-sla-bar { grid-template-columns: 1fr !important; }
}

/* ── faq.php ── */
@media (max-width: 600px) {
  .faq-filter-tabs   { gap: 6px; }
  .faq-filter-btn    { padding: 8px 14px; font-size: 0.82rem; }
  .faq-quicklinks-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 400px) {
  .faq-quicklinks-grid { grid-template-columns: 1fr !important; }
}

/* ── avis.php ── */
@media (max-width: 640px) {
  .featured-reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid--compact { grid-template-columns: 1fr; }
  .review-featured-card--full { grid-column: auto; }
}

/* ── Global overflow guard ── */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }


/* ================================================================
   HERO — VRAI FOND D'ÉCRAN (image locale)
   ================================================================ */
.hero-bg {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(229,9,20,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 85%, rgba(70,130,84,0.08) 0%, transparent 40%),
    linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.35) 100%),
    url('/assets/img/hero-bg.jpg') center 30% / cover no-repeat;
}

/* ================================================================
   SECTION CATÉGORIES (style euratv — 6 cartes avec images)
   ================================================================ */
.categories-section { padding: 80px 0; background: var(--bg-secondary); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-card {
  position: relative; display: block;
  height: 250px; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  background-image: var(--cat-img);
  background-size: cover; background-position: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
}
.cat-card:hover { transform: scale(1.03); box-shadow: 0 16px 48px rgba(0,0,0,0.7); }

.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.12) 100%);
  transition: background 0.3s ease;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.18) 100%);
}

.cat-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 20px;
}
.cat-card-body h3 {
  font-size: 1.2rem; font-weight: 800; color: #fff;
  margin-bottom: 5px; line-height: 1.25;
}
.cat-card-body p {
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
  line-height: 1.45; margin: 0;
}

.cat-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 3px 10px; border-radius: 12px; margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.35);
}
.cat-badge.live  { background: rgba(229,9,20,0.85);  color: #fff; border-color: var(--accent); }
.cat-badge.vod   { background: rgba(70,130,84,0.75); color: #fff; border-color: #468254; }
.cat-badge.ppv   { background: rgba(124,58,237,0.75);color: #fff; border-color: #7c3aed; }
.cat-badge.swiss { background: rgba(229,9,20,0.65);  color: #fff; border-color: var(--accent); }
.cat-badge.news  { background: rgba(37,99,235,0.75); color: #fff; border-color: #2563eb; }
.cat-badge.music { background: rgba(245,197,24,0.8); color: #000; border-color: #f5c518; }

@media (max-width: 900px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .cat-card { height: 210px; }
}
@media (max-width: 540px) {
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-card { height: 170px; }
  .cat-card-body h3 { font-size: 1rem; }
  .cat-card-body p { display: none; }
}
@media (max-width: 380px) {
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card { height: 160px; }
}

/* ============================================================
   SPORT CINEMA — Cinematic Accordion (spring physics)
   ============================================================ */
.sport-cinema { padding: 80px 0; background: var(--bg-primary); overflow: hidden; }

.sport-accordion {
  display: flex;
  gap: 8px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.sport-slide {
  flex: 1;
  position: relative;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  transition:
    flex 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.35s ease,
    border-radius 0.3s ease;
  filter: brightness(0.4) saturate(0.5);
}
.sport-slide.active {
  flex: 5;
  filter: brightness(1) saturate(1.1);
}

/* Image + Ken Burns */
.sport-slide-img { position: absolute; inset: 0; overflow: hidden; }
.sport-slide-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1);
  transition: transform 0.8s ease;
  will-change: transform;
}
.sport-slide.active .sport-slide-img img { transform: scale(1.07); }

/* Bottom gradient */
.sport-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 45%, transparent 70%);
  pointer-events: none;
}

/* Info panel */
.sport-slide-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease 0.15s, transform 0.25s ease 0.15s;
  white-space: nowrap; overflow: hidden;
}
.sport-slide.active .sport-slide-info { opacity: 1; transform: translateY(0); }
.sport-slide-info h3 {
  font-size: 1.35rem; font-weight: 800; color: #fff;
  margin: 5px 0 0; text-overflow: ellipsis; overflow: hidden;
}
.sport-slide-tag {
  display: inline-block;
  font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 3px 10px; border-radius: 20px;
  background: var(--accent); color: #fff;
}

/* Progress bar */
.sport-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--accent);
  z-index: 3;
  border-radius: 0 2px 0 0;
}
.sport-slide.active .sport-progress {
  animation: sport-bar 4s linear forwards;
}
@keyframes sport-bar { from { width: 0% } to { width: 100% } }
/* duration synced with JS timer (3s) via animation-duration override */
.sport-slide.active .sport-progress { animation-duration: 3s; }

/* Dots navigation */
.sport-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.sport-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s ease, width 0.35s ease, border-radius 0.35s ease;
}
.sport-dot.active {
  background: var(--accent);
  width: 24px; border-radius: 4px;
}

/* Mobile */
@media (max-width: 640px) {
  .sport-cinema { padding: 56px 0; }
  .sport-accordion { height: 270px; gap: 5px; border-radius: 14px; }
  .sport-slide { flex: 0.4; filter: brightness(0.3) saturate(0.3); border-radius: 8px; }
  .sport-slide.active { flex: 4.5; filter: brightness(1) saturate(1.1); }
  .sport-slide-info { padding: 16px 14px; }
  .sport-slide-info h3 { font-size: 1.05rem; }
}
@media (max-width: 400px) {
  .sport-accordion { height: 230px; }
  .sport-slide-info h3 { font-size: 0.95rem; }
}

/* ============================================================
   VISUAL STEPS — Section 6 "3 étapes" avec images sport
   ============================================================ */
.steps-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.step-v {
  position: relative;
  min-height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background-image: var(--sv-img);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.step-v:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.65); }
.step-v-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.12) 100%);
}
.step-v-body { position: relative; z-index: 1; padding: 28px 24px; }
.step-v-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff; font-size: 1.2rem; font-weight: 900;
  margin-bottom: 14px;
  box-shadow: 0 0 0 4px rgba(229,9,20,0.3);
}
.step-v-body h3 { color: #fff; font-size: 1.15rem; font-weight: 800; margin: 0 0 8px; }
.step-v-body p  { color: rgba(255,255,255,0.72); font-size: 0.86rem; line-height: 1.55; margin: 0; }

@media (max-width: 768px) { .steps-visual { grid-template-columns: 1fr; gap: 14px; } .step-v { min-height: 220px; } }
@media (max-width: 480px) { .step-v { min-height: 190px; } .step-v-body { padding: 20px 18px; } }

/* ============================================================
   CONTENT TYPE CARDS — Section 7 Live/VOD/Replay
   ============================================================ */
.ct-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.ct-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.55); }
.ct-card-img { height: 150px; overflow: hidden; }
.ct-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
.ct-card:hover .ct-card-img img { transform: scale(1.06); }
.ct-card-body { padding: 18px 16px; }
.ct-card-body h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin: 8px 0 6px; }
.ct-card-body p  { color: var(--text-3); font-size: 0.8rem; line-height: 1.5; margin: 0; }
.ct-tag {
  display: inline-block;
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px;
  padding: 3px 9px; border-radius: 20px;
}
.ct-tag--live   { background: rgba(229,9,20,0.2);  color: var(--accent);   border: 1px solid rgba(229,9,20,0.4); }
.ct-tag--vod    { background: rgba(37,99,235,0.2); color: #60a5fa;         border: 1px solid rgba(37,99,235,0.4); }
.ct-tag--replay { background: rgba(16,185,129,0.2);color: #34d399;         border: 1px solid rgba(16,185,129,0.4); }

@media (max-width: 640px) { .ct-cards { grid-template-columns: 1fr; } .ct-card-img { height: 130px; } }

/* ============================================================
   IPTV HIGHLIGHTS — Section 8 stat cards après le tableau
   ============================================================ */
.iptv-hl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.iptv-hl-card {
  position: relative;
  min-height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background-image: var(--hlc-img);
  background-size: cover;
  background-position: center;
}
.iptv-hl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(229,9,20,0.82) 0%, rgba(0,0,0,0.7) 100%);
}
.iptv-hl-body {
  position: relative; z-index: 1;
  padding: 28px 22px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.iptv-hl-num  { font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; }
.iptv-hl-sub  { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.85); margin: 6px 0 10px; text-transform: uppercase; letter-spacing: 0.8px; }
.iptv-hl-body p { color: rgba(255,255,255,0.65); font-size: 0.8rem; line-height: 1.45; margin: 0; }

@media (max-width: 640px) { .iptv-hl { grid-template-columns: 1fr; gap: 12px; } .iptv-hl-card { min-height: 150px; } .iptv-hl-num { font-size: 1.7rem; } }

/* ============================================================
   APPAREILS.PHP — VISUAL ENHANCEMENTS
   ============================================================ */

/* ------ Hero with background image ------ */
.channels-hero--img {
  position: relative;
  background-image: var(--ch-img);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.channels-hero-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(10,10,20,0.70) 50%,
    rgba(229,9,20,0.18) 100%);
  z-index: 0;
}
.channels-hero--img .container {
  position: relative;
  z-index: 1;
}

/* ------ Device card image banner ------ */
.device-card-img {
  position: relative;
  width: 100%;
  height: 160px;
  background-image: var(--dci);
  background-size: cover;
  background-position: center;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  flex-shrink: 0;
}
.device-card-img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(229,9,20,0.22) 60%,
    rgba(0,0,0,0.55) 100%);
}
.device-card {
  display: flex;
  flex-direction: column;
}

/* ------ Guide section image banner ------ */
.guide-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: var(--gb-img);
  background-size: cover;
  background-position: center 30%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
}
.guide-banner-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.78) 0%,
    rgba(229,9,20,0.25) 100%);
}
.guide-banner-label {
  position: relative;
  z-index: 1;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* ------ Decision guide grid ------ */
.decide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}
.decide-card {
  position: relative;
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background-image: var(--dcard-img);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.decide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.70);
}
.decide-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.93) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.10) 100%);
}
.decide-card-body {
  position: relative;
  z-index: 1;
  padding: 22px 20px;
}
.decide-card-body h3 {
  margin: 6px 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.decide-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
  margin: 0;
}
.decide-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(229,9,20,0.30);
  border: 1px solid rgba(229,9,20,0.55);
  color: #ff6b6b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* 5th card spans full width on 3-col grid */
.decide-grid .decide-card:nth-child(4) {
  grid-column: span 1;
}
.decide-grid .decide-card:nth-child(5) {
  grid-column: span 1;
}

/* Responsive — tablet */
@media (max-width: 900px) {
  .decide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .decide-grid .decide-card:nth-child(5) {
    grid-column: span 2;
  }
}

/* Responsive — mobile */
@media (max-width: 600px) {
  .device-card-img { height: 130px; }
  .guide-banner { height: 240px; }
  .guide-banner-label { font-size: 0.95rem; padding: 14px 16px; }
  .decide-grid {
    grid-template-columns: 1fr;
  }
  .decide-grid .decide-card:nth-child(5) {
    grid-column: span 1;
  }
  .decide-card { min-height: 200px; }
}

/* ============================================================
   CHAINES.PHP — VISUAL ENHANCEMENTS
   ============================================================ */

/* ------ Bouquets overview cards with image backgrounds ------ */
.cat-ov--img {
  position: relative;
  background-image: var(--coi);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: none !important;
}
.coi-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.18) 100%);
  transition: background 0.35s ease;
}
.coi-ov--red {
  background: linear-gradient(to top,
    rgba(120,0,0,0.92) 0%,
    rgba(229,9,20,0.45) 55%,
    rgba(0,0,0,0.18) 100%);
}
.cat-ov--img:hover .coi-ov {
  background: linear-gradient(to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.72) 55%,
    rgba(0,0,0,0.30) 100%);
}
.coi-body {
  position: relative;
  z-index: 1;
}
/* Keep text white over image */
.cat-ov--img .coi-body h3,
.cat-ov--img .coi-body p,
.cat-ov--img .coi-body .cat-count,
.cat-ov--img .coi-body .cat-icon {
  color: #fff;
}
.cat-ov--img .coi-body .cat-count {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}
.cat-ov--accent .coi-body .cat-count {
  background: rgba(229,9,20,0.35);
  border-color: rgba(229,9,20,0.55);
}

/* ------ Sport mini-banners (above each sport h3) ------ */
.sport-mini-banner {
  position: relative;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  background-image: var(--smb);
  background-size: cover;
  background-position: center;
  margin: 28px 0 6px;
  display: flex;
  align-items: flex-end;
}
.smb-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(229,9,20,0.30) 100%);
}
.smb-label {
  position: relative;
  z-index: 1;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 600px) {
  .sport-mini-banner { height: 220px; }
  .smb-label { font-size: 0.85rem; padding: 8px 12px; }
}

/* ============================================================
   APPLICATIONS.PHP — VISUAL ENHANCEMENTS
   ============================================================ */

/* ------ App section hero banners ------ */
.app-hero-banner {
  position: relative;
  width: 100%;
  height: 320px;
  background-image: var(--ahb-img);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
}
.ahb-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.50) 50%,
      rgba(0,0,0,0.10) 100%),
    var(--ahb-color, rgba(0,0,0,0.40));
}
.ahb-body {
  position: relative;
  z-index: 1;
  padding: 28px 32px;
  width: 100%;
}
.ahb-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.90);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ahb-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.ahb-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Ken Burns subtle zoom on hover */
.app-hero-banner:hover {
  transform: none;
}
.app-hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--ahb-img);
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  transform: scale(1);
  z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
  .app-hero-banner { height: 220px; border-radius: 14px; }
  .ahb-title { font-size: 1.4rem; }
  .ahb-body { padding: 20px 18px; }
}
@media (max-width: 480px) {
  .app-hero-banner { height: 180px; }
  .ahb-title { font-size: 1.2rem; }
}

/* ============================================================
   APP LOGOS — BANNERS & SECTION HEADERS
   ============================================================ */

/* Logo dans la bannière (ahb-body) */
.ahb-logo {
  height: 72px;
  width: auto;
  max-width: 160px;
  border-radius: 16px;
  margin-bottom: 16px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.55));
}

/* Deux logos côte à côte */
.ahb-logos-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.ahb-logos-row .ahb-logo {
  margin-bottom: 0;
  height: 60px;
}

/* Logo dans app-section-header */
.app-section-logo {
  height: 60px;
  width: auto;
  max-width: 140px;
  border-radius: 14px;
  margin-bottom: 14px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}

/* ── Mobile-first ────────────────────────────── */
@media (max-width: 768px) {
  .ahb-logo          { height: 56px; max-width: 120px; border-radius: 12px; }
  .ahb-logos-row .ahb-logo { height: 48px; }
  .app-section-logo  { height: 48px; max-width: 110px; }
  .ahb-title         { font-size: 1.5rem; }
  .ahb-body          { padding: 18px 16px; }
}
@media (max-width: 480px) {
  .ahb-logo          { height: 48px; border-radius: 10px; }
  .ahb-logos-row .ahb-logo { height: 40px; }
  .ahb-logos-row     { gap: 10px; }
  .app-section-logo  { height: 40px; }
  .ahb-title         { font-size: 1.25rem; }
}

/* ============================================================
   APP BANNER — LOGO SHOWCASE (redesign)
   ============================================================ */
.app-hero-banner--logo {
  background-image: none !important;
  background: radial-gradient(ellipse at 50% 40%,
    var(--ahb-color, rgba(100,100,100,0.15)) 0%,
    #0a0a14 65%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px 24px 24px;
  min-height: 340px;
  height: auto;
}
/* Logo(s) display area */
.ahb-logo-display {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0 24px;
  flex: 1;
}
.ahb-logo-display img {
  height: 190px;
  width: auto;
  max-width: 45%;
  border-radius: 28px;
  object-fit: contain;
  filter: drop-shadow(0 10px 36px rgba(0,0,0,0.55));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.app-hero-banner--logo:hover .ahb-logo-display img {
  transform: scale(1.05);
  filter: drop-shadow(0 14px 40px rgba(0,0,0,0.7));
}
/* Info strip at bottom */
.ahb-info-strip {
  width: 100%;
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ahb-info-strip .ahb-badge  { margin-bottom: 8px; }
.ahb-info-strip .ahb-title  { font-size: 1.65rem; }
.ahb-info-strip .ahb-sub    { margin-top: 6px; }

/* ── Mobile-first ─────────────────────────── */
@media (max-width: 768px) {
  .app-hero-banner--logo {
    min-height: 270px;
    padding: 24px 16px 18px;
  }
  .ahb-logo-display img {
    height: 140px;
    border-radius: 22px;
  }
  .ahb-logo-display { gap: 24px; }
  .ahb-info-strip .ahb-title { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .app-hero-banner--logo { min-height: 230px; padding: 20px 12px 16px; }
  .ahb-logo-display img  { height: 110px; max-width: 44%; border-radius: 18px; }
  .ahb-logo-display      { gap: 16px; }
  .ahb-info-strip .ahb-title { font-size: 1.1rem; }
  .ahb-info-strip .ahb-sub   { font-size: 0.78rem; }
}

/* ============================================================
   APP BANNER v3 — LOGO FILLS THE BANNER
   ============================================================ */

/* ── Single logo : logo = fond CSS ─────────── */
.app-hero-banner--logobg {
  background-image:
    linear-gradient(to top,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.30) 38%,
      rgba(0,0,0,0.10) 65%,
      rgba(0,0,0,0.30) 100%),
    var(--ahb-accent, rgba(80,80,80,0.15)),
    var(--ahb-logo);
  background-size: cover, cover, contain;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-color: #090910;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 340px;
  height: auto;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}
.app-hero-banner--logobg .ahb-info-strip {
  padding: 22px 28px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.app-hero-banner--logobg .ahb-title { font-size: 1.6rem; }

/* ── Dual logo : split panel ────────────────── */
.app-hero-banner--dual {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  grid-template-rows: 1fr auto;
  min-height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: #090910;
  position: relative;
}
.ahb-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 20px 24px;
  position: relative;
  background: radial-gradient(ellipse at 50% 40%,
    var(--ahb-accent, rgba(100,100,100,0.15)) 0%,
    transparent 70%);
  overflow: hidden;
}
.ahb-panel img {
  width: 100%;
  max-width: 180px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  border-radius: 22px;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.6));
  transition: transform 0.4s ease;
}
.app-hero-banner--dual:hover .ahb-panel img {
  transform: scale(1.06);
}
.ahb-panel-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}
.ahb-panel-sep {
  width: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
  grid-row: 1;
}
.ahb-dual-strip {
  grid-column: 1 / -1;
  padding: 18px 28px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ahb-dual-strip .ahb-title { font-size: 1.45rem; }
.ahb-dual-strip .ahb-badge { margin-bottom: 6px; }

/* ── Mobile-first ─────────────────────────── */
@media (max-width: 768px) {
  .app-hero-banner--logobg { min-height: 260px; }
  .app-hero-banner--logobg .ahb-info-strip { padding: 16px 18px; }
  .app-hero-banner--logobg .ahb-title { font-size: 1.3rem; }

  .app-hero-banner--dual { min-height: 260px; }
  .ahb-panel img { max-width: 130px; max-height: 120px; border-radius: 16px; }
  .ahb-panel { padding: 20px 12px 16px; }
  .ahb-dual-strip { padding: 14px 16px; }
  .ahb-dual-strip .ahb-title { font-size: 1.15rem; }
}
@media (max-width: 480px) {
  .app-hero-banner--logobg { min-height: 210px; }
  .app-hero-banner--dual { min-height: 210px; }
  .ahb-panel img { max-width: 100px; max-height: 95px; border-radius: 14px; }
  .ahb-panel { padding: 14px 8px 12px; gap: 8px; }
  .ahb-panel-name { font-size: 0.72rem; }
  .ahb-dual-strip .ahb-title { font-size: 1rem; }
  .ahb-dual-strip { padding: 12px 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   ABONNEMENTS — HERO background image
   ═══════════════════════════════════════════════════════════════ */
.pricing-hero--img {
  position: relative;
  overflow: hidden;
}
.ph-bg-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(229,9,20,0.14) 0%, transparent 55%),
    url('/assets/img/cat-films.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
.pricing-hero--img .container {
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   QUE VAS-TU REGARDER ? — Deux accordions Films + Sport
   ═══════════════════════════════════════════════════════════════ */
.wat-section {
  background: #06060d;
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}
/* Rail label (title above each accordion) */
.wat-rail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}
.wat-rail-icon { font-size: 1.3rem; }
.wat-rail-link {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-left: auto;
  text-decoration: none;
}
.wat-rail-link:hover { text-decoration: underline; }
.wat-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(229,9,20,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.wat-section .container {
  position: relative;
  z-index: 2;
}
.wat-header {
  text-align: center;
  margin-bottom: 52px;
}
.wat-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #e50914 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  line-height: 1.1;
}
.wat-sub {
  color: rgba(255,255,255,0.50);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
/* Sport landscape card overrides */
.content-card--sport { width: 260px; }
.content-card-poster--sport { height: 165px; }
.wat-cta-row {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
/* Mobile */
@media (max-width: 640px) {
  .wat-title { font-size: 1.9rem; }
  .wat-section { padding: 56px 0 40px; }
  .wat-header { margin-bottom: 32px; }
  .content-card--sport { width: 200px; }
  .content-card-poster--sport { height: 128px; }
}
