/* DASH SuperHub — Brand-aligned landing styles. */
:root {
  --bg: #06060a;
  --bg-2: #0c0c14;
  --bg-elev: rgba(255,255,255,0.025);
  --ink: #f4f4f7;
  --ink-2: #b6b6c3;
  --ink-3: #7a7a89;
  --line: rgba(255,255,255,0.08);
  --line-hover: rgba(255,255,255,0.18);

  /* DASH brand palette */
  --gold: #d4a849;
  --gold-2: #f0c060;
  --gold-glow: rgba(212,168,73,0.18);
  --hot: #e50914;
  --purple: #8b5cf6;
  --purple-2: #a855f7;
  --green: #25d366;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --max: 1180px;
  --shadow-soft: 0 12px 36px rgba(0,0,0,0.4);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(212,168,73,0.10), transparent 60%),
    radial-gradient(800px 400px at 0% 110%, rgba(139,92,246,0.08), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-2); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold); }
h1,h2,h3 { font-family: 'Outfit', sans-serif; font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); margin-top: 0; }
h3 { font-size: 1.15rem; margin-bottom: .35rem; }
p { margin: 0 0 1rem; color: var(--ink-2); }
em { font-family: 'Fraunces', 'Outfit', serif; font-style: italic; color: var(--gold-2); font-weight: 500; }

.skip { position: absolute; left: -9999px; top: auto; }
.skip:focus { left: 1rem; top: 1rem; background: var(--gold); color: #000; padding: .5rem 1rem; border-radius: 8px; }

/* ---------- TOP BAR ---------- */
.topbar {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 1.25rem; max-width: var(--max); margin: 0 auto;
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(6,6,10,0.85);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.logo strong { font-weight: 800; }
.logo-light { font-weight: 300; opacity: 0.85; margin-left: 1px; }
.logo-bolt {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.logo-bolt svg { width: 22px; height: 22px; filter: drop-shadow(0 0 10px var(--gold-glow)); }
.logo-bolt svg path { fill: var(--gold-2); stroke: var(--gold-2); }
.topbar nav { display: none; gap: 1.25rem; flex: 1; padding-left: .5rem; }
.topbar nav a { color: var(--ink-2); font-size: 0.95rem; font-weight: 500; }
.topbar nav a:hover { color: var(--ink); }
.cta-mini {
  background: var(--green); color: #052e10;
  padding: .55rem 1rem; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem; margin-left: auto;
}
@media (min-width: 768px) {
  .topbar nav { display: flex; }
  .cta-mini { margin-left: 0; }
}

/* ---------- HERO ---------- */
.hero { padding: 3.5rem 1.25rem 2rem; position: relative; }
.hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 3.5rem; }
}
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin: 0 auto;
  display: grid; place-items: center;
}
.hero-art img {
  width: 78%; height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55)) drop-shadow(0 8px 24px var(--gold-glow));
  animation: float 4.5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-art::before {
  content: '';
  position: absolute; inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--gold-glow), transparent 70%);
  filter: blur(36px);
  z-index: 0;
}

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem;
  color: var(--gold); margin: 0 0 1rem;
  font-weight: 600; font-family: 'Space Grotesk', sans-serif;
}
.hero h1 { margin: 0 0 1.2rem; max-width: 22ch; }
.subhead { font-size: 1.15rem; color: var(--ink-2); max-width: 56ch; margin-bottom: 2rem; }

.price-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin: 1.5rem 0; max-width: 520px;
}
.price-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.05rem;
  display: flex; flex-direction: column; gap: .25rem;
  position: relative;
  overflow: hidden;
}
.price-card--hook {
  border-color: rgba(212,168,73,0.55);
  box-shadow: 0 0 32px var(--gold-glow), inset 0 0 0 1px rgba(212,168,73,0.10);
}
.price-card--hook::before {
  content: 'Tarif découverte';
  position: absolute; top: 10px; right: 10px;
  background: var(--gold);
  color: #0a0a0f;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 2px 7px;
  border-radius: 4px;
}
.price-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-3); font-weight: 500;
  font-family: 'Space Grotesk', sans-serif;
}
.price-value { font-size: 1.85rem; font-weight: 800; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; }
.price-value small { font-size: 0.95rem; color: var(--ink-2); font-weight: 600; margin-left: .15em; }
.price-value .per { font-size: 0.85rem; color: var(--ink-3); font-weight: 500; margin-left: .25em; }
.price-note { font-size: 0.75rem; color: var(--ink-3); margin-top: .15rem; }

/* ---------- CTA ---------- */
.cta-row { margin: 1.75rem 0 1rem; }
.cta-primary {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--green); color: #042714;
  font-weight: 700; font-size: 1.05rem;
  padding: 1rem 1.6rem; border-radius: 999px;
  box-shadow: 0 12px 36px rgba(37,211,102,0.32);
  transition: transform .15s, box-shadow .15s;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(37,211,102,0.48); color: #042714; }
.cta-primary--big { font-size: 1.15rem; padding: 1.15rem 1.85rem; }
.wa-icon {
  width: 22px; height: 22px;
  display: inline-grid; place-items: center;
  background: #fff; border-radius: 50%;
  color: var(--green); font-weight: 900; font-size: 11px;
}
.cta-note { font-size: 0.85rem; color: var(--ink-3); margin: .85rem 0 0; }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; color: var(--ink-2);
  font-size: 0.92rem;
}
.trust-strip li {
  display: inline-flex; align-items: center; gap: .35rem;
}
.trust-strip li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  margin-right: .35rem;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 3rem 1.25rem;
  max-width: var(--max); margin: 0 auto;
}
.section + .section { border-top: 1px solid var(--line); }
.section h2 { margin-bottom: 1.5rem; }
.section p { max-width: 70ch; }

