/* =========================================
   IPTV Smarters Pro — style.css
   Design : Blanc / Bleu / Teal — Pro
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --primary:       #1a6dff;
  --primary-dark:  #0052cc;
  --teal:          #00c4b4;
  --teal-dark:     #009e91;
  --accent:        #ff6b35;
  --text:          #0d1120;
  --text-light:    #5a6780;
  --bg:            #ffffff;
  --bg-alt:        #f5f7ff;
  --bg-teal:       #f0fffe;
  --bg-dark:       #0d1120;
  --border:        #e4e8f2;
  --shadow:        0 4px 24px rgba(26, 109, 255, 0.07);
  --shadow-hover:  0 10px 40px rgba(26, 109, 255, 0.16);
  --radius:        14px;
  --radius-btn:    50px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--text-light);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  line-height: 1.25;
}

h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.5px;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

h3 {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}

p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1rem;
}

strong {
  font-weight: 700;
  color: var(--primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--primary-dark); }

ul, ol { padding-left: 1.25rem; }

li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

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

/* =========================================
   LAYOUT
   ========================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 90px 0; }

section.bg-alt { background: var(--bg-alt); }

section.bg-dark {
  background: var(--bg-dark);
  color: white;
}

section.bg-dark h2,
section.bg-dark h3,
section.bg-dark p,
section.bg-dark li { color: white; }

.section-divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  margin: 0.75rem auto 2.75rem;
  border-radius: 2px;
}

/* =========================================
   HEADER
   ========================================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26, 109, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img { height: 36px; width: auto; }

.logo-text {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.5px;
}

.logo-text span { color: var(--primary); }

nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li { margin: 0; }

nav ul li a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.2s;
}

nav ul li a:hover { color: var(--primary); }

.btn-header {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(26, 109, 255, 0.28);
}

.btn-header:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26, 109, 255, 0.38);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav ul li { margin: 0; }

.mobile-nav ul li a {
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-btn);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(26, 109, 255, 0.32);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 30px rgba(26, 109, 255, 0.42);
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 196, 180, 0.28);
}

.btn-secondary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-lg {
  padding: 1.1rem 2.6rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
}

/* =========================================
   HERO — ACCUEIL (fond clair)
   ========================================= */
#hero {
  background: linear-gradient(160deg, #f5f7ff 0%, #eef3ff 60%, #f0fffe 100%);
  color: var(--text);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(26, 109, 255, 0.09) 0%, transparent 68%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 196, 180, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 109, 255, 0.08);
  border: 1px solid rgba(26, 109, 255, 0.2);
  color: var(--primary);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 1.5rem;
}

#hero h1 {
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 760px;
}

#hero h1 span { color: var(--accent); }

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 640px;
}

.hero-subtitle strong { color: var(--primary); }

/* badges dans le hero (spans directs) */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(26, 109, 255, 0.06);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-cta-link {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.hero-cta-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* HERO court (offre, blog, légales) */
#hero-short,
.hero-short {
  background: linear-gradient(160deg, #f5f7ff 0%, #eef3ff 100%);
  color: var(--text);
  padding: 70px 0 60px;
  text-align: center;
}

#hero-short h1,
.hero-short h1 {
  color: var(--text);
  margin-bottom: 0.75rem;
}

#hero-short .hero-subtitle,
.hero-short .hero-subtitle {
  color: var(--text-light);
  margin: 0 auto;
  text-align: center;
  max-width: 640px;
}

#hero-short .hero-overline,
.hero-short .hero-overline {
  color: var(--primary);
}

.hero-short-inner { text-align: center; }

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.25);
  color: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.25rem;
  display: inline-block;
}

/* =========================================
   STATS BAND
   ========================================= */
#stats {
  background: linear-gradient(90deg, var(--primary) 0%, #0a4fcf 50%, var(--teal) 100%);
  padding: 55px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 0.3rem;
  display: block;
}

/* =========================================
   FEATURES / AVANTAGES
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 109, 255, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.feature-card p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--text-light);
}

/* =========================================
   POURQUOI NOUS
   ========================================= */
.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pourquoi-item {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}

.pourquoi-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.pourquoi-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

