/* ============================================================
   Ori'Mailing Landing — ORIGADS design system applied
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--beige);
  color: var(--bleu-nuit);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ---------- Brutalism tokens (tweakable) ---------- */
:root {
  --brut-shadow: 6px 6px 0 var(--bleu-nuit);
  --brut-shadow-hover: 9px 9px 0 var(--bleu-nuit);
  --brut-shadow-lg: 10px 10px 0 var(--bleu-nuit);
  --brut-shadow-sm: 3px 3px 0 var(--bleu-nuit);
  --brut-border: 2px;
  --brut-border-heavy: 3px;
  --hero-seq-speed: 1;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

section { position: relative; }
.section-pad { padding: 120px 0; }
@media (max-width: 720px) { .section-pad { padding: 72px 0; } }

/* ---------- Inverted sections ---------- */
.inverse {
  background: var(--bleu-nuit);
  color: var(--beige);
}
.inverse h1, .inverse h2, .inverse h3, .inverse h4 { color: var(--beige); }
/* Cards that sit on an inverse section but keep beige backgrounds must retain dark text */
.inverse .seq-card h3,
.inverse .seq-card p,
.inverse .seq-card .stat { color: var(--bleu-nuit); }
.inverse .seq-card p { color: var(--fg-muted); }
.inverse .seq-card .stat b { color: var(--bleu-electrique); }
.inverse .eyebrow { color: var(--beige); opacity: 0.7; }
.inverse .muted { color: var(--beige); opacity: 0.7; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border: var(--brut-border) solid var(--bleu-nuit);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: transform 140ms var(--ease-snap), box-shadow 140ms var(--ease-snap);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--beige);
  color: var(--bleu-nuit);
  text-decoration: none;
  box-shadow: var(--brut-shadow);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--brut-shadow-hover); }
.btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 transparent; }
.btn-primary { background: var(--bleu-electrique); color: var(--beige); }
.btn-dark { background: var(--bleu-nuit); color: var(--beige); box-shadow: 6px 6px 0 var(--bleu-electrique); }
.btn-dark:hover { box-shadow: 9px 9px 0 var(--bleu-electrique); }
.btn-ghost {
  background: transparent; box-shadow: none;
  padding: 10px 16px;
}
.btn-ghost:hover { background: var(--beige-deep); transform: none; box-shadow: none; }
.btn-lg { padding: 18px 32px; font-size: 17px; }

.inverse .btn { border-color: var(--beige); color: var(--beige); background: transparent; box-shadow: 6px 6px 0 var(--beige); }
.inverse .btn:hover { box-shadow: 9px 9px 0 var(--beige); }
.inverse .btn-primary { background: var(--beige); color: var(--bleu-nuit); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--beige);
  border-bottom: var(--brut-border) solid var(--bleu-nuit);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--bleu-nuit);
  text-decoration: none;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--bleu-electrique);
  border: 2px solid var(--bleu-nuit);
  display: grid; place-items: center;
  box-shadow: 3px 3px 0 var(--bleu-nuit);
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  color: var(--bleu-nuit);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.lang-toggle {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  padding: 7px 12px;
  border: 2px solid var(--bleu-nuit);
  background: var(--beige);
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 900px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  top: -40px;
  right: -60px;
  width: 380px;
  transform: rotate(-15deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--beige);
  border: 2px solid var(--bleu-nuit);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 3px 3px 0 var(--bleu-nuit);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #2fb964;
  border-radius: 50%;
  border: 1px solid var(--bleu-nuit);
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,185,100,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(47,185,100,0); }
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.hero h1 .accent {
  color: var(--bleu-electrique);
  font-style: italic;
  font-weight: 600;
}
.hero h1 .marker {
  background: var(--bleu-electrique);
  color: var(--beige);
  padding: 0 8px;
  display: inline-block;
  transform: rotate(-1deg);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-cta-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-price .amount {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-price .amount small {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
}
.hero-price .note {
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-reassure {
  font-size: 13px;
  color: var(--fg-muted);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.hero-reassure .sep { opacity: 0.4; }

/* ---------- Compat strip ---------- */
.compat-strip {
  border-top: 2px solid var(--bleu-nuit);
  border-bottom: 2px solid var(--bleu-nuit);
  background: var(--beige-soft);
  padding: 20px 0;
}
.compat-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.compat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bleu-nuit);
}
.compat-logos {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
}
.compat-logos span { display: inline-flex; align-items: center; gap: 6px; }
.compat-logos span::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--bleu-electrique);
  display: inline-block;
}
.compat-logos span:first-child::before { display: none; }

