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

/* Futura Bold — utilise la police système si disponible,
   sinon Century Gothic (clone quasi-identique), puis Trebuchet MS */
@font-face {
  font-family: 'Futura';
  src: local('Futura Bold'), local('Futura-Bold'), local('Futura Md BT Bold');
  font-weight: 700 800;
  font-style: normal;
}

:root {
  --black:        #0a0a0a;
  --white:        #ffffff;
  --off:          #f8f6f1;
  --cream:        #f1ece2;
  --accent:       #e8500a;
  --accent-d:     #c43d05;
  --text:         #1a1a1a;
  --muted:        #6b6b6b;
  --light:        #a0a0a0;
  --border:       #e0dbd0;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --ff-display:   'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  --ff-body:      'DM Sans', sans-serif;
}

html  { scroll-behavior: smooth; }
body  { font-family: var(--ff-body); color: var(--text); background: var(--off); font-size: 16px; line-height: 1.65; }

a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; }
.container       { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container.narrow{ max-width: 760px; }
.container.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--black); color: #fff;
  text-align: center; padding: 10px 20px;
  font-size: 13px; letter-spacing: .01em;
}

/* ===== NAV ===== */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.logo { font-family: var(--ff-display); font-size: 22px; font-weight: 800; color: var(--black); }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--accent); }
.btn-nav {
  background: var(--accent); color: #fff;
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 500; transition: background .2s;
}
.btn-nav:hover { background: var(--accent-d); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 16px 36px; border-radius: 10px;
  font-family: var(--ff-display); font-size: 16px; font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s; cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,80,10,.3); }
.btn-primary.large { padding: 20px 48px; font-size: 18px; }