/* =========================================
   TÉMOIGNAGES
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.78;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* =========================================
   BLOG CARDS
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  padding: 1.75rem;
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 109, 255, 0.18);
  transform: translateY(-4px);
}

/* cibler les spans dans blog-card-meta */
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* .blog-category (classe réelle dans le HTML) */
.blog-category {
  background: rgba(26, 109, 255, 0.08);
  color: var(--primary);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* .blog-date (classe réelle dans le HTML) */
.blog-date {
  font-size: 0.775rem;
  color: var(--text-light);
}

.blog-card h3 {
  font-size: 0.975rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  color: var(--text);
}

.blog-excerpt {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

/* .blog-read-more (classe réelle dans le HTML) */
.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.blog-read-more:hover { gap: 0.6rem; }

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

/* =========================================
   ABOUT SEO
   ========================================= */
#about-seo { background: var(--bg-alt); }
#about-seo h2 { text-align: left; }
#about-seo .section-divider { margin-left: 0; }

.about-seo-content {
  max-width: 820px;
}

/* =========================================
   OFFRE CARD (page offre)
   ========================================= */
.offer-card-wrapper {
  max-width: 720px;
  margin: 2rem auto;
}

.offer-card {
  background: linear-gradient(135deg, var(--primary) 0%, #0a4fcf 50%, var(--teal-dark) 100%);
  border-radius: 20px;
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(26, 109, 255, 0.3);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.offer-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.offer-price span {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.offer-features li {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
}

/* =========================================
   CHECKOUT FORM
   ========================================= */
.checkout-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.925rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 109, 255, 0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6780' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

/* =========================================
   HOW IT WORKS (comment ça marche)
   ========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-item { text-align: center; padding: 1.5rem; }

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px rgba(26, 109, 255, 0.25);
}

.step-item h3 { margin-bottom: 0.5rem; font-size: 0.975rem; }

/* =========================================
   PAIEMENTS
   ========================================= */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.payment-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: white;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-alt); }

.faq-icon {
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--primary); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: white;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p { font-size: 0.875rem; margin: 0; }

/* =========================================
   TABLE DES MATIÈRES
   ========================================= */
.toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0 3rem;
  max-width: 620px;
}

.toc-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  display: block;
}

.toc ol { margin: 0; padding-left: 1.25rem; }
.toc li { margin-bottom: 0.4rem; }
.toc li a { font-size: 0.875rem; color: var(--primary); }
.toc li a:hover { text-decoration: underline; }

/* hero-toc (page SEO longue) */
.hero-toc {
  margin-top: 1.5rem;
}

.hero-toc ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-toc ul li { margin: 0; }

.hero-toc ul li a {
  display: inline-block;
  background: rgba(26, 109, 255, 0.08);
  border: 1px solid rgba(26, 109, 255, 0.18);
  color: var(--primary);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.hero-toc ul li a:hover {
  background: var(--primary);
  color: white;
}

/* =========================================
   BREADCRUMB
   ========================================= */
nav.breadcrumb-nav { margin-bottom: 1rem; }

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
}

.breadcrumb li { margin: 0; color: var(--text-light); }
.breadcrumb li a { color: var(--primary); }
.breadcrumb li a:hover { color: var(--primary-dark); }
.breadcrumb li span.sep { color: var(--border); }
.breadcrumb li.current { color: var(--text-light); }

/* =========================================
   ARTICLE CONTENT
   ========================================= */
.article-content {
  max-width: 820px;
  margin: 0 auto;
}

.article-content h2 {
  text-align: left;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.article-content h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  margin-top: 0.5rem;
  border-radius: 2px;
}

.article-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-content ul,
.article-content ol { margin-bottom: 1.25rem; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.825rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cta-article {
  background: linear-gradient(135deg, var(--primary), var(--teal-dark));
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  color: white;
  margin: 3rem 0;
}

.cta-article h2 {
  color: white !important;
  text-align: center;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.cta-article h2::after { display: none; }

.cta-article p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

/* =========================================
   WHATSAPP WIDGET
   ========================================= */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.3s;
  font-size: 1.6rem;
}

.whatsapp-widget a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo .logo-text { color: white; }
.footer-logo .logo-text span { color: var(--teal); }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.3);
}

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .offer-features { grid-template-columns: 1fr; }
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 640px) {
  section { padding: 65px 0; }
  #hero { padding: 80px 0 65px; }
  #hero-short { padding: 55px 0 45px; }

  nav { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pourquoi-grid { grid-template-columns: 1fr; }

  .hero-badges { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .offer-card { padding: 2rem 1.5rem; }
  .checkout-form { padding: 1.75rem 1.25rem; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.3rem; }

  .hero-toc ul { flex-direction: column; }
}

/* =========================================
   UTILITIES
   ========================================= */
.text-center { text-align: center; }
.text-white { color: white !important; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
