/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   SALES PERF BLUEPRINTâ¢ â ANOUCK TOURNEBIZE
   Design System Â· Near-Black + Ivoire Chaud + Champagne
   Version 3.0 â Direction artistique premium
âââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

:root {
  /* ââ Dark surfaces ââ */
  --navy:        #0A0F1C;
  --navy-mid:    #111827;
  --navy-light:  #192038;

  /* ââ Champagne gold (refined, not loud) ââ */
  --beige:       #B8925A;
  --beige-light: #CFA96E;
  --beige-pale:  #F5F1EB;

  /* ââ Urgency â deep amber, not rouge ââ */
  --rouge:       #0A0F1C;

  --vert:        #1A6B4A;
  --or:          #CFA96E;

  /* ââ Typography ââ */
  --white:         #FFFFFF;
  --ivory:         #EDE9E1;
  --ivory-soft:    #A0A6BC;
  --text:          #1A1E2C;
  --text-soft:     #626880;
  --text-primary:  #EDE9E1;
  --text-secondary:#8A90AA;
  --border:        #E5DFD5;
  --border-dark:   rgba(184,146,90,.14);

  --font-serif: 'Playfair Display', serif;
  --font-body:  'Inter', sans-serif;
  --font-sans:  'Inter', sans-serif;

  --max-width: 1200px;
  --radius:    6px;
  --radius-lg: 14px;

  --shadow-card: 0 2px 20px rgba(10,15,28,.07);
  --shadow-lift: 0 12px 48px rgba(10,15,28,.16);
  --glow-rouge:  0 0 48px rgba(184,146,90,.18);
  --glow-beige:  0 0 40px rgba(184,146,90,.13);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-serif); line-height: 1.15; }
em { font-style: italic; color: var(--beige); }

/* ââ SCROLL REVEAL ââ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal         { transform: translateY(28px); }
.reveal-left    { transform: translateX(-32px); }
.reveal-right   { transform: translateX(32px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ââ TYPOGRAPHY ââ */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 16px;
  display: block;
}
.section-label--light { color: rgba(184,146,90,.55); }

.section-title {
  font-size: clamp(32px, 4vw, 54px);
  color: var(--navy);
  margin-bottom: 48px;
  text-align: center;
}
.section-title--light { color: var(--white); }

.section-title-left {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--navy);
  margin-bottom: 24px;
  text-align: left;
}

.section-sub {
  font-size: 18px;
  color: var(--text-soft);
  text-align: center;
  margin-top: -32px;
  margin-bottom: 52px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,.45); }

.body-text {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ââ LAYOUT ââ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow { max-width: 720px; }
.container--split {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}

/* ââ BUTTONS ââ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  color: #0A0F1C;
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .22s, transform .18s, box-shadow .22s;
  border-radius: var(--radius);
}
.btn-primary:hover {
  background: var(--beige-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,146,90,.35);
}
.btn-glow {
  box-shadow: 0 4px 20px rgba(184,146,90,.28);
}
.btn-glow:hover {
  box-shadow: 0 8px 36px rgba(184,146,90,.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ivory);
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(237,233,225,.2);
  transition: border-color .2s, color .2s, background .2s;
  border-radius: var(--radius);
}
.btn-ghost:hover {
  border-color: rgba(237,233,225,.55);
  color: var(--white);
  background: rgba(237,233,225,.05);
}

.btn-full  { width: 100%; }
.btn-large { padding: 22px 40px; font-size: 17px; }

/* ââââââââââââââââââââââââââââââââââââââââââ
   NAV
ââââââââââââââââââââââââââââââââââââââââââ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(13,20,40,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,146,90,.07);
  transition: box-shadow .3s;
}
.nav.scrolled {
  box-shadow: 0 4px 32px rgba(13,20,40,.4);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.nav-brand span { color: var(--beige); }
.nav-brand .nav-sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(184,146,90,.45);
  margin-left: 5px;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  padding: 8px 12px;
  transition: color .2s;
  border-radius: var(--radius);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links .nav-cta {
  background: var(--beige);
  color: #0A0F1C;
  padding: 9px 18px;
  font-weight: 700;
  margin-left: 8px;
  letter-spacing: .02em;
}
.nav-links .nav-cta:hover { background: var(--beige-light); color: #0A0F1C; }

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .22s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(13,20,40,.98);
  border-top: 1px solid rgba(184,146,90,.07);
  padding: 16px 40px 28px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(184,146,90,.06);
  font-weight: 500;
}
.nav-mobile-cta {
  background: var(--beige) !important;
  color: #0A0F1C !important;
  font-weight: 700 !important;
  text-align: center !important;
  padding: 14px 0 !important;
  border-radius: var(--radius);
  margin-top: 10px;
  border: none !important;
  font-weight: 600 !important;
}

/* ââââââââââââââââââââââââââââââââââââââââââ
   HERO â SPLIT
ââââââââââââââââââââââââââââââââââââââââââ */
.hero {
  background: var(--navy);
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow blobs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .5;
}
.hero-glow--1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(184,146,90,.1) 0%, transparent 70%);
  animation: float-a 12s ease-in-out infinite;
}
.hero-glow--2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -50px;
  background: radial-gradient(circle, rgba(184,146,90,.07) 0%, transparent 70%);
  animation: float-b 16s ease-in-out infinite;
}
@keyframes float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, 20px) scale(1.05); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -20px) scale(1.08); }
}