.btn-secondary {
  display: inline-block; background: transparent; color: var(--accent);
  padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 500;
  border: 2px solid var(--accent); transition: all .2s;
}
.btn-secondary:hover { background: var(--accent); color: #fff; }

/* ===== HERO ===== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; padding: 80px 40px;
  max-width: 1200px; margin: 0 auto;
}
.badge-hero {
  display: inline-block;
  background: rgba(232,80,10,.1); color: var(--accent);
  border: 1px solid rgba(232,80,10,.2);
  padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-family: var(--ff-display); font-size: 62px; font-weight: 800;
  line-height: 1.05; color: var(--black); margin-bottom: 20px;
}
.hero-content h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 18px; color: var(--muted); font-weight: 300; margin-bottom: 36px; }
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.social-proof-mini { display: flex; align-items: center; gap: 8px; }
.stars-mini { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.social-proof-mini span { font-size: 13px; color: var(--muted); }

/* Hero visual */
.hero-visual { position: relative; }
.product-showcase {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center; gap: 28px;
  min-height: 260px;
}
.before-bloc, .after-bloc { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cable-mess { display: flex; gap: 6px; align-items: flex-end; }
.cable { width: 5px; border-radius: 3px; }
.cable.c1 { height: 55px; background: #3b82f6; transform: rotate(-12deg); }
.cable.c2 { height: 40px; background: #e0e0e0; border: 1px solid #ccc; transform: rotate(8deg); }
.cable.c3 { height: 65px; background: #1a1a1a; transform: rotate(-4deg); }
.cable.c4 { height: 48px; background: #ef4444; transform: rotate(16deg); }
.state-label { font-size: 13px; font-weight: 600; }
.state-label.bad  { color: var(--muted); }
.state-label.good { color: #22c55e; }
.arrow-big { font-size: 28px; color: var(--muted); font-weight: 700; }
.clip-stack { display: flex; flex-direction: column; gap: 6px; }
.clip {
  width: 52px; height: 20px; background: var(--black); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.c-dot { width: 5px; height: 14px; border-radius: 2px; display: block; }
.c-dot.blue  { background: #3b82f6; }
.c-dot.white { background: #e0e0e0; border: 1px solid #ccc; }
.c-dot.dark  { background: #555; }

.floating-tag {
  position: absolute;
  background: var(--black); color: #fff;
  padding: 7px 16px; border-radius: 50px; font-size: 12px; font-weight: 500;
  white-space: nowrap; animation: float 3s ease-in-out infinite;
}
.t1 { bottom: -12px; left: -16px; }
.t2 { top: -12px; right: -16px; animation-delay: 1.5s; }
@keyframes float { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-8px) } }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--black); display: flex; justify-content: center;
  gap: 48px; padding: 16px 40px; flex-wrap: wrap;
}
.trust-item { color: rgba(255,255,255,.8); font-size: 13px; }

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; color: var(--accent); margin-bottom: 12px;
}

/* ===== WHY SECTION ===== */
.why-section { padding: 96px 0; background: var(--cream); }
.why-section h2 { font-family: var(--ff-display); font-size: 38px; font-weight: 800; max-width: 600px; line-height: 1.2; margin-bottom: 48px; }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pain-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  border: 1px solid var(--border); transition: transform .2s, box-shadow .2s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pain-icon { font-size: 36px; margin-bottom: 14px; }
.pain-card h3 { font-family: var(--ff-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pain-card p  { font-size: 14px; color: var(--muted); }

/* ===== PRODUCT SECTION ===== */
.product-section { padding: 96px 0; background: var(--off); }
.product-big-visual {
  background: var(--white); border-radius: var(--radius-lg); padding: 56px 40px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 320px; position: relative;
}
.pv-base { width: 200px; height: 14px; background: var(--black); border-radius: 7px; }
.pv-clips {
  display: flex; gap: 36px; margin-bottom: -7px;
}
.pv-clip {
  width: 28px; height: 18px; background: #333; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.pv-clip.active { background: var(--accent); }
.pv-cable { width: 4px; height: 60px; border-radius: 2px; margin-top: -60px; }
.product-visual-wrap { display: flex; flex-direction: column; gap: 16px; }
.product-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pbadge {
  background: var(--cream); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 50px; font-size: 13px; color: var(--muted);
}
.product-info h2 { font-family: var(--ff-display); font-size: 46px; font-weight: 800; margin-bottom: 12px; }
.product-desc { font-size: 17px; color: var(--muted); font-weight: 300; margin-bottom: 32px; }
.feats { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.feats li { display: flex; gap: 14px; }
.feats li > span { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.feats li > div { font-size: 15px; color: var(--muted); }
.feats li > div strong { display: block; color: var(--text); font-size: 15px; margin-bottom: 2px; }

/* ===== PACKS ===== */
.packs-section { padding: 96px 0; background: var(--cream); }
.packs-section h2 { font-family: var(--ff-display); font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.section-sub { color: var(--muted); font-size: 16px; margin-bottom: 48px; }

.packs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
.pack-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 2px solid var(--border); position: relative; transition: transform .2s, box-shadow .2s;
}
.pack-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pack-card.featured {
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 12px 48px rgba(232,80,10,.15);
}
.pack-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pack-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 4px 18px; border-radius: 50px; font-size: 12px; font-weight: 700;
  white-space: nowrap;
}
.pack-name { font-family: var(--ff-display); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.pack-qty  { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.pack-pricing { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.price     { font-family: var(--ff-display); font-size: 38px; font-weight: 800; color: var(--accent); }
.price-old { font-size: 18px; color: var(--light); text-decoration: line-through; }
.pack-unit { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pack-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.pack-list li { font-size: 14px; color: var(--text); }
.pack-list li.dim   { color: var(--light); }
.pack-list li.green { color: #16a34a; font-weight: 500; }

.btn-pack {
  display: block; width: 100%; padding: 14px;
  border-radius: 10px; font-size: 15px; font-weight: 600; text-align: center;
  border: 2px solid var(--accent); color: var(--accent); background: transparent;
  transition: all .2s; cursor: pointer;
}
.btn-pack:hover { background: var(--accent); color: #fff; }
.btn-pack.primary { background: var(--accent); color: #fff; }
.btn-pack.primary:hover { background: var(--accent-d); border-color: var(--accent-d); }

.guarantees-row {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  padding: 24px; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.g-item { font-size: 14px; color: var(--muted); }
.g-item strong { color: var(--text); }

/* ===== STEPS ===== */
.steps-section { padding: 96px 0; background: var(--black); }
.steps-section .section-label { color: rgba(232,80,10,.9); }
.steps-section h2 { font-family: var(--ff-display); font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 52px; }
.steps-row { display: flex; align-items: flex-start; gap: 24px; }
.step-item { flex: 1; }
.step-n {
  font-family: var(--ff-display); font-size: 68px; font-weight: 800;
  color: rgba(255,255,255,.1); line-height: 1; margin-bottom: 12px;
}
.step-item h3 { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-item p  { font-size: 15px; color: rgba(255,255,255,.55); }
.step-sep { font-size: 28px; color: var(--accent); flex-shrink: 0; margin-top: 24px; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 96px 0; background: var(--off); }
.reviews-section h2 { font-family: var(--ff-display); font-size: 42px; font-weight: 800; margin-bottom: 8px; }
.stars-big { color: #f59e0b; font-size: 28px; margin-bottom: 40px; letter-spacing: 3px; }
.reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border);
}
.rv-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rv-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--black); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
}
.rv-header strong { display: block; font-size: 14px; }
.rv-header small  { font-size: 12px; color: var(--muted); }
.rv-stars { color: #f59e0b; margin-bottom: 10px; }
.review-card p { font-size: 14px; color: var(--muted); font-style: italic; line-height: 1.7; }

/* ===== FAQ ===== */
.faq-section { padding: 96px 0; background: var(--cream); }
.faq-section h2 { font-family: var(--ff-display); font-size: 42px; font-weight: 800; margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; padding: 18px 24px; background: none; border: none;
  font-family: var(--ff-body); font-size: 16px; font-weight: 500; color: var(--text);
  text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
}
.faq-q:hover { background: var(--off); }
.faq-q span  { color: var(--accent); font-weight: 700; transition: transform .3s; }
.faq-a { display: none; padding: 0 24px 18px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 96px 0; background: var(--off); }
.urgency-pill {
  display: inline-block;
  background: rgba(232,80,10,.1); color: var(--accent);
  padding: 6px 20px; border-radius: 50px; font-size: 14px;
  margin-bottom: 20px;
}
.final-cta h2 { font-family: var(--ff-display); font-size: 46px; font-weight: 800; margin-bottom: 14px; }
.final-cta p  { font-size: 18px; color: var(--muted); margin-bottom: 32px; }
.final-trust  { display: flex; justify-content: center; gap: 28px; margin-top: 22px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-grid > div > p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer-col h4 { font-family: var(--ff-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a  { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col p  { font-size: 14px; color: rgba(255,255,255,.45); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; text-align: center; font-size: 13px; color: rgba(255,255,255,.25); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.hero-content { animation: fadeUp .65s ease both; }
.hero-visual   { animation: fadeUp .65s .15s ease both; }

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .hero                 { grid-template-columns:1fr; padding:48px 24px; }
  .hero-content h1      { font-size:42px; }
  .container.two-col    { grid-template-columns:1fr; }
  .packs-grid           { grid-template-columns:1fr; }
  .pack-card.featured   { transform:none; }
  .pain-grid            { grid-template-columns:1fr; }
  .reviews-grid         { grid-template-columns:1fr; }
  .steps-row            { flex-direction:column; }
  .step-sep             { transform:rotate(90deg); align-self:center; }
  .footer-grid          { grid-template-columns:1fr 1fr; }
  .nav-links            { display:none; }
  .trust-bar            { gap:16px; }
  .guarantees-row       { flex-direction:column; align-items:center; gap:16px; }
}
