/* ─── Fonts ──────────────────────────────────────────────── */

@font-face {
  font-family: 'TestTiemposHeadline';
  src: url('fonts/TestTiemposHeadline-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ─── Variables ──────────────────────────────────────────── */

:root {
  --color-bg: #0a0a0a;
  --color-bg-section: #111111;
  --color-bg-card: #161616;
  --color-text: #ffffff;
  --color-text-secondary: #a3a3a3;
  --color-text-muted: #525252;
  --color-border: #262626;
  --color-border-hover: #333333;
  --color-btn-bg: #ffffff;
  --color-btn-text: #000000;
  --color-accent: #C9A84C;
  --font-display: 'TestTiemposHeadline', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.25s ease;
  --radius: 8px;
  --container-max: 1200px;
  --container-px: clamp(20px, 5vw, 80px);
  --section-py: clamp(80px, 10vw, 160px);
}

/* ─── Reset ──────────────────────────────────────────────── */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Announcement Bar ───────────────────────────────────── */

.announcement-bar {
  background: linear-gradient(135deg, #B8860B 0%, #DAA520 25%, #F5D060 50%, #DAA520 75%, #B8860B 100%);
  color: #000000;
  text-align: center;
  padding: 10px var(--container-px);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
}

/* ─── Navbar ─────────────────────────────────────────────── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: background-color var(--transition),
              border-color var(--transition),
              backdrop-filter var(--transition);
}

.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--color-border);
}

.navbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  color: #ffffff;
}

.navbar__logo-accent {
  color: #C9A84C;
  text-transform: uppercase;
}

.navbar__countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ncd__block {
  background: #161616;
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ncd__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ncd__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 8px;
  color: #525252;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
  line-height: 1;
}

.ncd__sep {
  font-family: var(--font-body);
  font-weight: 400;
  color: #525252;
  font-size: 14px;
  align-self: center;
  line-height: 1;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #B8860B 0%, #DAA520 25%, #F5D060 50%, #DAA520 75%, #B8860B 100%);
  color: #000000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 20px;
  transition: opacity var(--transition), transform var(--transition);
}

.navbar__cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ─── Hero ───────────────────────────────────────────────── */

@keyframes smokeMove {
  0%   { transform: scale(1) translateY(0px);    opacity: 0.6; }
  50%  { transform: scale(1.05) translateY(-10px); opacity: 0.8; }
  100% { transform: scale(1) translateY(0px);    opacity: 0.6; }
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg);
  padding-top: 120px;
  padding-bottom: var(--section-py);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('assets/smoke.png');
  background-size: cover;
  background-position: center;
  animation: smokeMove 8s ease-in-out infinite;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* Headline centré */

.hero__headline {
  text-align: center;
  max-width: 860px;
  margin: 0 auto clamp(48px, 6vw, 96px);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 30px;
  padding: 8px 24px;
  background: transparent;
  margin-bottom: 20px;
}

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 2 colonnes */

.hero__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}

/* Colonne gauche */

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  text-align: center;
}

.hero__photo-wrap {
  flex-shrink: 0;
  max-height: 70%;
  overflow: hidden;
  border-radius: 12px;
}

.hero__photo {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  display: block;
}

.hero__left-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.hero__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.hero__date {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  color: #ffffff;
}

.hero__places {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: #a3a3a3;
  margin-top: 4px;
}

.hero__left-info .countdown {
  margin-top: 12px;
}

/* Countdown */

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-width: 68px;
}

.countdown__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1;
}

.countdown__label {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-text-muted);
  line-height: 1;
  padding-bottom: 16px;
}

/* Colonne droite — card */

.hero__right {
  position: sticky;
  top: 100px;
}

.hero__card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__card-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--color-text);
  line-height: 1.2;
}

.hero__card-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
}

.hero__card-sub2 {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.hero__step-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 4px;
}

.hero__step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

/* Radio options */

.radio-option {
  display: block;
  cursor: pointer;
}

.radio-option input {
  display: none;
}

.radio-option__box {
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 16px;
  transition: border-color var(--transition), background-color var(--transition);
}

.radio-option__box:hover {
  border-color: var(--color-border-hover);
}

.radio-option input:checked + .radio-option__box {
  border-color: var(--color-accent);
  background-color: rgba(201, 168, 76, 0.06);
}

.radio-option__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border-hover);
  flex-shrink: 0;
  transition: border-color var(--transition), background-color var(--transition);
}

.radio-option input:checked + .radio-option__box .radio-dot {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  box-shadow: inset 0 0 0 3px var(--color-bg-card);
}