.hero-inner { position: relative; z-index: 1; }

.hero-split {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 64px;
  align-items: center;
}

/* LEFT */
.hero-left { text-align: left; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--beige);
  border: 1px solid rgba(184,146,90,.22);
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  background: rgba(184,146,90,.04);
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--beige);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(40px, 4.8vw, 70px);
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.08;
  letter-spacing: -.01em;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.52);
  margin-bottom: 44px;
  line-height: 1.75;
  max-width: 520px;
}
.hero-sub strong { color: rgba(255,255,255,.82); }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Proof bar */
.hero-proof {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(184,146,90,.1);
  padding-top: 36px;
  flex-wrap: wrap;
  gap: 0;
}
.proof-item { padding: 0 28px; text-align: center; }
.proof-item:first-child { padding-left: 0; }

.proof-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.01em;
}
.proof-label {
  font-size: 10px;
  color: rgba(184,146,90,.55);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(184,146,90,.12);
}

/* RIGHT */
.hero-right { position: relative; }
.hero-visual { position: relative; }

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-img {
  width: 100%;
  height: 580px;
  object-fit: contain;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
  border: none;
}

/* Floating cards on the photo */
.hero-float {
  position: absolute;
  background: rgba(13,20,40,.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184,146,90,.18);
  border-radius: 10px;
  padding: 14px 18px;
  animation: float-card 4s ease-in-out infinite;
}
.hero-float--tl {
  top: 20px; left: -28px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation-delay: 0s;
}
.hero-float--br {
  bottom: 28px; right: -24px;
  animation-delay: 2s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.float-icon { font-size: 24px; flex-shrink: 0; }
.float-content { text-align: left; }
.float-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(184,146,90,.6);
  margin-bottom: 3px;
}
.float-num {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--beige);
}
.float-stat { text-align: center; }
.float-big {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--beige);
  line-height: 1;
}
.float-small {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  display: block;
}

/* Credential row below photo */
.hero-cred-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cred-chip {
  background: rgba(184,146,90,.08);
  border: 1px solid rgba(184,146,90,.15);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(184,146,90,.8);
  text-decoration: none;
}
.cred-chip--link {
  transition: background .2s, border-color .2s;
}
.cred-chip--link:hover {
  background: rgba(184,146,90,.18);
  border-color: rgba(184,146,90,.4);
}

