/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --white:   #f8f6f2;
  --grey:    #e8e5df;
  --mid:     #8a8580;
  --accent:  #c4a882;
  --dark-bg: #111010;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --nav-h:   72px;
  --section: 120px;
  --radius:  2px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
  text-align: justify;
}

/* Navigation container */
html, body {
  overflow-y: scroll;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
  overflow: visible;
}

#navbar.scrolled {
  background: rgba(248, 246, 242, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

#navbar.scrolled .nav-logo-img {
  filter: brightness(0);
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s;
}

.nav-logo-img:hover { opacity: 0.85; }

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.8);
  transition: color 0.25s;
  white-space: nowrap;
}

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

#navbar.scrolled .nav-links a { color: var(--mid); }
#navbar.scrolled .nav-links a:hover { color: var(--black); }

/* Dropdown Espaces privés */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-trigger::after {
  content: '▾';
  font-size: 0.7em;
  transition: transform 0.2s;
}

.nav-dropdown-wrapper:hover .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  list-style: none;
  background: var(--dark-bg, #1a1f20);
  border: 1px solid rgba(196,168,130,0.2);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 200;
  transition: opacity 0.2s;
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.85) !important;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-dropdown li a:hover {
  color: var(--accent) !important;
  background: rgba(196,168,130,0.08);
}

#navbar.scrolled .nav-dropdown-trigger {
  color: var(--mid) !important;
}

#navbar.scrolled .nav-dropdown-trigger:hover {
  color: var(--black) !important;
}

#navbar.scrolled .nav-dropdown {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
}

#navbar.scrolled .nav-dropdown li a {
  color: var(--mid) !important;
}

#navbar.scrolled .nav-dropdown li a:hover {
  color: var(--accent) !important;
}

/* Password gate */
.password-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg, #1a1f20);
}

.password-box {
  text-align: center;
  padding: 60px 40px;
  max-width: 420px;
  width: 100%;
}

.password-box h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.password-box p {
  font-size: 0.9rem;
  color: rgba(248,246,242,0.5);
  margin-bottom: 36px;
}

.password-box input[type="password"] {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,168,130,0.3);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.25s;
}

.password-box input[type="password"]:focus {
  border-color: var(--accent);
}

.password-box .btn-primary {
  width: 100%;
  justify-content: center;
}

.password-box .pw-error {
  color: #e07070;
  font-size: 0.85rem;
  margin-top: 12px;
  display: none;
}

.private-content {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-toggle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(248,246,242,0.6);
  border: 1px solid rgba(248,246,242,0.3);
  padding: 5px 10px;
  border-radius: var(--radius);
  transition: all 0.25s;
}

.lang-toggle:hover {
  color: var(--white);
  border-color: rgba(248,246,242,0.7);
}

#navbar.scrolled .lang-toggle {
  color: var(--mid);
  border-color: var(--grey);
}

#navbar.scrolled .lang-toggle:hover {
  color: var(--black);
  border-color: var(--mid);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.dark-section .btn-primary,
.btn-primary-light {
  background: var(--white);
  color: var(--black);
}

.dark-section .btn-primary:hover { background: var(--grey); }

.btn-ghost {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  border: 1px solid rgba(248,246,242,0.4);
  color: var(--white);
  border-radius: var(--radius);
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: rgba(248,246,242,0.1);
  border-color: rgba(248,246,242,0.7);
}

.btn-ghost-light {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  border: 1px solid rgba(248,246,242,0.5);
  color: var(--white);
  border-radius: var(--radius);
  transition: all 0.25s;
}

.btn-ghost-light:hover {
  background: rgba(248,246,242,0.12);
  border-color: var(--white);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.4s;
}

#navbar.scrolled .hamburger span { background: var(--black); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  background: var(--white);
  border-top: 1px solid var(--grey);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 12px 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--grey);
  color: var(--black);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1812 0%, #0d0d0b 60%, #1c1814 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,168,130,0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  max-width: 720px;
  margin-left: 10%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

