/* ═══════════════════════════════════════════════
   ONEFORNADA — Pop / Affiche
   Jaune #F7E83C · Noir #0d0d0d · Vert #8DC63F · Blanc #fff
   ═══════════════════════════════════════════════ */

:root {
  --yellow: #F7E83C;
  --black:  #0d0d0d;
  --green:  #8DC63F;
  --white:  #ffffff;
  --grey:   #f0f0f0;
  --fd: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --fm: 'Inter', Arial, sans-serif;
}

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: var(--fm); overflow-x: hidden; }

/* ── UTILS ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 56px;
  background: var(--black);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  border-bottom: 3px solid var(--yellow);
}

.nav-logo img { height: 32px; display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color .15s;
}
.nav-links a:hover { color: var(--yellow); }

.btn-nav {
  background: var(--yellow);
  color: var(--black);
  border: none; cursor: pointer;
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 8px 20px;
  display: inline-block;
  text-decoration: none;
  transition: background .15s;
}
.btn-nav:hover { background: #ffe800; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; }

.mobile-nav {
  display: none; position: fixed;
  top: 56px; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 99;
  padding: 32px; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white); text-decoration: none;
  font-family: var(--fd); font-size: 2.5rem; font-weight: 900;
  text-transform: uppercase; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav .btn-nav { margin-top: 20px; text-align: center; font-size: 1.2rem; padding: 14px; }

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .burger { display: block; }
}

/* ── HERO ── */
.hero {
  background: var(--yellow);
  padding-top: 56px;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
}

.hero-left {
  padding: 64px 48px 64px 64px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 3px solid var(--black);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--black); opacity: .55;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .88;
  color: var(--black);
  letter-spacing: -.01em;
}

.hero-title .strike {
  text-decoration: line-through;
  opacity: .25;
}

.hero-title .outline {
  -webkit-text-stroke: 3px var(--black);
  color: transparent;
}

.hero-bottom {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 2px solid var(--black);
  margin-top: 32px;
}

.btn-hero {
  background: var(--black); color: var(--yellow);
  border: none; cursor: pointer;
  font-family: var(--fd); font-size: 1.4rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em;
  padding: 14px 32px;
  transition: transform .15s;
}
.btn-hero:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--black); background: var(--black); }

.hero-sub {
  font-size: .88rem;
  color: rgba(0,0,0,.55);
  line-height: 1.5;
  max-width: 280px;
}

/* Hero right — le certificat */
.hero-right {
  background: var(--black);
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
}

.cert-header {
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 32px;
}

.cert-rien {
  font-family: var(--fd);
  font-size: 7rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: .85;
  margin-bottom: 8px;
}

.cert-sub { font-size: .82rem; color: rgba(255,255,255,.35); margin-bottom: 32px; }

.cert-price {
  font-family: var(--fd);
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.cert-num {
  font-size: .65rem; color: rgba(255,255,255,.2);
  font-family: monospace; margin-bottom: 28px;
}

.cert-stamps { display: flex; flex-direction: column; gap: 6px; }
.cert-stamp {
  font-size: .72rem; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 8px;
}
.cert-stamp::before { content: '✓'; color: var(--green); font-weight: 700; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { min-height: 300px; }
  .hero-left { padding: 40px 24px; }
  .hero-title { font-size: clamp(4rem, 14vw, 7rem); }
}

/* ── TICKER ── */
.ticker {
  background: var(--black);
  overflow: hidden; padding: 10px 0;
  border-top: 3px solid var(--yellow);
}
.ticker-track {
  display: flex; gap: 0;
  animation: tick 22s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--fd);
  font-size: .9rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--white); padding: 0 20px;
  flex-shrink: 0;
}
.ticker-item.sep { color: var(--yellow); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PLANS ── */
.plans-section { background: var(--white); padding: 80px 0; }

.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 3px solid var(--black); padding-bottom: 16px; margin-bottom: 40px;
  flex-wrap: wrap; gap: 12px;
}

