/* ============================================================
   CodePro IPTV - Feuille de style principale
   ============================================================ */

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

:root {
  --red:      #E63946;
  --red-dk:   #c9333f;
  --blue:     #2575FC;
  --blue-dk:  #1a5fd9;
  --gradient: linear-gradient(135deg, #E63946 0%, #2575FC 100%);
  --green:    #E63946;
  --black:    #000001;
  --dark:     #0a0a0a;
  --dark2:    #111111;
  --dark3:    #1a1a1a;
  --border:   rgba(255,255,255,.08);
  --text:     #ffffff;
  --text-muted: rgba(255,255,255,.65);
  --radius:   8px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cabin', Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-green { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-green  { background: var(--gradient); color: #fff; border: none; }
.btn-green:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(230,57,70,.3); }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-ghost  { background: rgba(255,255,255,.06); color: #fff; border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── Nav ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,1,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.5px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--red); background: rgba(230,57,70,.1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(0,0,1,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #000001;
  z-index: 0;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,.1);
  border: 1px solid rgba(230,57,70,.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-devices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}
.hero-device svg { width: 32px; height: 32px; opacity: .8; }

/* ── Features ── */
/* ── Features ── */
.features { background: var(--dark2); }

.feat-header-block { margin-bottom: 56px; }
.feat-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

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

.feature-card {
  position: relative;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37,117,252,.35);
  box-shadow: 0 20px 60px rgba(37,117,252,.1), 0 0 0 1px rgba(37,117,252,.15);
}
.feat-card-highlight {
  border-color: rgba(230,57,70,.25);
  background: linear-gradient(160deg, rgba(230,57,70,.06) 0%, var(--dark3) 60%);
}
.feat-card-highlight:hover {
  border-color: rgba(230,57,70,.5);
  box-shadow: 0 20px 60px rgba(230,57,70,.12), 0 0 0 1px rgba(230,57,70,.2);
}

/* Top gradient accent bar */
.feat-top-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(37,117,252,0));
  border-radius: 20px 20px 0 0;
}
.feat-accent-red {
  background: linear-gradient(90deg, var(--red), rgba(230,57,70,0));
}

/* Top row: icon + badge */
.feat-row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feature-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: rgba(37,117,252,.1);
  border: 1px solid rgba(37,117,252,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.feat-icon-red {
  background: rgba(230,57,70,.1);
  border-color: rgba(230,57,70,.15);
}

.feat-stat-badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--blue);
  background: rgba(37,117,252,.1);
  border: 1px solid rgba(37,117,252,.2);
  border-radius: 6px;
  padding: 5px 10px;
}
.feat-badge-red {
  color: var(--red);
  background: rgba(230,57,70,.1);
  border-color: rgba(230,57,70,.2);
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  color: #fff;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Bottom pill tag */
.feat-bottom { margin-top: auto; }
.feat-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(37,117,252,.9);
  background: rgba(37,117,252,.08);
  border: 1px solid rgba(37,117,252,.18);
  border-radius: 50px;
  padding: 5px 14px;
}
.feat-pill-red {
  color: var(--red);
  background: rgba(230,57,70,.08);
  border-color: rgba(230,57,70,.2);
}

/* ── Ticker / Brands ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,.4);
  letter-spacing: -.3px;
  white-space: nowrap;
  transition: var(--transition);
}
.ticker-item:hover { color: var(--red); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { border-color: rgba(230,57,70,.4); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(230,57,70,.08); }
.pricing-card.popular {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(230,57,70,.06) 0%, var(--dark3) 100%);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.pricing-duration {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup { font-size: 22px; vertical-align: super; }
.pricing-price-note { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { width: 100%; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }
.pricing-ready { font-size: 11px; color: var(--text-muted); margin-top: 12px; }

/* ── Section Title ── */
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── How it Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--blue), var(--red));
  opacity: .3;
}
.step-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { border-color: rgba(230,57,70,.3); }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; margin-top: 48px; }
.faq-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(230,57,70,.3); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  user-select: none;
  gap: 12px;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(230,57,70,.1);
  border: 1px solid rgba(230,57,70,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 18px;
  font-weight: 300;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gradient); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(230,57,70,.12) 0%, rgba(37,117,252,.08) 100%);
  border: 1px solid rgba(230,57,70,.2);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
}
.cta-banner .section-title { margin-bottom: 16px; }
.cta-banner p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Countries ── */
.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  justify-content: center;
}
.country-tag {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.country-tag svg { flex-shrink: 0; color: var(--red); opacity: .7; }
.country-tag:hover { border-color: rgba(230,57,70,.4); color: var(--red); }

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-card {
  text-align: center;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 20px;
}
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-muted); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(230,57,70,.3); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-role { font-size: 12px; color: var(--text-muted); }

