 /* ═══════════════════════════════════════════════
   devenir-vendeur-makwab.css — makwab 2025
═══════════════════════════════════════════════ */
:root {
  --primary: #F87B1B;
  --primary-light: #FFEBDB;
  --primary-dark: #d96510;
  --secondary: #111;
  --bg: #fff;
  --muted: #6b7280;
  --white: #fff;
  --transition: 0.3s ease;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(15,20,30,0.09);
}
 
* { box-sizing: border-box; margin: 0; padding: 0; }
 
body {
  font-family: 'Quicksand', sans-serif;
  background: var(--bg);
  color: var(--secondary);
  line-height: 1.6;
  scroll-behavior: smooth;
}
 
a { text-decoration: none; color: inherit; }
 
/* ── BOUTONS ── */
.btn-cta {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  border: 2px solid var(--primary);
  padding: .85rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-cta:hover {
  background: #fff;
  color: var(--primary) !important;
}
 
/* ── HERO ── */
.hero-wrapper {
  background: var(--primary);
  padding: 3rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 1rem;
}
.hero {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 1000px;
  margin: auto;
}
.hero h1 { font-size: 2.6rem; color: var(--primary); margin-bottom: 1rem; }
.hero p  { font-size: 1.1rem; color: var(--muted); margin-bottom: 1.5rem; }
 
/* ── SECTIONS ORANGE ── */
.orange-section {
  background: var(--primary);
  padding: 4rem 2rem;
  color: #fff;
  margin-bottom: 1rem;
  border-radius: 20px;
}
.orange-section .section-title { color: #fff; }
.orange-section p, .orange-section li { color: #fff; font-weight: 500; }
.orange-section .card {
  background: #fff;
  color: #111;
  font-weight: 500;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.orange-section .card:hover { transform: translateY(-5px); }
 
h2.section-title {
  text-align: center;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 2rem;
  font-size: 2rem;
}
 
/* ── CARDS GRID ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.card img { max-width: 100%; border-radius: 12px; margin-bottom: 0.8rem; }
 
/* ── LISTES ── */
ul { list-style: none; padding-left: 0; margin-top: 1rem; }
ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
}
ul li::before { content: "⭐"; position: absolute; left: 0; }
 
/* ═══════════════════════════════════════════════
   SECTIONS PRODUIT (QR Physique & QR Gravé)
═══════════════════════════════════════════════ */
.product-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.product-section.visible {
  opacity: 1;
  transform: translateY(0);
}
 
.product-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
 
.product-badge {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 1rem;
}
 
.badge-dark {
  background: var(--secondary);
  color: #fff;
}
 
.product-intro {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.95;
  text-align: center;
}
 
/* ── GRILLE 2 COLONNES ── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
 
.product-col {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
}
 
.highlight-col {
  background: rgba(255,255,255,0.22);
  border: 2px solid rgba(255,255,255,0.5);
}
 
.col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.3);
}
 
/* ── FEATURE LIST ── */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: 0.55rem 0 0.55rem 1.8rem;
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 0.97rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,0.25);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  top: 0.65rem;
  line-height: 1;
  text-align: center;
}
 
/* ── TARGETS GRID ── */
.targets-block {
  margin-bottom: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
 
.targets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
}
 
.target-card {
  background: #fff;
  color: #111;
  border-radius: var(--radius);
  padding: 1.3rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.target-card:hover { transform: translateY(-4px); }
.target-card strong { display: block; margin: 0.4rem 0 0.25rem; font-size: 1rem; color: var(--primary); }
.target-card span { font-size: 0.82rem; color: var(--muted); }
 
.target-card-dark {
  background: var(--secondary);
  color: #fff;
}
.target-card-dark strong { color: var(--primary); }
.target-card-dark span   { color: rgba(255,255,255,0.75); }
 
/* ── FINANCE BLOCK ── */
.finance-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.15);
  border-left: 4px solid #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 1rem;
}
.finance-icon { font-size: 2rem; flex-shrink: 0; }
.finance-text { color: #fff; font-weight: 500; font-size: 1rem; line-height: 1.7; }
.finance-text strong { color: #fff; font-weight: 700; }
 
/* ── TRIPLE AVANTAGE (QR Gravé) ── */
.triple-avantage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.triple-avantage.visible { opacity: 1; transform: translateY(0); }
 
.avantage-item {
  background: rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform var(--transition);
}
.avantage-item:hover { transform: translateY(-5px); }
.avantage-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.avantage-item h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.7rem; }
.avantage-item p  { color: rgba(255,255,255,0.9); font-size: 0.92rem; line-height: 1.6; }
 
/* ── SECTION QR GRAVÉ (fond légèrement différent) ── */
.qr-grave-section {
  background: linear-gradient(135deg, #e06c10 0%, #F87B1B 60%, #f99240 100%);
}
 
/* ═══════════════════════════════════════════════
   TABLEAU PACKS — amélioré
═══════════════════════════════════════════════ */
.table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(15,20,30,0.15);
}
 
.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-weight: 500;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 650px;
}
 