/* ââââââââââââââââââââââââââââââââââââââââââ
   FOMO BAND
ââââââââââââââââââââââââââââââââââââââââââ */
.fomo-band {
  background: #13100A;
  border-top: 1px solid rgba(184,146,90,.2);
  border-bottom: 1px solid rgba(184,146,90,.2);
  padding: 14px 40px;
}
.fomo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  color: var(--white);
  flex-wrap: wrap;
}
.fomo-dot {
  width: 8px; height: 8px;
  background: var(--beige);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.fomo-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fomo-bar {
  width: 80px; height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 4px;
  overflow: hidden;
}
.fomo-progress {
  height: 100%;
  width: 60%;
  background: var(--white);
  border-radius: 4px;
}
.fomo-count {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.fomo-cta {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.fomo-cta:hover { border-color: var(--white); }

/* ââââââââââââââââââââââââââââââââââââââââââ
   TICKER
ââââââââââââââââââââââââââââââââââââââââââ */
.ticker-section {
  background: var(--navy-mid);
  border-top: 1px solid rgba(184,146,90,.07);
  border-bottom: 1px solid rgba(184,146,90,.07);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.ticker-label {
  background: rgba(184,146,90,.1);
  border-right: 1px solid rgba(184,146,90,.12);
  padding: 14px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--beige);
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker-wrap {
  flex: 1;
  overflow: hidden;
  padding: 0;
}
.ticker {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
  gap: 0;
}
.ticker:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,.58);
  padding: 14px 28px;
}
.ticker-item strong { color: var(--beige); }
.ticker-sep {
  color: rgba(184,146,90,.25);
  font-size: 10px;
  flex-shrink: 0;
}

/* ââââââââââââââââââââââââââââââââââââââââââ
   SECTIONS â BASE
ââââââââââââââââââââââââââââââââââââââââââ */
.section-dark  { background: var(--navy);     padding: 100px 40px; }
.section-light { background: var(--beige-pale); padding: 100px 40px; }
.section-navy  { background: var(--navy-mid);  padding: 100px 40px; }

/* ââââââââââââââââââââââââââââââââââââââââââ
   PROBLÃME
ââââââââââââââââââââââââââââââââââââââââââ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.problem-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(184,146,90,.09);
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: border-color .25s, background .25s, transform .25s;
  cursor: default;
}
.problem-card:hover {
  border-color: rgba(184,146,90,.22);
  background: rgba(255,255,255,.055);
  transform: translateY(-3px);
}
.problem-card--highlight {
  background: rgba(184,146,90,.06);
  border-color: rgba(184,146,90,.18);
}
.problem-card--highlight:hover {
  background: rgba(184,146,90,.1);
  border-color: rgba(184,146,90,.32);
}
.problem-icon {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--beige);
  opacity: .35;
  margin-bottom: 16px;
  line-height: 1;
}
.problem-card h3 {
  font-size: 19px;
  color: var(--white);
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 14px;
  color: rgba(255,255,255,.48);
  line-height: 1.75;
}
.problem-card--highlight p { color: rgba(255,255,255,.6); }
.problem-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--beige);
  text-decoration: none;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(184,146,90,.3);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.problem-cta:hover { border-color: var(--beige); }

/* ââââââââââââââââââââââââââââââââââââââââââ
   QUI JE SUIS
ââââââââââââââââââââââââââââââââââââââââââ */
.split-visual { display: flex; flex-direction: column; gap: 16px; }

.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.split-photo {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.badge-closer {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  border: 1px solid rgba(184,146,90,.18);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
}
.badge-icon { font-size: 28px; flex-shrink: 0; }
.badge-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(184,146,90,.55);
  margin-bottom: 4px;
}
.badge-org { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 6px; }
.badge-amount {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--beige);
}

.credential-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.credential-item {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
  text-decoration: none;
}
.credential-podcast {
  color: var(--beige);
  font-weight: 600;
  transition: opacity .2s;
}
.credential-podcast:hover { opacity: .75; }

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  color: var(--navy);
  border-left: 3px solid var(--beige);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.55;
}

.media-row { display: flex; gap: 14px; flex-wrap: wrap; }
.media-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--beige-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  flex: 1;
  min-width: 180px;
  transition: border-color .2s, transform .2s;
}
.media-item { text-decoration: none; }
.media-item:hover { border-color: var(--beige); transform: translateY(-2px); }
.media-item--link .media-show { color: var(--navy); }
.media-item--link .media-host { color: var(--beige); font-weight: 600; }
.media-logo { font-size: 22px; flex-shrink: 0; }
.media-show { font-size: 14px; font-weight: 600; color: var(--navy); }
.media-host { font-size: 12px; color: var(--text-soft); margin-top: 2px; }