/* ---------- COMPARISON TABLE ---------- */
.compare {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare th, .compare td { padding: .95rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare tr:last-child td { border-bottom: none; }
.compare th {
  color: var(--ink-3); font-weight: 600;
  text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.14em;
  font-family: 'Space Grotesk', sans-serif;
  background: rgba(255,255,255,0.02);
}
.compare td:first-child { color: var(--ink-2); }
.compare .win { color: var(--gold); font-weight: 700; }
.compare .lose { color: var(--ink-3); text-decoration: line-through; }

/* ---------- STEP LIST ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 1.5rem 0; }
.steps li {
  counter-increment: step;
  position: relative; padding: 1.1rem 1.1rem 1.1rem 3.8rem; margin: 0 0 .85rem;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s;
}
.steps li:hover { border-color: var(--line-hover); }
.steps li::before {
  content: counter(step);
  position: absolute; left: 1rem; top: 1.15rem;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #0a0a0f;
  display: grid; place-items: center; font-weight: 800; font-size: 0.92rem;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 4px 16px var(--gold-glow);
}
.steps li strong { display: block; color: var(--ink); margin-bottom: .15rem; font-size: 1rem; }
.steps li span { color: var(--ink-2); font-size: 0.92rem; }

/* ---------- FEATURE GRID ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.feature {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.2rem; transition: border-color .15s, transform .15s;
}
.feature:hover { border-color: rgba(212,168,73,0.4); transform: translateY(-2px); }
.feature h3 { font-size: 1rem; color: var(--ink); margin: 0 0 .35rem; }
.feature p { font-size: 0.9rem; margin: 0; color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq { padding: 3.5rem 1.25rem; max-width: 780px; margin: 0 auto; }
.faq h2 { text-align: center; margin-bottom: 2rem; }
.faq-list { display: flex; flex-direction: column; gap: .65rem; }
.faq-item {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: rgba(212,168,73,0.3); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem;
  font-weight: 600; color: var(--ink); font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::after {
  content: '+'; color: var(--gold); font-size: 1.3rem; font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding: 0 1.4rem 1.25rem; margin: 0; color: var(--ink-2); font-size: 0.95rem; line-height: 1.65;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  padding: 4rem 1.25rem; max-width: 720px; margin: 0 auto; text-align: center;
  background:
    radial-gradient(400px 200px at 50% 0%, var(--gold-glow), transparent 70%),
    linear-gradient(180deg, rgba(212,168,73,0.04), transparent);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-final h2 { margin-bottom: .85rem; }
.cta-final p { color: var(--ink-2); margin-bottom: 1.5rem; }

/* ---------- CROSS LINKS ---------- */
.cross-links { padding: 3.5rem 1.25rem; max-width: var(--max); margin: 0 auto; }
.cross-links h2 { text-align: center; margin-bottom: 2rem; }
.cross-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .8rem; }
.cross-card {
  display: block; padding: 1.15rem 1.25rem;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); transition: all .2s;
}
.cross-card:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--ink); }
.cross-card strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: .25rem; line-height: 1.3; }
.cross-card span { color: var(--ink-3); font-size: 0.85rem; line-height: 1.45; }

/* ---------- FOOTER ---------- */
footer { padding: 3.5rem 1.25rem 1.5rem; border-top: 1px solid var(--line); margin-top: 2rem; }
.foot-cols { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 2rem; color: var(--ink-3); font-size: 0.9rem; }
.foot-cols strong { display: block; color: var(--ink); margin-bottom: .65rem; font-size: 0.95rem; font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.01em; }
.foot-cols ul { list-style: none; padding: 0; margin: 0; }
.foot-cols li { margin-bottom: .35rem; }
.foot-cols a { color: var(--ink-2); }
.foot-cols a:hover { color: var(--gold); }
.foot-bottom { max-width: var(--max); margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.78rem; color: var(--ink-3); text-align: center; line-height: 1.6; }
.foot-brand {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: .7rem; color: var(--ink);
  font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem;
}

/* ---------- STICKY WHATSAPP — DASH purple + gold signature ---------- */
.sticky-wa {
  position: fixed; bottom: 1.1rem; right: 1.1rem; z-index: 100;
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  color: var(--gold-2);
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: .95rem 1.3rem; border-radius: 999px;
  border: 1px solid rgba(212,168,73,0.25);
  box-shadow: 0 14px 44px rgba(139,92,246,0.55), inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform .15s, box-shadow .15s;
}
.sticky-wa:hover {
  transform: translateY(-2px);
  color: var(--gold-2);
  box-shadow: 0 20px 60px rgba(139,92,246,0.65), 0 0 0 1px rgba(212,168,73,0.4);
}
.sticky-wa-icon {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(240,192,96,0.35);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(240,192,96,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(240,192,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,192,96,0); }
}
@media (max-width: 480px) {
  .sticky-wa-label { display: none; }
  .sticky-wa { padding: 1rem; }
}

/* ---------- DASH WORDMARK CHIP (footer/brand block) ---------- */
.brand-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .25rem .6rem .25rem .35rem;
  background: rgba(212,168,73,0.10); border: 1px solid rgba(212,168,73,0.25);
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  color: var(--gold-2);
  letter-spacing: 0.06em;
}
