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

:root {
  --cream: #F7F4EE;
  --dark: #1C1A17;
  --gold: #B8933A;
  --gold-light: #E8D5A3;
  --gold-text: #8A6A1A; /* version accessible sur fond clair — ratio ≥4.5:1 */
  --muted: #6B6560;
  --white: #FFFFFF;
  --border: #E2DDD5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.6rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(247,244,238,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-logo img { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #A07E2E !important; color: var(--white) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
}

.hero-left .btn-discover { align-self: flex-start; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-text); /* accessible sur fond clair */
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; }

.btn-primary {
  background: var(--dark);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }

.btn-secondary {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

.btn-discover {
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-discover:hover { background: #A07E2E; transform: translateY(-1px); color: var(--white); }

.btn-full { display: block; text-align: center; width: 100%; }

.hero-right {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.board-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-photo {
  width: clamp(200px, 40vw, 320px);
  height: clamp(200px, 40vw, 320px);
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold);
  display: block;
}

.board-label { margin-top: 2rem; text-align: center; }

.board-label p {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-label .elo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.board-subtitle { letter-spacing: 0.18em !important; margin-bottom: 0.4rem; }
.board-since { letter-spacing: 0.1em !important; opacity: 0.6; }

.hero-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  font-weight: 600;
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.05em;
}

/* STATS BAR */
.stats-bar {
  background: var(--gold);
  padding: 1.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-align: center;
}

/* SECTIONS */
section { padding: 6rem 4rem; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-text); /* accessible sur fond clair */
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  max-width: 560px;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.divider { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }

/* BIO */
.bio-section { background: var(--cream); padding: 7rem 4rem; }

.bio-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bio-body {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.bio-link { margin-top: 0.75rem; display: block; }

.bio-quote {
  background: var(--dark);
  border-left: 3px solid var(--gold);
  padding: 2.8rem 2.5rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.bio-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.bio-quote cite {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* TÉMOIGNAGES */
.testimonials-section {
  background: var(--dark);
  padding: 6rem 4rem;
  text-align: center;
}

.testimonials-section .section-eyebrow { color: var(--gold); }
.testimonials-section .section-title { color: var(--white); margin: 0 auto 1rem; }
.testimonials-section .testimonial-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.testimonials-section .testimonial-quote-mark { color: var(--gold); }
.testimonials-section .testimonial-text { color: rgba(255,255,255,0.88); }
.testimonials-section .testimonial-name { color: var(--white); }
.testimonials-section .testimonial-role { color: rgba(255,255,255,0.45); }
.testimonials-section .testimonial-author { border-top-color: rgba(255,255,255,0.1); }

.testimonials-rating {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

.testimonials-rating strong { color: var(--gold); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  max-width: 860px;
  margin: 3rem auto 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  text-align: left;
  transition: box-shadow 0.25s;
}

.testimonial-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.07); }

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 0.6;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-name { font-weight: 500; color: var(--dark); font-size: 0.88rem; }
.testimonial-role { font-size: 0.76rem; color: var(--muted); font-weight: 300; line-height: 1.4; }

.testimonials-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.testimonial-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,147,58,0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s, opacity 0.2s;
}

.testimonial-cta-link:hover { border-color: var(--gold); opacity: 0.8; }

/* PROFIL */
.profile-section { padding: 0; background: var(--cream); }

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.profile-text { color: var(--muted); font-size: 0.95rem; font-weight: 300; line-height: 1.8; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 2px;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.partner-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }

.partner-logo-wrap {
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-logo { max-width: 80px; max-height: 80px; object-fit: contain; }

.partner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

/* BÉNÉFICES */
.benefits-section { background: var(--dark); }

.benefits-left {
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-section .benefits-left { max-width: none; margin: 0; padding: 5rem 3rem; }

.benefits-left .section-eyebrow { color: var(--gold); }
.benefits-left .section-title { color: var(--white); max-width: none; font-size: 2rem; }

.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }

.benefits-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 300;
}

.benefit-icon {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; }

.benefit-label { color: var(--white); font-weight: 500; }

/* SPLIT SECTION */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }

.split-cta {
  background: var(--cream);
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 1.5rem;
  border-left: 1px solid var(--border);
}

.split-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-text); /* accessible sur fond clair */
}

.split-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

/* PROCESS */
.process-section { background: var(--dark); padding: 6rem 4rem; text-align: center; }
.process-section .section-eyebrow { color: var(--gold); }
.process-section .section-title { color: var(--white); margin: 0 auto 0.75rem; }

.process-subtitle {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto 3.5rem;
  font-weight: 300;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.08);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.process-item { background: var(--dark); padding: 2.5rem 2rem; text-align: left; }

.process-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-title { font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
.process-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.65; }

/* TARIFS */
.pricing-section { background: var(--cream); padding: 6rem 4rem; text-align: center; }
.pricing-section .section-eyebrow { color: var(--gold); }
.pricing-section .section-title { color: var(--dark); margin: 0 auto 0.75rem; }
.pricing-section .section-subtitle { color: var(--muted); font-size: 0.9rem; max-width: 500px; margin: 0 auto 3rem; }

.pricing-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  max-width: 520px;
  margin: 0 auto;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.pricing-period {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-features li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 600; }

.pricing-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  padding: 0.85rem 1rem;
  background: rgba(184,147,58,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  text-align: left;
  line-height: 1.6;
}

/* Bouton CTA dans la carte tarif */
.pricing-card .btn-primary {
  background: var(--gold);
  color: var(--white);
  margin-top: 0.5rem;
}
.pricing-card .btn-primary:hover { background: #A07E2E; }

/* CONTACT */
.contact-section { background: var(--dark); text-align: center; padding: 7rem 4rem; }
.contact-section .section-eyebrow { color: var(--gold); }
.contact-section .section-title { color: var(--white); margin: 0 auto 1rem; }
.contact-section .section-subtitle { color: rgba(255,255,255,0.5); margin: 0 auto 3rem; }

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  border-radius: 2px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: var(--gold); }

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  cursor: pointer;
}