/* ââââââââââââââââââââââââââââââââââââââââââ
   TÃMOIGNAGES
ââââââââââââââââââââââââââââââââââââââââââ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: left;
}

.testimonial-card {
  background: rgba(255,255,255,.038);
  border: 1px solid rgba(184,146,90,.09);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .25s, transform .25s, background .25s;
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(184,146,90,.22);
  background: rgba(255,255,255,.06);
  transform: translateY(-3px);
}
.testimonial-card--featured {
  background: rgba(184,146,90,.06);
  border-color: rgba(184,146,90,.22);
}
.testimonial-card--featured:hover {
  background: rgba(184,146,90,.09);
  border-color: rgba(184,146,90,.35);
}
.testimonial-featured-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 16px;
  display: block;
}

.testimonial-stars {
  color: var(--or);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

/* Avatar circles with initials */
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1px solid rgba(184,146,90,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--beige);
  flex-shrink: 0;
  letter-spacing: .04em;
}
.testimonial-avatar--gold {
  background: rgba(212,168,83,.15);
  border-color: rgba(212,168,83,.4);
  color: var(--or);
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.52);
}
.author-ca {
  font-size: 13px;
  font-weight: 700;
  color: var(--beige);
  margin-top: 3px;
}
.author-ca--featured { color: var(--or); font-size: 14px; }

.testimonial-yt {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--beige);
  text-decoration: none;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(184,146,90,.3);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.testimonial-yt:hover { border-color: var(--beige); }

.yt-cta { text-align: center; }

/* ââââââââââââââââââââââââââââââââââââââââââ
   MÃTHODE
ââââââââââââââââââââââââââââââââââââââââââ */
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

/* Connector line between steps */
.method-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(184,146,90,.05) 0%,
    rgba(184,146,90,.18) 30%,
    rgba(184,146,90,.18) 70%,
    rgba(184,146,90,.05) 100%);
  z-index: 0;
}

.method-step {
  background: rgba(255,255,255,.038);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  position: relative;
  z-index: 1;
}
.method-step:hover {
  border-color: rgba(184,146,90,.28);
  transform: translateY(-4px);
}

.step-week {
  background: rgba(184,146,90,.08);
  padding: 12px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--beige);
  border-bottom: 1px solid rgba(184,146,90,.08);
}
.step-content { padding: 24px; }
.step-content h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 13.5px;
  color: rgba(255,255,255,.48);
  line-height: 1.75;
  margin-bottom: 20px;
}
.step-deliverable {
  font-size: 11px;
  font-weight: 600;
  color: var(--beige);
  background: rgba(184,146,90,.08);
  padding: 8px 14px;
  border-radius: var(--radius);
  display: inline-block;
}

/* ââââââââââââââââââââââââââââââââââââââââââ
   OFFRE
ââââââââââââââââââââââââââââââââââââââââââ */