.radio-option__header strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.radio-option__box p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  padding-left: 26px;
}

/* Badge */

.hero__badge {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-align: center;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  letter-spacing: 0.03em;
}

/* CTA */

.hero__cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #B8860B 0%, #DAA520 25%, #F5D060 50%, #DAA520 75%, #B8860B 100%);
  color: #000000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: opacity var(--transition), transform var(--transition);
}

.hero__cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero__disclaimer {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
}

/* Hero form step 2 */

.hero__error {
  font-family: var(--font-body);
  font-size: 13px;
  color: #f87171;
  text-align: center;
  min-height: 18px;
  margin-bottom: 4px;
}

.hero__step2 {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.hero__step2.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.hero__step2 > * {
  min-height: 0;
}

.hero__input {
  width: 100%;
  background: #161616;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 14px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 12px;
  box-sizing: border-box;
  outline: none;
  transition: border-color var(--transition);
}

.hero__input::placeholder {
  color: #525252;
}

.hero__input:focus {
  border-color: rgba(201, 168, 76, 0.7);
}

/* Responsive hero */

@media (max-width: 768px) {
  .hero {
    padding-top: 64px;
  }

  .hero__cols {
    grid-template-columns: 1fr;
  }

  .hero__right {
    position: static;
  }

  .countdown__block {
    min-width: 56px;
    padding: 10px 12px;
  }

  .countdown__num {
    font-size: 24px;
  }
}

/* ─── Section 2 : Problème ──────────────────────────────── */

.problem {
  background-color: #111111;
  padding: clamp(80px, 10vw, 120px) var(--container-px);
}

.problem__container {
  max-width: 700px;
  margin: 0 auto;
}

#problem *,
#problem h2,
#problem p {
  text-align: left !important;
}

.problem__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.problem__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.problem__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  width: 100%;
}

.problem__body strong {
  color: #ffffff;
  font-weight: 700;
}

.problem__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.problem__list-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 8px;
}

.problem__conclusion {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.6;
  margin-top: 32px;
}

.problem__gold {
  color: #C9A84C;
}

/* ─── Section 3 : Mécanisme 4SIA™ ──────────────────────── */

.mechanism {
  background-color: var(--color-bg);
  padding: clamp(80px, 10vw, 120px) var(--container-px);
}

.mechanism__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
}

.mechanism__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mechanism__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mechanism__intro p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
}

.mechanism__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.mechanism__card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--transition), transform var(--transition);
}

.mechanism__card-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mechanism__card:hover {
  border-color: rgba(201, 168, 76, 0.6);
  transform: translateY(-4px);
}


.mechanism__card-sep {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin: 24px 0;
}


.mechanism__card-result {
  color: #C9A84C !important;
  font-weight: 600 !important;
}

.mechanism__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 48px;
  color: #C9A84C;
  line-height: 1;
  flex-shrink: 0;
}

.mechanism__card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  line-height: 1.3;
}

.mechanism__card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.mechanism__card-text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  text-align: left;
}

.mechanism__card-pain {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 16px;
}

.mechanism__card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.mechanism__card-body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
  text-align: left;
}

.mechanism__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.mechanism__cta-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.mechanism__cta-btn {
  display: block;
  background: linear-gradient(135deg, #B8860B 0%, #DAA520 25%, #F5D060 50%, #DAA520 75%, #B8860B 100%);
  color: #000000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  transition: opacity var(--transition), transform var(--transition);
}

.mechanism__cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.mechanism__cta-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 640px) {
  .mechanism__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Section 4 : Preuve Sociale ────────────────────────── */

.proof {
  background-color: #111111;
  padding: clamp(80px, 10vw, 120px) var(--container-px);
}

.proof__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
}

.proof__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

.proof__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.proof__card:hover {
  transform: translateY(-4px);
}

.proof__card:hover .proof__body {
  border-color: rgba(201, 168, 76, 0.6);
}

/* Screenshot image wrapper */

.proof__img-wrap {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.proof__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
  background: #262626;
  transition: opacity var(--transition);
}

.proof__img-wrap:hover .proof__img {
  opacity: 0.85;
}

.proof__loupe {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.proof__img-wrap:hover .proof__loupe {
  opacity: 1;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #C9A84C;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: opacity var(--transition);
}

.lightbox__close:hover {
  opacity: 0.7;
}

/* Body */

.proof__body {
  background-color: #161616;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  transition: border-color var(--transition);
}

.proof__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 4px;
}

.proof__tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: #C9A84C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof__sep {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin: 12px 0;
}

/* Before / After columns */