select.form-input option { background: var(--dark); color: var(--white); }

textarea.form-input { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.form-submit:hover { background: #A07E2E; transform: translateY(-1px); }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 560px;
  margin: 0 auto;
}

.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; display: block; color: var(--gold); }

.form-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.form-success-text { color: rgba(255,255,255,0.55); font-size: 0.95rem; font-weight: 300; line-height: 1.7; }

/* FOOTER */
footer {
  background: #111;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}

footer .logo img { width: 20px; height: 20px; object-fit: contain; opacity: 0.6; filter: invert(1); }
footer .logo span { color: var(--gold); }
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.5); } /* 0.3 → 0.5 : ratio ≥4.5:1 */

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

/* URGENCY */
.hero-urgency { margin-top: 1.4rem; font-size: 0.83rem; color: var(--muted); display: flex; align-items: center; gap: 0.75rem; }
.hero-urgency strong { color: var(--dark); }

.urgency-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c0392b;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-red 1.8s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
  50%       { box-shadow: 0 0 0 7px rgba(192,57,43,0); }
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 101;
}

.nav-toggle span { width: 24px; height: 2px; background: var(--dark); display: block; transition: all 0.3s ease; transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* TABLETTE */
@media (max-width: 1024px) {
  nav { padding: 0.6rem 2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 2.5rem 3rem; }
  .hero-right { padding: 3rem 2.5rem 4rem; min-height: auto; }
  .bio-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bio-quote { padding: 2rem 2rem; }
  .stats-bar { padding: 1.5rem 2rem; gap: 1rem; }
  section { padding: 5rem 2.5rem; }
  .bio-section { padding: 5rem 2.5rem; }
  .benefits-left { padding: 5rem 2.5rem; }
  .split-section .benefits-left { padding: 5rem 2.5rem; }
  .contact-section { padding: 5rem 2.5rem; }
  .process-section { padding: 5rem 2.5rem; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .split-cta { border-left: none; border-top: 1px solid var(--border); align-items: center; text-align: center; padding: 3rem 2.5rem; }
  .profile-info { padding: 4rem 2rem; }
  footer { padding: 2rem 2.5rem; }
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0.75rem 1.25rem; flex-wrap: wrap; gap: 0; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; flex-direction: column; width: 100%; padding: 0.5rem 0 1rem; gap: 0; order: 3; }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--border); }
  .nav-links a { display: block; padding: 0.85rem 0.25rem; font-size: 0.85rem; }
  .nav-links .nav-cta { display: inline-block; margin-top: 0.75rem; padding: 0.5rem 1.25rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
  .hero-left { padding: 2.5rem 1.5rem 2rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 1rem; }
  .btn-primary, .btn-discover { text-align: center; }
  .hero-left .btn-discover { align-self: stretch; }
  .hero-right { padding: 2rem 1.5rem 2.5rem; }
  .hero-urgency { flex-wrap: wrap; font-size: 0.8rem; gap: 0.5rem; }

  .bio-section { padding: 3.5rem 1.5rem; }
  .bio-inner { grid-template-columns: 1fr; gap: 2rem; }
  .bio-quote { padding: 1.6rem 1.25rem; }
  .bio-quote p { font-size: 1.2rem; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 0; gap: 0; }
  .stat-item { padding: 1.25rem 0.75rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.25); }
  .stat-item:nth-last-child(-n+2):not(:nth-child(odd)) { border-bottom: none; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 1.7rem; }
  .stat-label { font-size: 0.68rem; }

  section { padding: 3rem 1.5rem; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 2.5rem; }

  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .partner-card { padding: 1.25rem 0.75rem 1rem; }

  .benefits-left { padding: 3rem 1.5rem; }
  .split-section .benefits-left { padding: 3rem 1.5rem; }
  .split-cta { padding: 2.5rem 1.5rem; }
  .benefits-list { gap: 1.5rem; }
  .benefits-list li { font-size: 0.9rem; }

  .profile-info { padding: 3rem 1.5rem; }
  .profile-name { font-size: 1.6rem; }

  .process-section { padding: 3rem 1.5rem; }
  .contact-section { padding: 3.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .testimonials-section { padding: 3.5rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-section { padding: 3.5rem 1.5rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-amount { font-size: 3.8rem; }
  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; }

  footer { flex-direction: column; text-align: center; gap: 0.6rem; padding: 2rem 1.5rem; }
  img { max-width: 100%; height: auto; }
}

/* ========================
   ACCESSIBILITÉ
   ======================== */

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible — clavier & technologies d'assistance */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Réduit-motion : respecte les préférences système */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ========================
   SCROLL REVEAL
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}