.section-label {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; text-transform: uppercase; color: var(--black);
}

.section-count { font-size: .82rem; color: #888; font-weight: 500; }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); }

.plan-card {
  border: 2px solid var(--black);
  border-left: none;
  padding: 32px 28px;
  position: relative;
  transition: background .15s;
}
.plan-card:first-child { border-left: 2px solid var(--black); }
.plan-card.featured { background: var(--black); }
.plan-card:hover:not(.featured) { background: var(--grey); }

.plan-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: .65rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 16px;
}

.plan-name {
  font-family: var(--fd);
  font-size: 1.8rem; font-weight: 900;
  text-transform: uppercase;
  color: var(--black); line-height: 1; margin-bottom: 8px;
}
.plan-card.featured .plan-name { color: var(--yellow); }

.plan-price {
  font-family: var(--fd);
  font-size: 3.5rem; font-weight: 900;
  color: var(--black); line-height: 1; margin-bottom: 2px;
}
.plan-card.featured .plan-price { color: var(--white); }

.plan-freq { font-size: .78rem; color: #888; margin-bottom: 24px; }
.plan-card.featured .plan-freq { color: rgba(255,255,255,.4); }

.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.plan-features li {
  font-size: .85rem; color: #444;
  display: flex; align-items: center; gap: 8px;
}
.plan-features li::before { content: '—'; color: var(--green); font-weight: 700; }
.plan-card.featured .plan-features li { color: rgba(255,255,255,.6); }
.plan-card.featured .plan-features li::before { color: var(--yellow); }

.btn-plan {
  width: 100%; border: 2px solid var(--black);
  background: transparent; color: var(--black);
  font-family: var(--fd); font-size: 1.1rem; font-weight: 900;
  text-transform: uppercase; cursor: pointer; padding: 12px;
  transition: all .15s;
}
.btn-plan:hover { background: var(--black); color: var(--yellow); }
.plan-card.featured .btn-plan { border-color: var(--yellow); color: var(--yellow); }
.plan-card.featured .btn-plan:hover { background: var(--yellow); color: var(--black); }

@media (max-width: 768px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { border-left: 2px solid var(--black); border-top: none; }
  .plan-card:first-child { border-top: 2px solid var(--black); }
}

/* ── WHY — section noire ── */
.why-section { background: var(--black); padding: 80px 0; }
.why-section .section-label { color: var(--yellow); }
.why-section .section-header { border-color: rgba(255,255,255,.15); }
.why-section .section-count { color: rgba(255,255,255,.3); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }

.why-card {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.why-card:nth-child(3n) { border-right: none; }
.why-card:nth-child(n+4) { border-bottom: none; }

.why-num {
  font-family: var(--fd);
  font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,.08);
  line-height: 1; margin-bottom: 12px;
}

.why-title {
  font-family: var(--fd);
  font-size: 1.3rem; font-weight: 900;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 8px;
}

.why-desc { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.6; }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── IMPACT — section jaune ── */
.impact-section { background: var(--yellow); padding: 80px 0; }

.impact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.impact-title {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; text-transform: uppercase;
  color: var(--black); line-height: .9; margin-bottom: 20px;
}

.impact-desc { font-size: .92rem; color: rgba(0,0,0,.6); line-height: 1.6; margin-bottom: 28px; }

.btn-black {
  display: inline-block;
  background: var(--black); color: var(--yellow);
  font-family: var(--fd); font-size: 1.1rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em;
  padding: 12px 28px; text-decoration: none;
  transition: transform .15s;
  border: none; cursor: pointer;
}
.btn-black:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--black); }