.table-wrapper th {
  padding: 16px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
 
.table-wrapper td {
  padding: 15px 14px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  color: #222;
  vertical-align: middle;
}
 
.table-wrapper thead {
  background: var(--secondary);
  color: #fff;
}
 
.table-wrapper tbody tr { transition: background var(--transition); }
.table-wrapper tbody tr:hover { background: var(--primary-light); }
.table-wrapper tbody tr:nth-child(even) { background: #fafafa; }
.table-wrapper tbody tr:nth-child(even):hover { background: var(--primary-light); }
 
/* Ligne mise en avant (Avancé) */
.row-highlight td { background: #fff8f2 !important; }
.row-highlight:hover td { background: var(--primary-light) !important; }
 
/* Ligne Élite */
.row-elite td {
  background: #111 !important;
  color: #fff !important;
}
.row-elite:hover td { background: #222 !important; }
.row-elite .remarque-cell { color: rgba(255,255,255,0.85) !important; }
 
/* Badges pack */
.pack-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.pack-essai   { background: #e5e7eb; color: #374151; }
.pack-starter { background: #dbeafe; color: #1d4ed8; }
.pack-avance  { background: var(--primary-light); color: var(--primary-dark); }
.pack-perf    { background: #d1fae5; color: #065f46; }
.pack-elite   { background: #F87B1B; color: #fff; }
 
/* Badges marge */
.marge-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  white-space: nowrap;
}
.marge-top  { background: #d1fae5; color: #065f46; }
.marge-elite { background: #F87B1B; color: #fff; }
 
.prix-cell { font-weight: 700; color: var(--secondary); white-space: nowrap; }
.remarque-cell { font-size: 0.88rem; color: var(--muted); }
 
/* ── ENCADRÉ MOTIVANT ── */
.encadre-motivant {
  background: var(--primary-light);
  padding: 22px 24px;
  margin-top: 25px;
  border-radius: var(--radius);
  color: #111;
  font-weight: 500;
  text-align: center;
  font-size: 1rem;
  border-left: 5px solid var(--primary);
}
.encadre-motivant strong { color: var(--primary); font-weight: 700; }
 
/* ── CTA PACK ── */
.cta-pack {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 25px;
  font-weight: 700;
  border-radius: 12px;
  text-align: center;
  margin-top: 20px;
  transition: all var(--transition);
  border: 2px solid #fff;
}
.cta-pack:hover { background: #fff; color: var(--primary); border-color: var(--primary); }
 
/* ═══════════════════════════════════════════════
   AVANTAGES GRID (3 colonnes enrichies)
═══════════════════════════════════════════════ */
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.avantages-grid.visible { opacity: 1; transform: translateY(0); }
 
.avantage-full-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}
.avantage-full-card:hover { transform: translateY(-5px); }
.avantage-full-icon { font-size: 2.5rem; margin-bottom: 0.7rem; }
.avantage-full-card h3 { color: var(--primary); font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.avantage-list { list-style: none; padding: 0; text-align: left; }
.avantage-list li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
  color: #333;
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
}
.avantage-list li:last-child { border-bottom: none; }
.avantage-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
 
/* ── GAINS CARDS ── */
.gains-card { position: relative; overflow: hidden; }
.gains-rythme  { font-size: 0.95rem; color: var(--muted); font-weight: 600; margin-bottom: 0.3rem; }
.gains-montant { font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.gains-periode { font-size: 0.85rem; color: var(--muted); }
 
/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  transition: transform var(--transition);
}
.testimonial:hover { transform: translateY(-4px); }
 
/* ── FOOTER ── */
.makwab-footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.makwab-footer .footer-logo img { width: 100px; margin-bottom: 1rem; }
.makwab-footer .footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.makwab-footer .footer-links a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.makwab-footer .footer-links a:hover { text-decoration: underline; }
 
/* ── LIGHTBOX ── */
.makwab-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.makwab-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}
 
/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .product-grid    { grid-template-columns: 1fr; }
  .triple-avantage { grid-template-columns: 1fr; }
}
 
@media (max-width: 768px) {
  .hero h1  { font-size: 2rem; }
  .cards    { grid-template-columns: 1fr; }
  .targets-grid { grid-template-columns: repeat(2, 1fr); }
  .orange-section { padding: 3rem 1rem; }
  .table-wrapper th, .table-wrapper td { padding: 12px 8px; font-size: 0.88rem; }
  .encadre-motivant { font-size: 0.95rem; padding: 16px; }
}
 
@media (max-width: 480px) {
  .hero h1  { font-size: 1.6rem; }
  .targets-grid { grid-template-columns: 1fr; }
  .table-wrapper th, .table-wrapper td { font-size: 0.82rem; padding: 10px 6px; }
  .avantages-grid { grid-template-columns: 1fr; }
  .finance-block { flex-direction: column; }
}



.product-intro{

  line-height:1.9;
  
  font-size:1.08rem;
  
  }
  
  
  .encadre-motivant{
  
  font-size:1.05rem;
  
  }
  
  
  .table-wrapper table{
  
  font-size:.95rem;
  
  }
  
  
  .row-highlight td{
  
  font-weight:600;
  
  }
  
  
  .pack-badge{
  
  letter-spacing:.06em;
  
  }