/* ── Page Header ── */
.page-header {
  padding: 140px 24px 60px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(230,57,70,.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { font-family: 'Inter', sans-serif; font-size: clamp(32px, 5vw, 56px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 16px; }
.page-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── Product Page ── */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
}
.product-info .price-tag {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 16px 0;
}
.product-info .price-tag sup { font-size: 26px; vertical-align: super; }
.product-info .price-note { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.feature-list { margin: 24px 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li span.check { color: var(--red); font-size: 18px; font-weight: 700; }
.product-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.product-img-wrap img { width: 100%; }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: rgba(230,57,70,.3); transform: translateY(-4px); }
.blog-img {
  height: 200px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 10px;
}
.blog-title { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.contact-info-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.contact-info-card h3 { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border-bottom: none; }
.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(230,57,70,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-method h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-method p { font-size: 13px; color: var(--text-muted); }
.contact-form-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.contact-form-card h3 { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #fff;
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-control:focus { border-color: rgba(37,117,252,.6); background: rgba(37,117,252,.04); }
.form-control::placeholder { color: rgba(255,255,255,.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
select.form-control { cursor: pointer; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.about-img-wrap img { width: 100%; }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,57,70,.1) 0%, rgba(37,117,252,.1) 100%);
}
.about-text h2 { font-family: 'Inter', sans-serif; font-size: 38px; font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; line-height: 1.2; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.value-item {
  background: rgba(230,57,70,.04);
  border: 1px solid rgba(230,57,70,.15);
  border-radius: 10px;
  padding: 16px;
}
.value-item .vi-icon { font-size: 24px; margin-bottom: 8px; }
.value-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.value-item p { font-size: 12px; color: var(--text-muted); }

/* ── Footer ── */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom a:hover { color: var(--red); }
.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-badge {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  cursor: pointer;
  transition: var(--transition);
  z-index: 900;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── Notification ── */
.notification {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--dark3);
  border: 1px solid rgba(230,57,70,.4);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  z-index: 800;
  animation: slideIn .4s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.notif-icon { font-size: 24px; flex-shrink: 0; }
.notif-text { font-size: 13px; color: var(--text-muted); }
.notif-text strong { color: #fff; display: block; font-size: 14px; margin-bottom: 2px; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark3);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 13px; color: var(--text-muted); max-width: 720px; line-height: 1.6; }
.cookie-banner p a { color: var(--red); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .hero h1 { letter-spacing: -1px; }
  .features-grid, .steps-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .product-hero { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .cta-banner { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Boutons — texte long lisible sur mobile */
  .btn { white-space: normal; text-align: center; line-height: 1.3; }
  .navbar .btn { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }
  
  /* Menu mobile — styles prioritaires pour bouton vert */
  .mobile-menu .btn-green { 
    color: #fff !important; 
    background: var(--gradient) !important;
    border: none !important;
    width: 100%;
  }
  .mobile-menu .btn-green:hover { 
    opacity: .88 !important; 
    background: var(--gradient) !important;
    color: #fff !important;
  }

  /* Page produit — boutons CTA empilés en colonne */
  .product-cta-btns { flex-direction: column; }
  .product-cta-btns .btn { width: 100%; flex: none !important; min-width: 0 !important; }

  /* Prix produit — taille ajustée */
  .product-info .price-tag { font-size: 48px; }

  /* Formulaire de commande — padding réduit */
  #commander { padding: 24px 18px !important; }

  /* Trust bar boutique — espacement réduit */
  .trust-bar-inner { gap: 16px !important; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }

  /* Boutons encore plus compacts */
  .btn-lg { padding: 13px 18px; font-size: 14px; }
  .navbar .btn { padding: 10px 14px; font-size: 13px; }
}


/* ╔ INLINE FROM SOURCE ╗ */
/* ── inline depuis index.html ── */
/* =========================================
   APPLE / LINEAR INSPIRED BENTO UI
========================================= */
.bento-section {
  padding: 40px 0 100px;
  background: #000;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.bento-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, rgba(37,117,252,0.03) 40%, rgba(0,0,0,0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.bento-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.bento-header {
  text-align: center;
  margin-bottom: 80px;
}

.bento-header h2 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-header p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #a1a1aa;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 400;
}

.bento-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 340px;
  gap: 20px;
}

.bento-card-ui {
  background: rgba(20, 20, 24, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card-ui:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Card 1: 59K Channels (Massive left focus) */
.bc-1 {
  grid-column: span 8;
  grid-row: span 2;
  justify-content: space-between;
  background: radial-gradient(120% 120% at 100% 100%, rgba(20,20,25,1) 0%, rgba(5,5,8,1) 100%);
}

.bc-1-number {
  font-size: clamp(7rem, 15vw, 16rem);
  line-height: 0.75;
  font-weight: 800;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: -10px;
}
.bc-1-number span { font-size: 0.4em; color: #E63946; letter-spacing: 0; vertical-align: top; margin-left:-20px; }

.bc-content {
  position: relative;
  z-index: 2;
}

.bc-1 .bc-content {
  max-width: 60%;
}

.bc-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.bc-desc {
  color: #a1a1aa;
  font-size: 1.15rem;
  line-height: 1.5;
}

/* Card 2: 4K/8K Peak Resolution */
.bc-2 {
  grid-column: span 4;
  grid-row: span 1;
  background: linear-gradient(135deg, rgba(30,30,40,0.5) 0%, rgba(10,10,15,0.8) 100%);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bc-2-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background: rgba(37,117,252,0.05);
  border: 1px solid rgba(37,117,252,0.2);
  border-radius: 50%;
  margin-bottom: 24px;
}
.bc-2-graphic::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(230,57,70,0.3);
  border-radius: 50%;
  animation: spin 10s linear infinite;
}
.bc-2-graphic span {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
}

/* Card 3: Uptime 99.9% */
.bc-3 {
  grid-column: span 4;
  grid-row: span 1;
  background: rgba(230,57,70,0.02);
  justify-content: space-between;
}

.bc-3-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pulse-badge {
  background: rgba(230,57,70,0.15);
  color: #E63946;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(230,57,70,0.2);
}
.pulse-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #E63946;
  border-radius: 50%;
  box-shadow: 0 0 10px #E63946;
  animation: pulse-dot 2s infinite ease-in-out;
}

.uptime-chart {
  width: 100%;
  height: 60px;
  margin-top: 20px;
}
.uptime-chart path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 3s forwards ease-in-out;
}

/* Card 4: 115 Countries */
.bc-4 {
  grid-column: span 6;
  grid-row: span 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right:0;
}

.bc-4 .bc-content {
  flex: 1;
  max-width: 60%;
}

.bc-4-flags {
  position: relative;
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.bc-4-flags .flag {
  font-size: 4rem;
  position: absolute;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
  animation: float-flags 5s infinite ease-in-out alternate;
}
.bc-4-flags .flag:nth-child(1) { right: 80px; top: 30%; z-index:3; font-size:4.5rem; }
.bc-4-flags .flag:nth-child(2) { right: 20px; top: 10%; z-index:2; animation-delay: -2s; opacity:0.8;}
.bc-4-flags .flag:nth-child(3) { right: 40px; bottom: 10%; z-index:4; animation-delay: -4s; }

/* Card 5: Guarantee */
.bc-5 {
  grid-column: span 6;
  grid-row: span 1;
  background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.shield-3d {
  position: absolute;
  right: -20px;
  top: -20px;
  opacity: 0.15;
  transform: rotate(15deg);
  pointer-events: none;
}
.shield-3d svg { width: 260px; height: 260px; fill: #fff; }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes float-flags {
  0% { transform: translateY(0) rotate(-5deg); }
  100% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes pulse-dot { 0%,100% { opacity:0.5; transform:scale(0.8); } 50% { opacity:1; transform:scale(1.2); } }
@keyframes draw-line { to { stroke-dashoffset: 0; } }

@media (max-width: 1024px) {
  .bc-1 { grid-column: span 12; }
  .bc-2, .bc-3 { grid-column: span 6; }
}

@media (max-width: 768px) {
  .bento-header h2 { font-size: clamp(2.2rem, 8vw, 3rem); margin-bottom: 16px; }
  .bento-header p { font-size: 1rem; }
  .bento-grid-wrapper { display: flex; flex-direction: column; }
  .bento-card-ui { min-height: 280px; padding: 24px; border-radius: 20px; }
  .bc-1 .bc-content, .bc-4 .bc-content { max-width: 100%; }
  .bc-1-number { font-size: clamp(4.5rem, 15vw, 6rem); margin-bottom: 16px; margin-left: 0; }
  .bc-1-number span { margin-left: -5px; }
  .bc-4 { flex-direction: column; align-items: flex-start; padding-right: 24px;}
  .bc-4-flags { width:100%; height:auto; position:relative; margin-top:20px; padding-bottom: 10px; justify-content:center; }
  .bc-4-flags .flag { position:static; animation:none; margin:0 -5px; font-size: 3rem; }
  .bc-2-graphic { width: 100px; height: 100px; }
  .bc-2-graphic span { font-size: 2.2rem; }
  .shield-3d { right: -20px; top: -20px; opacity: 0.1; }
  .shield-3d svg { width: 180px; height: 180px; }
}

/* ── inline depuis index.html ── */
/* Reset hero-bg image, now pure animated */
  .hero-bg {
    position: absolute;
    inset: 0;
    background: #000001;
    z-index: 0;
    overflow: hidden;
  }

  /* Particle canvas */
  #heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  /* Aurora orbs */
  .hb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    z-index: 2;
    animation: hbOrbFloat linear infinite alternate;
    pointer-events: none;
  }
  .hb-orb-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(230,57,70,.28) 0%, rgba(230,57,70,.05) 70%);
    top: -220px; left: -180px;
    animation-duration: 18s; animation-delay: 0s;
  }
  .hb-orb-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37,117,252,.26) 0%, rgba(37,117,252,.04) 70%);
    bottom: -180px; right: -150px;
    animation-duration: 22s; animation-delay: -7s;
  }
  .hb-orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139,31,255,.2) 0%, transparent 70%);
    top: 35%; left: 45%;
    animation-duration: 16s; animation-delay: -11s;
  }
  .hb-orb-4 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(230,57,70,.15) 0%, rgba(37,117,252,.1) 60%, transparent 80%);
    top: 10%; right: 20%;
    animation-duration: 25s; animation-delay: -4s;
  }

  @keyframes hbOrbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(40px, -50px) scale(1.08); }
    50%  { transform: translate(-30px, 30px) scale(.94); }
    75%  { transform: translate(50px, 20px) scale(1.05); }
    100% { transform: translate(-20px, -40px) scale(.97); }
  }

  /* Animated grid */
  .hb-grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(230,57,70,.055) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37,117,252,.055) 1px, transparent 1px);
    background-size: 70px 70px;
    animation: hbGridShift 20s linear infinite;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
  }
  @keyframes hbGridShift {
    0%   { background-position: 0 0; }
    100% { background-position: 70px 70px; }
  }

  /* Vignette overlay to darken edges and boost contrast */
  .hb-vignette {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
      radial-gradient(ellipse 100% 100% at 50% 50%, transparent 30%, rgba(0,0,1,.75) 100%),
      linear-gradient(to bottom, rgba(0,0,1,.4) 0%, transparent 25%, transparent 70%, rgba(0,0,1,.95) 100%);
  }

  /* Red horizontal scan line that sweeps top→bottom */
  .hb-vignette::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(230,57,70,.6), rgba(37,117,252,.5), transparent);
    box-shadow: 0 0 18px 4px rgba(230,57,70,.35);
    animation: hbScanline 7s linear infinite;
    opacity: .7;
  }
  @keyframes hbScanline {
    0%   { top: -2px; opacity: 0; }
    5%   { opacity: .7; }
    95%  { opacity: .7; }
    100% { top: 100%; opacity: 0; }
  }