#hero h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 32px;
}

#hero h1 em {
  font-style: italic;
  color: rgba(248,246,242,0.55);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(248,246,242,0.65);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-top {
  display: flex;
  align-items: stretch;
  gap: 48px;
  margin-bottom: 0;
  width: calc(100vw - 45%);
}

.hero-top h1 {
  flex-shrink: 0;
}

.hero-quote {
  margin-left: 20px;
}

.hero-quote {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(196,168,130,0.45);
  border-radius: var(--radius);
  padding: 36px 40px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  min-width: 240px;
  transition: background 0.4s, border-color 0.4s;
}

.hero-quote:hover {
  background: rgba(196,168,130,0.15);
  border-color: rgba(196,168,130,0.9);
}

.hero-quote:hover .hero-quote-mark {
  color: var(--white);
}

.hero-quote:hover p {
  color: rgba(248,246,242,1);
}

.hero-quote-mark {
  display: inline;
  font-family: var(--serif);
  font-size: 1.4em;
  line-height: 0;
  color: var(--accent);
  vertical-align: -0.15em;
}

.hero-quote p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(248,246,242,0.9);
  letter-spacing: 0.01em;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(248,246,242,0.4), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== SECTIONS ===== */
section { padding: var(--section) 0; }

.dark-section {
  background: var(--dark-bg);
  color: var(--white);
}

.light-section {
  background: #f2efe9;
  color: var(--black);
}

/* Method section : override inline dark text colors on light bg */
.light-section [style*="rgba(248,246,242"] {
  color: rgba(26,31,32,0.65) !important;
}
.light-section strong[style*="var(--white)"] {
  color: var(--black) !important;
}
.light-section h2 { color: var(--accent); }

/* Pricing cards stay white on dark bg */
.dark-section .pricing-card {
  background: var(--white);
  color: var(--black);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.dark-section .section-label { color: var(--accent); }

h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 40px;
  margin-top: 32px;
  color: var(--accent);
}

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.dark-section .section-sub { color: rgba(248,246,242,0.55); }

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.img-placeholder {
  aspect-ratio: 4/5;
  background: #e0dbd3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.dark-section .img-placeholder { background: #222120; }

.img-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--mid);
  text-transform: uppercase;
}

.split-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.85;
}

.dark-section .split-text p { color: rgba(248,246,242,0.6); }

.feature-list {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 40px 0 0;
  flex-wrap: wrap;
}

.feature-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
}

.feature-list span:last-child {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--mid);
  text-transform: uppercase;
}

.dark-section .feature-num {
  color: var(--white);
}

.dark-section .feature-list span:last-child {
  color: rgba(248,246,242,0.55);
}

.dark-section .bio-linkedin {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.card {
  padding: 48px 40px;
  background: #283133;
  border: 1px solid #3a3d42;
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.card-icon {
  margin-bottom: 24px;
}

.card-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 16px;
  line-height: 1.3;
  color: var(--white);
}

.card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(248,246,242,0.5);
  line-height: 1.8;
}

/* ===== CARD CTA ===== */
.card-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(196,168,130,0.4);
  padding-bottom: 2px;
  transition: border-color 0.25s, color 0.25s;
}

.card-cta:hover {
  color: var(--white);
  border-color: var(--white);
}

.card-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.card-ctas .card-cta {
  margin-top: 0;
}

@keyframes cta-nudge {
  0%, 75%, 100% { transform: translateX(0); }
  82%           { transform: translateX(5px); }
  89%           { transform: translateX(2px); }
  95%           { transform: translateX(4px); }
}

.card-cta--animated {
  animation: cta-nudge 3.5s ease-in-out infinite;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto 40px;
}

.pricing-grid--4 {
  max-width: 1100px;
}

.pricing-card {
  position: relative;
  padding: 56px 48px;
  border: 2px solid #c8bfb0;
  border-radius: var(--radius);
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}

.pricing-card:hover {
  box-shadow: 0 16px 60px rgba(0,0,0,0.22);
  transform: translateY(-6px);
  border-color: var(--accent);
}