/* ---------- Section headers ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--bleu-electrique);
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 2px solid var(--bleu-electrique);
  text-transform: uppercase;
}
.inverse .section-head .eyebrow {
  color: var(--beige);
  border-color: var(--beige);
  opacity: 1;
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.section-head p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
}
.inverse .section-head p { color: var(--beige); opacity: 0.75; }

/* ---------- Pain section ---------- */
.pain-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 720px) { .pain-list { grid-template-columns: 1fr; } }
.pain-item {
  padding: 28px;
  background: var(--beige);
  border: 2px solid var(--bleu-nuit);
  box-shadow: var(--brut-shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pain-item .icon {
  width: 40px; height: 40px;
  background: var(--bleu-nuit);
  color: var(--beige);
  border: 2px solid var(--bleu-nuit);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 20px;
}
.pain-item p { margin: 0; font-size: 16px; line-height: 1.45; }
.pain-item strong { color: var(--bleu-electrique); }

/* ---------- Audience cards (Pour qui c'est fait) ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 720px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  padding: 32px;
  background: var(--beige);
  border: 2px solid var(--bleu-nuit);
  box-shadow: var(--brut-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audience-icon {
  width: 48px; height: 48px;
  background: var(--bleu-nuit);
  color: var(--beige);
  border: 2px solid var(--bleu-nuit);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 4px;
}
.audience-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.audience-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-muted);
}
.audience-seq-label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bleu-electrique);
}
.audience-seq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.audience-seq-list li {
  font-size: 14px;
  color: var(--bleu-nuit);
  font-weight: 500;
}

/* ---------- Sequence cards (Choisis ta séquence) ---------- */
.seq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .seq-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .seq-grid { grid-template-columns: 1fr; } }

.seq-card {
  background: var(--beige);
  border: 2px solid var(--bleu-nuit);
  box-shadow: var(--brut-shadow);
  padding: 28px;
  transition: transform 150ms var(--ease-snap), box-shadow 150ms var(--ease-snap);
  position: relative;
  cursor: pointer;
}
.seq-card:hover { transform: translate(-3px, -3px); box-shadow: var(--brut-shadow-hover); }
.seq-card .seq-icon {
  width: 52px; height: 52px;
  background: var(--bleu-electrique);
  border: 2px solid var(--bleu-nuit);
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 var(--bleu-nuit);
}
.seq-card .seq-icon svg { width: 28px; height: 28px; }
.seq-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.seq-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 16px;
}
.seq-card .seq-stats {
  display: flex; gap: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--bleu-nuit);
}
.seq-card .stat {
  font-size: 12px;
  font-weight: 600;
  color: var(--bleu-nuit);
}
.seq-card .stat b { color: var(--bleu-electrique); font-size: 15px; display: block; }

/* ---------- Stats section ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card {
  background: var(--beige);
  border: 3px solid var(--bleu-nuit);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  box-shadow: var(--brut-shadow);
}
.inverse .stat-card {
  background: var(--bleu-nuit);
  border-color: var(--beige);
  box-shadow: 6px 6px 0 var(--bleu-electrique);
}
.stat-card .big {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--bleu-electrique);
  margin-bottom: 12px;
}
.inverse .stat-card .big { color: var(--beige); }
.stat-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.stat-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
}
.inverse .stat-card p { color: var(--beige); opacity: 0.75; }
.stat-card .source {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 12px;
  font-style: italic;
}
.inverse .stat-card .source { color: var(--beige); opacity: 0.6; }

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  padding: 36px 28px;
  background: var(--beige);
  border: 2px solid var(--bleu-nuit);
  box-shadow: var(--brut-shadow);
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--bleu-nuit);
  color: var(--beige);
  border: 2px solid var(--bleu-nuit);
  font-size: 28px;
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0 var(--bleu-electrique);
}
.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 14px;
}
.step-meta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bleu-electrique);
  padding: 4px 8px;
  border: 1px solid var(--bleu-electrique);
}

/* ---------- Testimonials ---------- */
.testi-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.testi-card {
  background: var(--beige);
  border: 3px solid var(--beige);
  box-shadow: 10px 10px 0 var(--beige);
  padding: 48px 56px;
  color: var(--bleu-nuit);
}
.inverse .testi-card {
  background: var(--beige);
  box-shadow: 10px 10px 0 var(--bleu-electrique);
  border-color: var(--bleu-electrique);
}
.testi-stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-stars span { color: var(--bleu-electrique); font-size: 20px; }
.testi-quote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--bleu-nuit);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px;
  background: var(--bleu-electrique);
  color: var(--beige);
  border: 2px solid var(--bleu-nuit);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 18px;
}
.testi-meta strong { display: block; font-size: 15px; font-weight: 700; }
.testi-meta span { font-size: 13px; color: var(--fg-muted); }
.testi-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.testi-dot {
  width: 10px; height: 10px;
  border: 2px solid var(--beige);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.testi-dot.active { background: var(--beige); }

.testi-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.testi-nav button {
  width: 48px; height: 48px;
  background: transparent;
  border: 2px solid var(--beige);
  color: var(--beige);
  cursor: pointer;
  font-size: 20px;
  display: grid; place-items: center;
  transition: transform 140ms var(--ease-snap), box-shadow 140ms var(--ease-snap);
}
.testi-nav button:hover {
  background: var(--beige);
  color: var(--bleu-nuit);
  box-shadow: 4px 4px 0 var(--bleu-electrique);
}

/* ---------- Included list ---------- */
.incl-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--beige);
  border: 3px solid var(--bleu-nuit);
  box-shadow: 10px 10px 0 var(--bleu-electrique);
  padding: 48px;
}
@media (max-width: 720px) { .incl-wrap { padding: 28px; } }
.incl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.incl-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px dashed var(--bleu-nuit);
}
.incl-item:last-child { border-bottom: none; }
.incl-check {
  width: 36px; height: 36px;
  background: var(--bleu-electrique);
  border: 2px solid var(--bleu-nuit);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 var(--bleu-nuit);
  color: var(--beige);
  font-weight: 700;
}
.incl-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
}
.incl-content p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
}

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center;
  padding: 120px 0;
}
.cta-final h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 auto 40px;
  max-width: 560px;
  opacity: 0.8;
}
.cta-final-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--beige);
  border-top: 3px solid var(--bleu-nuit);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--bleu-nuit);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--bleu-nuit); text-decoration: none; font-size: 14px; }
.footer a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
.footer-tag { font-size: 14px; line-height: 1.5; color: var(--fg-muted); margin-top: 12px; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid var(--bleu-nuit);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-snap), transform 600ms var(--ease-snap);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utility ---------- */
.muted { color: var(--fg-muted); }
.center { text-align: center; }