/* ── inline depuis contact.html ── */
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}

/* ── Pages légales (mentions, confidentialité, cookies) ── */
.legal-section { margin-bottom: 36px; }
.legal-section h2 { font-family:'Inter',sans-serif; font-size:20px; font-weight:700; color:var(--red); margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid var(--border); }
.legal-section h3 { font-size:16px; font-weight:700; margin:16px 0 8px; }
.legal-section p, .legal-section li { font-size:14px; color:var(--text-muted); margin-bottom:10px; }
.legal-section ul { padding-left:20px; list-style:disc; }
.legal-section a { color:var(--red); }
.legal-section strong { color:#fff; }
.cookie-type-card { background:rgba(255,255,255,.04); border:1px solid var(--border); border-radius:10px; padding:20px; margin-bottom:12px; }
.cookie-type-card h4 { font-size:15px; font-weight:700; margin-bottom:6px; display:flex; align-items:center; gap:8px; }

/* ── Blog card as <a> link ── */
a.blog-card { text-decoration: none; color: inherit; }

/* ── Blog — Article vedette ── */
.featured-card:hover { border-color: rgba(230,57,70,.5) !important; transform: translateY(-2px); }
@media (max-width: 768px) {
  .featured-card { grid-template-columns: 1fr !important; }
  .featured-card > div:first-child { min-height: 180px !important; }
}

/* ── Reviews grid & cards ── */
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:32px}
.review-card{background:var(--dark3);border:1px solid var(--border);border-radius:16px;padding:28px;display:flex;flex-direction:column;gap:14px;transition:var(--transition)}
.review-card:hover{border-color:rgba(230,57,70,.35);transform:translateY(-3px)}
.review-stars{color:#f5c518;font-size:18px;letter-spacing:2px}
.review-text{color:var(--text-muted);font-size:14px;line-height:1.75;flex:1}
.review-author{display:flex;align-items:center;gap:12px}
.review-avatar{width:42px;height:42px;border-radius:50%;background:var(--gradient);display:flex;align-items:center;justify-content:center;font-family:'Inter',sans-serif;font-weight:800;font-size:18px;color:#000;flex-shrink:0}
.review-author strong{display:block;font-size:14px;color:#fff}
.review-author span{font-size:12px;color:var(--text-muted)}
@media(max-width:900px){.reviews-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.reviews-grid{grid-template-columns:1fr}}