.proof__ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.proof__ba-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof__ba-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.proof__ba-title--before { color: #ef4444; }
.proof__ba-title--after  { color: #22c55e; }

.proof__ba-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.proof__ba-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.proof__ba-col--before .proof__ba-item span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  line-height: 1.6;
}

.proof__ba-col--after .proof__ba-item span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
}

/* Result row */

.proof__result-wrap {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 12px;
  margin-top: auto;
}

.proof__result {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  color: #C9A84C;
  text-align: center;
}

@media (max-width: 900px) {
  .proof__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Section 5 : Autorité Vadim ────────────────────────── */

/* ─── Section 6 : Contenu Workshop ──────────────────────── */

.workshop-content {
  background-color: var(--color-bg);
  padding: clamp(80px, 10vw, 120px) var(--container-px);
}

.workshop-content__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.workshop-content__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;
}

.workshop-content__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.workshop-content__blocs {
  max-width: 800px;
  margin: 0 auto;
}

.workshop-content__bloc {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
}

.workshop-content__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: #0a0a0a;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #E5C97D);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.workshop-content__bloc-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  line-height: 1.3;
}

.workshop-content__bloc-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #a3a3a3;
  line-height: 1.7;
  margin-top: 8px;
}

.workshop-content__closing {
  background: #161616;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
}

.workshop-content__closing-accent {
  color: #C9A84C;
  font-weight: 700;
}

.workshop-content__cta {
  display: block;
  margin: 32px auto 0;
  padding: 16px 40px;
  background: linear-gradient(135deg, #B8860B 0%, #DAA520 25%, #F5D060 50%, #DAA520 75%, #B8860B 100%);
  color: #000000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.02em;
}

/* ─── Section 7 : Pourquoi Gratuit ──────────────────────── */

.why-free {
  background-color: #111111;
  padding: clamp(80px, 10vw, 120px) var(--container-px);
}

.why-free__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.why-free__card {
  background: #161616;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.why-free__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 40px);
  color: #ffffff;
  text-align: left;
  margin-bottom: 32px;
  line-height: 1.2;
}

.why-free__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-free__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  text-align: left;
}

.why-free__accent {
  color: #C9A84C;
  font-weight: 600;
}

/* ─── Section 8 : Pour qui / Pas pour qui ───────────────── */

.forwhom {
  background-color: var(--color-bg);
  padding: clamp(80px, 10vw, 120px) var(--container-px);
}

.forwhom__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.forwhom__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 40px);
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
}

.forwhom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.forwhom__col {
  border-radius: 12px;
  padding: 32px;
}

.forwhom__col--yes {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.05);
}

.forwhom__col--no {
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.05);
}

.forwhom__col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
}

.forwhom__col-title--yes { color: #22c55e; }
.forwhom__col-title--no  { color: #ef4444; }

.forwhom__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.forwhom__item:last-child { margin-bottom: 0; }

.forwhom__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.forwhom__item-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
}

/* ─── Section 5 : Autorité Vadim ────────────────────────── */

.authority {
  background-color: #111111;
  padding: clamp(80px, 10vw, 120px) var(--container-px);
}

.authority__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

/* Colonne gauche */

.authority__col-left {
  position: sticky;
  top: 120px;
}

.authority__photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
}

.authority__photo {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Colonne droite */

.authority__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 32px;
}

.authority__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.authority__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  text-align: left;
}

.authority__result {
  font-family: var(--font-body);
  font-weight: 700 !important;
  font-size: 24px !important;
  color: #C9A84C !important;
}

.authority__closing {
  font-family: var(--font-body);
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #ffffff !important;
}

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

  .authority__col-left {
    position: static;
  }
}

/* ─── Section 9 : CTA Final ─────────────────────────────── */

.cta-final {
  background-color: var(--color-bg);
  padding: clamp(100px, 12vw, 160px) var(--container-px);
}

.cta-final__container {
  max-width: 1100px;
  margin: 0 auto;
}

.cta-final__card {
  position: relative;
  border-radius: 24px;
  padding: 60px 48px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.4);
}

/* Fond smoke lumineux */
.cta-final__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/smoke.png');
  background-size: cover;
  background-position: center;
  filter: brightness(1.3) contrast(1.1);
  z-index: 0;
}

/* Overlay léger */
.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.cta-final__content {
  position: relative;
  z-index: 2;
}

.cta-final__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-final__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: #a3a3a3;
  text-align: center;
  margin-top: 16px;
}