.pricing-card.featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-label { color: rgba(248,246,242,0.5); }

.pricing-amount {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-unit {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 40px;
}

.pricing-card.featured .pricing-unit { color: rgba(248,246,242,0.5); }

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.9rem;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  color: var(--mid);
  line-height: 1.5;
}

.pricing-card.featured .pricing-features li { color: rgba(248,246,242,0.65); }

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pricing-footnote {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--mid);
  margin-top: 8px;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid);
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.testimonial {
  padding-top: 32px;
  border-top: 1px solid rgba(248,246,242,0.12);
}

.testimonial-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(248,246,242,0.8);
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}

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

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}

input, textarea, select {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--grey);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

input:focus, textarea:focus, select:focus {
  border-bottom-color: var(--black);
}

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

.dark-section label {
  color: rgba(248,246,242,0.55);
}

.dark-section input,
.dark-section textarea,
.dark-section select {
  color: var(--white);
  border-bottom-color: rgba(248,246,242,0.25);
}

.dark-section input::placeholder,
.dark-section textarea::placeholder {
  color: rgba(248,246,242,0.25);
}

.dark-section input:focus,
.dark-section textarea:focus,
.dark-section select:focus {
  border-bottom-color: var(--accent);
}

.dark-section select option {
  background: var(--dark-bg);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 0.85rem;
  margin-top: 8px;
}

.rgpd-notice {
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--mid);
  text-align: center;
  font-style: italic;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--mid);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--mid);
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.footer-linkedin {
  display: inline-flex;
  color: var(--mid);
  transition: color 0.2s;
}

.footer-linkedin:hover {
  color: var(--accent);
}

/* ===== COACH PHOTO ===== */
.coach-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
}

/* ===== FULL BIOGRAPHY ===== */
.bio-full {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--grey);
}

.bio-body {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bio-body p {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
  text-align: justify;
}

.diplome-wrapper {
  margin-top: 40px;
  border-top: 1px solid var(--grey);
  padding-top: 40px;
}

.diplome-img {
  max-width: 320px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.bio-linkedin {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.25s;
}

.bio-linkedin:hover { opacity: 0.5; }

/* ===== FORMATION CONTINUE ===== */
.formation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.formation-item {
  padding: 48px 40px;
  border: 1px solid rgba(248,246,242,0.1);
  transition: border-color 0.25s;
}

.formation-item:hover { border-color: var(--accent); }

.formation-item h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 28px;
  margin-top: 20px;
}

.formation-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(248,246,242,0.5);
  line-height: 1.8;
}

.formation-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.formation-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.formation-list {
  list-style: none;
  margin: 4px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.formation-list li {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(248,246,242,0.5);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.formation-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.formation-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(196,168,130,0.4);
  padding-bottom: 2px;
  transition: border-color 0.25s, color 0.25s;
}

.formation-link:hover {
  color: var(--white);
  border-color: var(--white);
}

.formation-calendar {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(248,246,242,0.1);
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
}

.formation-calendar .section-label {
  text-align: center;
  margin-bottom: 32px;
}

.calendar-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(248,246,242,0.05);
}

.formation-notice {
  font-size: 0.8rem !important;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  color: rgba(248,246,242,0.4) !important;
}

.formation-pay-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.formation-pay-btn {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
}

.formation-pay-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(196, 168, 130, 0.55), 0 4px 16px rgba(196, 168, 130, 0.3);
}

.formation-pay-btn--outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.formation-pay-btn--outline:hover {
  background: rgba(196,168,130,0.1);
}

.formation-cta {
  text-align: center;
  margin-top: 56px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section: 80px; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-content { margin-left: 0; }

  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-reverse { direction: ltr; }
  .split-img { order: -1; }

  .cards-grid { grid-template-columns: 1fr; }
  .formation-grid { grid-template-columns: 1fr; }

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

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

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .card { padding: 36px 28px; }
  .pricing-card { padding: 40px 28px; }
}