/* ROI Statement banner */
.roi-statement {
  background: linear-gradient(135deg, rgba(26,107,74,.08) 0%, rgba(26,107,74,.04) 100%);
  border: 1px solid rgba(26,107,74,.2);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  text-align: center;
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 36px;
  line-height: 1.65;
}
.roi-statement strong { color: var(--navy); }

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  text-align: left;
}
.offer-header {
  background: var(--navy);
  padding: 44px 52px;
  text-align: center;
}
.offer-name {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 16px;
}
.offer-price {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.offer-split {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.offer-spots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184,146,90,.14);
  border: 1px solid rgba(184,146,90,.28);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 13px;
  color: rgba(255,255,255,.82);
}
.spots-dot {
  width: 8px; height: 8px;
  background: var(--beige);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.offer-guarantee {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 52px;
  background: rgba(26,107,74,.05);
  border-bottom: 1px solid rgba(26,107,74,.1);
}
.guarantee-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.guarantee-text strong {
  display: block;
  font-size: 16px;
  color: var(--vert);
  margin-bottom: 8px;
}
.guarantee-text p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

.offer-deliverables {
  padding: 32px 52px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.deliverable {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.offer-criteria {
  padding: 32px 52px;
  border-bottom: 1px solid var(--border);
}
.criteria-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.criteria-item {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}

.offer-card .btn-primary {
  border-radius: 0;
  padding: 22px;
  font-size: 16px;
}
.offer-note {
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: var(--text-soft);
}

/* ââââââââââââââââââââââââââââââââââââââââââ
   CALCULATEUR LIVE
ââââââââââââââââââââââââââââââââââââââââââ */

/* Live display result */
.calc-display {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,146,90,.12);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
  margin-bottom: 32px;
  transition: border-color .4s, background .4s;
}
.calc-display.calc-active {
  border-color: rgba(184,146,90,.35);
  background: rgba(184,146,90,.05);
}
.calc-display-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(184,146,90,.55);
  margin-bottom: 12px;
}
.calc-display-amount {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  transition: color .3s;
  letter-spacing: -.01em;
}
.calc-display.calc-active .calc-display-amount {
  color: var(--beige);
}
.calc-display-note {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* Form */
.audit-form {
  background: rgba(255,255,255,.04);
  border: none;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: left;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form-group select,
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(184,146,90,.15);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--white);
  background: rgba(255,255,255,.05);
  appearance: none;
  margin-bottom: 8px;
  transition: border-color .2s;
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: rgba(184,146,90,.4);
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input::placeholder { color: rgba(255,255,255,.3); }

.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-top: 12px;
}

.audit-result {
  background: rgba(26,107,74,.07);
  border: 1px solid rgba(26,107,74,.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 24px;
}
.result-icon { font-size: 40px; margin-bottom: 16px; }
.audit-result h3 { font-size: 24px; color: var(--vert); margin-bottom: 12px; }
.audit-result p  { font-size: 16px; color: rgba(255,255,255,.5); line-height: 1.65; }
.audit-result a  { color: var(--beige); }

/* ââââââââââââââââââââââââââââââââââââââââââ
   BOOKING
ââââââââââââââââââââââââââââââââââââââââââ */
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  text-align: left;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 15px;
  color: var(--text);
  box-shadow: var(--shadow-card);
  transition: border-color .2s, transform .2s;
}
.booking-step:hover { border-color: var(--beige-light); transform: translateX(4px); }
.step-num {
  width: 34px; height: 34px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.booking-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 16px;
}

/* Hesitant block */
.hesitant-block {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.hesitant-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.social-links-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  border: 1px solid transparent;
}
.social-btn:hover { opacity: .88; transform: translateY(-2px); }
.social-btn--ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.social-btn--li { background: #0A66C2; color:#fff; }
.social-btn--yt { background: #FF0000; color:#fff; }
.social-btn--wa { background: #25D366; color:#fff; }

/* ââââââââââââââââââââââââââââââââââââââââââ
   FOOTER
ââââââââââââââââââââââââââââââââââââââââââ */
.footer {
  background: var(--navy);
  padding: 52px 40px;
  border-top: 1px solid rgba(184,146,90,.07);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.footer-brand span { color: var(--beige); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.38); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 13px;
  color: rgba(184,146,90,.45);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.footer-links a:hover { color: var(--beige); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.18); }

/* ââââââââââââââââââââââââââââââââââââââââââ
   ANIMATIONS UTILITAIRES
ââââââââââââââââââââââââââââââââââââââââââ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(.85); }
}

/* ââââââââââââââââââââââââââââââââââââââââââ
   RESPONSIVE
ââââââââââââââââââââââââââââââââââââââââââ */
@media (max-width: 1100px) {
  .hero-split { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-proof { justify-content: center; }
  .hero-right { max-width: 520px; margin: 0 auto; }
  .hero-img { height: 400px; }
  .hero-float--tl { left: -10px; }
  .hero-float--br { right: -10px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .method-steps::before { display: none; }
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; }
  .container--split { grid-template-columns: 1fr; gap: 48px; }
  .hero-proof { gap: 12px; }
  .proof-divider { display: none; }
  .proof-item { padding: 0 16px; }
}

@media (max-width: 600px) {
  .container,
  .section-dark,
  .section-light,
  .section-navy { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 120px 20px 72px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-img { height: 320px; }
  .hero-float--tl { display: none; }
  .hero-float--br { right: 10px; bottom: 14px; }
  .problem-grid { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr; }
  .offer-deliverables { grid-template-columns: 1fr; }
  .offer-header,
  .offer-guarantee,
  .offer-deliverables,
  .offer-criteria { padding: 24px; }
  .hero-proof { flex-direction: column; align-items: center; gap: 20px; }
  .badge-closer { flex-direction: column; text-align: center; }
  .media-row { flex-direction: column; }
  .social-btn { padding: 10px 14px; font-size: 13px; }
  .fomo-band { padding: 12px 20px; }
  .fomo-bar-wrap { display: none; }
  .ticker-label { display: none; }
  .calc-display-amount { font-size: 40px; }
  .audit-form { padding: 24px; }
  .nav-mobile { padding: 16px 20px 24px; }
  .cred-chip { font-size: 11px; }
  .hero-cred-row { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .roi-statement { padding: 18px 20px; font-size: 15px; }
  .faq-grid { gap: 12px; }
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââ
   FAQ SECTION
ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.faq-section {
  padding: 100px 0;
  background: var(--navy);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--navy-mid);
  border: 1px solid rgba(184,146,90,.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item[open] {
  border-color: rgba(184,146,90,.4);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--beige);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}
.faq-answer strong { color: var(--text-primary); }

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââ
   VIDEO TESTIMONIALS
ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto 56px;
  max-width: 1100px;
}
.video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,146,90,.12);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
  cursor: pointer;
}
.video-card:hover {
  background: rgba(184,146,90,.06);
  border-color: rgba(184,146,90,.3);
  transform: translateY(-4px);
}
.video-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #0A0F1C;
  flex-shrink: 0;
  transition: background .2s;
}
.video-card:hover .video-play { background: var(--beige-light); }
.video-result {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.15;
}
.video-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--beige);
}
.video-context {
  font-size: 12px;
  color: var(--ivory-soft);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .video-testimonials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .video-testimonials { grid-template-columns: 1fr 1fr; gap: 12px; }
  .video-result { font-size: 18px; }
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââ
   OBJECTIONS SECTION
ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.objections-section {
  padding: 100px 0;
  background: var(--navy);
}

.obj-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.obj-item {
  border-bottom: 1px solid rgba(184,146,90,.1);
  overflow: hidden;
}
.obj-item:first-of-type { border-top: 1px solid rgba(184,146,90,.1); }
.obj-item[open] { border-bottom-color: rgba(184,146,90,.22); }

.obj-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 4px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: var(--ivory);
  list-style: none;
  gap: 20px;
  transition: color .2s;
}
.obj-question::-webkit-details-marker { display: none; }
.obj-question:hover { color: var(--white); }
.obj-item[open] .obj-question { color: var(--white); }

.obj-chevron {
  font-size: 24px;
  font-weight: 300;
  font-style: normal;
  color: var(--beige);
  flex-shrink: 0;
  transition: transform .3s ease;
  font-family: var(--font-sans);
}
.obj-item[open] .obj-chevron { transform: rotate(45deg); }

.obj-answer {
  padding: 0 4px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.obj-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ivory-soft);
}
.obj-answer p strong { color: var(--ivory); }
.obj-answer p em { color: var(--beige); font-style: normal; }

.obj-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}
.obj-list li {
  font-size: 14px;
  color: var(--ivory-soft);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.obj-list li::before {
  content: 'â';
  position: absolute;
  left: 0;
  color: var(--beige);
}
.obj-list li strong { color: var(--ivory); }

.obj-cta-row { margin-top: 6px; }
.obj-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--beige);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184,146,90,.3);
  padding-bottom: 1px;
  transition: border-color .2s, color .2s;
}
.obj-link:hover { border-color: var(--beige); color: var(--beige-light); }

@media (max-width: 640px) {
  .obj-question { font-size: 15px; padding: 20px 4px; }
  .obj-answer p { font-size: 14px; }
}