.cta-final__btn {
  display: block;
  width: fit-content;
  margin: 48px auto 0;
  padding: 18px 48px;
  background: linear-gradient(135deg, #B8860B 0%, #DAA520 25%, #F5D060 50%, #DAA520 75%, #B8860B 100%);
  color: #000000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity var(--transition), transform var(--transition);
}

.cta-final__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cta-final__meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: #a3a3a3;
  text-align: center;
  margin-top: 16px;
}

.cta-final__signature {
  text-align: center;
  margin-top: 48px;
}

.cta-final__sig-line {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #a3a3a3;
}

.cta-final__sig-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  color: #ffffff;
  margin-top: 8px;
}

/* ─── Animations ─────────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero form pulse au focus */
@keyframes formPulse {
  0%   { border-color: rgba(201, 168, 76, 0.3); box-shadow: none; }
  40%  { border-color: rgba(201, 168, 76, 0.9); box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.18); }
  100% { border-color: rgba(201, 168, 76, 0.3); box-shadow: none; }
}

.hero__card--pulse {
  animation: formPulse 1s ease forwards;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── Responsive Mobile < 768px ─────────────────────────── */

@media (max-width: 768px) {

  /* — Navbar — */
  .navbar__countdown {
    display: none;
  }

  .navbar__inner {
    padding: 12px var(--container-px);
    gap: 8px;
  }

  .navbar__logo {
    font-size: 14px;
  }

  .navbar__cta {
    font-size: 11px;
    padding: 8px 14px;
    white-space: nowrap;
  }

  /* — Hero — */
  .hero__h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .eyebrow {
    font-size: 14px;
    padding: 6px 16px;
  }

  .hero__cols {
    grid-template-columns: 1fr;
  }

  .hero__left {
    order: -1;
  }

  .hero__right {
    position: static;
  }

  .hero__cta {
    width: 100%;
    padding: 16px;
  }

  /* — Countdown compact — */
  .countdown {
    gap: 8px;
  }

  .countdown__block {
    min-width: 52px;
    padding: 8px 10px;
  }

  .countdown__num {
    font-size: 22px;
  }

  .countdown__label {
    font-size: 9px;
  }

  /* — Section 4SIA™ — */
  .mechanism__grid {
    grid-template-columns: 1fr;
  }

  .mechanism__cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* — Preuve sociale — */
  .proof__grid {
    grid-template-columns: 1fr;
  }

  /* — Section 6 Workshop — */
  .workshop-content__bloc {
    gap: 16px;
  }

  .workshop-content__num {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  .workshop-content__bloc-title {
    font-size: 18px;
  }

  .workshop-content__cta {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    box-sizing: border-box;
  }

  /* — Autorité Vadim — */
  .authority__container {
    grid-template-columns: 1fr;
  }

  .authority__col-left {
    position: static;
  }

  .authority__photo {
    max-height: 400px;
    object-position: center top;
  }

  /* — Pour qui / Pas pour qui — */
  .forwhom__grid {
    grid-template-columns: 1fr;
  }

  /* — Headlines globaux — */
  .problem__headline,
  .mechanism__headline,
  .proof__headline,
  .workshop-content__headline,
  .authority__headline,
  .forwhom__headline {
    font-size: clamp(26px, 7vw, 36px);
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* — Overflow fix général — */
  section,
  .hero__container,
  .problem__container,
  .mechanism__container,
  .proof__container,
  .workshop-content__container,
  .authority__container,
  .forwhom__container {
    max-width: 100%;
    overflow-x: clip;
  }

  h1, h2, h3, p {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* — Hero : fixes overflow — */
  .eyebrow {
    font-size: 12px;
    padding: 6px 14px;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: 15px;
  }

  .hero__headline {
    max-width: 100%;
  }

  /* — Hero : photo pleine largeur mobile — */
  .hero__photo-wrap {
    width: 100%;
  }

  .hero__photo {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: cover;
    object-position: center top;
  }

  /* — Hero left : supprime l'espace vide entre photo et date — */
  .hero__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero__left-info {
    margin-top: 16px;
  }

  /* — Countdown : compact sur mobile — */
  .countdown__sep {
    font-size: 18px;
  }

  /* — Mechanism CTA sub — */
  .mechanism__cta-sub {
    font-size: 13px;
  }

  /* — Proof section — */
  .proof__headline {
    text-align: center;
  }

  /* — Workshop content — */
  .workshop-content__blocs {
    max-width: 100%;
  }

  .workshop-content__closing {
    margin-top: 32px;
    padding: 24px 20px;
  }

  /* — Authority — */
  .authority__photo {
    width: 100%;
    height: auto;
    max-height: 380px;
  }

  /* — Announcement bar — */
  .announcement-bar {
    font-size: 11px;
    padding: 8px 16px;
  }
}