.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--black); border: 2px solid var(--black); }
.impact-stat { background: var(--yellow); padding: 28px 24px; }
.impact-val {
  font-family: var(--fd); font-size: 3rem; font-weight: 900;
  color: var(--black); line-height: 1; margin-bottom: 4px;
}
.impact-label { font-size: .78rem; color: rgba(0,0,0,.5); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

@media (max-width: 768px) {
  .impact-inner { grid-template-columns: 1fr; }
}

/* ── COMPTEUR ── */
.counter-section {
  background: var(--white);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  padding: 60px 0; text-align: center;
}
.counter-big {
  font-family: var(--fd);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900; text-transform: uppercase;
  color: var(--black); line-height: .85;
}
.counter-big span { color: var(--green); }
.counter-sub {
  font-size: .88rem; color: #888; margin-top: 12px; text-transform: uppercase;
  letter-spacing: .1em; font-weight: 600;
}

/* ── TOP ACHETEURS ── */
.buyers-section { background: var(--white); padding: 80px 0; }

.buyers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 2px solid var(--black); }

.buyers-col { padding: 32px; }
.buyers-col:first-child { border-right: 2px solid var(--black); }

.buyers-col-title {
  font-family: var(--fd); font-size: 1.4rem; font-weight: 900;
  text-transform: uppercase; margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--black);
}

table { width: 100%; border-collapse: collapse; }
th {
  text-align: left; padding: 8px 0; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #999;
  border-bottom: 1px solid #eee;
}
td { padding: 10px 0; font-size: .88rem; border-bottom: 1px solid #eee; color: #333; }
tr:last-child td { border-bottom: none; }
.rank { font-family: var(--fd); font-size: 1.1rem; font-weight: 900; color: var(--black); width: 30px; }
.rank-1 { color: #c8a200; }
.rank-2 { color: #888; }
.rank-3 { color: #9e5a2a; }

@media (max-width: 640px) {
  .buyers-grid { grid-template-columns: 1fr; }
  .buyers-col:first-child { border-right: none; border-bottom: 2px solid var(--black); }
}

/* ── CTA FINAL ── */
.cta-section {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
}
.cta-title {
  font-family: var(--fd);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900; text-transform: uppercase;
  color: var(--yellow); line-height: .88;
  margin-bottom: 32px;
}
.cta-sub { font-size: .95rem; color: rgba(255,255,255,.4); margin-bottom: 40px; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 3px solid rgba(255,255,255,.1); padding: 48px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 28px; margin-bottom: 14px; display: block; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.6; }
.footer-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-col a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .85rem; transition: color .15s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 10px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.8); z-index: 200;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white); width: 100%; max-width: 460px;
  border: 3px solid var(--black); padding: 36px; position: relative;
}

.modal-close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #888;
}

.modal-title {
  font-family: var(--fd); font-size: 2rem; font-weight: 900;
  text-transform: uppercase; margin-bottom: 4px;
}
.modal-sub { font-size: .82rem; color: #888; margin-bottom: 24px; }

.modal-plans { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.modal-plan {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border: 2px solid #ddd; cursor: pointer; transition: border-color .15s;
}
.modal-plan:hover, .modal-plan.selected { border-color: var(--black); }
.modal-plan.selected { background: var(--black); }
.modal-plan.selected .modal-plan-name { color: var(--yellow); }
.modal-plan.selected .modal-plan-price { color: var(--yellow); }
.modal-plan-name { font-family: var(--fd); font-size: 1.1rem; font-weight: 900; text-transform: uppercase; }
.modal-plan-price { font-family: var(--fd); font-size: 1rem; font-weight: 900; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; color: #555; }
.form-input {
  width: 100%; border: 2px solid #ddd; padding: 10px 14px;
  font-size: .92rem; font-family: var(--fm); outline: none; transition: border-color .15s;
  background: var(--white);
}
.form-input:focus { border-color: var(--black); }

.btn-pay {
  width: 100%; background: var(--black); color: var(--yellow);
  border: none; cursor: pointer;
  font-family: var(--fd); font-size: 1.4rem; font-weight: 900;
  text-transform: uppercase; padding: 16px;
  margin-top: 8px; transition: background .15s;
}
.btn-pay:hover { background: #111; }
.form-note { font-size: .72rem; color: #aaa; text-align: center; margin-top: 10px; }
</style>
