/* =========================================================
   LeadersWayPro — Design System
   "Communiquez comme un Leader"
   ========================================================= */

:root {
  /* Palette */
  --navy-950: #0b1626;
  --navy-900: #0f1e33;
  --navy-800: #16273f;
  --navy-700: #1f3454;
  --gold-500: #c9a227;
  --gold-400: #d9b84a;
  --gold-100: #f6ecc9;
  --cream-50: #faf7f2;
  --cream-100: #f2ede2;
  --ink-900: #1b1f27;
  --ink-700: #3d4451;
  --ink-500: #6b7280;
  --white: #ffffff;
  --success: #2f7a4f;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(15, 30, 51, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 30, 51, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 30, 51, 0.18);
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 0.5em; color: var(--navy-900); }
p { margin: 0 0 1em; color: var(--ink-700); }
button { font-family: inherit; cursor: pointer; }

/* -------------------- Utility -------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--navy { background: var(--navy-900); color: var(--cream-50); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(250, 247, 242, 0.78); }
.section--cream { background: var(--cream-100); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.lead { font-size: 19px; color: var(--ink-700); max-width: 620px; }
.lead-center { margin-left: auto; margin-right: auto; text-align: center; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(201, 162, 39, 0.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); }
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-800); }
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-ghost:hover { background: var(--navy-900); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 14px; }

/* -------------------- Header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(15, 30, 51, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--navy-900); }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream-50);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 0 0 1px rgba(15, 30, 51, 0.08), var(--shadow-sm);
  position: relative;
  overflow: hidden;
  flex: none;
}
.brand-mark img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.brand-sub { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-500); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--navy-900); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,30,51,0.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  transition: background var(--transition), border-color var(--transition);
}
.lang-switch:hover { background: var(--cream-100); border-color: rgba(15,30,51,0.3); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(15,30,51,0.12);
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content:""; display:block; width: 18px; height: 2px; background: var(--navy-900); }
.nav-toggle { flex-direction: column; gap: 4px; }

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 600px at 85% -10%, rgba(201,162,39,0.16), transparent 60%),
              linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-900));
  color: var(--white);
  padding: 110px 0 120px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.18);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,39,0.35);
  background: rgba(201,162,39,0.08);
  color: var(--gold-100);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 58px);
  margin-bottom: 22px;
}
.hero h1 em { color: var(--gold-400); font-style: normal; }
.hero p.lead { color: rgba(250,247,242,0.82); font-size: 19px; margin-bottom: 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 30px; color: var(--gold-400); }
.hero-stat span { font-size: 13px; color: rgba(250,247,242,0.65); }

.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--navy-950); font-size: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-avatar img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 8%;
  border-radius: 50%;
}
.hero-card-header strong { display: block; color: var(--white); font-size: 16px; }
.hero-card-header span { font-size: 13px; color: rgba(250,247,242,0.65); }
.hero-checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(250,247,242,0.88);
  font-size: 15px;
}
.hero-checklist li:first-child { border-top: none; }
.check-dot {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201,162,39,0.16);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; margin-top: 1px;
}

/* -------------------- Logos strip -------------------- */
.strip { padding: 36px 0; border-bottom: 1px solid rgba(15,30,51,0.06); background: var(--white); }
.strip-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); text-align: center; margin-bottom: 18px; }
.strip-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; color: var(--ink-500); font-family: var(--font-display); font-size: 18px; opacity: 0.75; }

/* -------------------- Cards grid -------------------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,30,51,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

/* -------------------- Method / steps -------------------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding: 30px 24px 24px; background: var(--white); border-radius: var(--radius-md); border: 1px solid rgba(15,30,51,0.06); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold-500);
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14.5px; margin-bottom: 0; }

/* -------------------- Offer / pricing cards -------------------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.offer {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(15,30,51,0.07);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer--featured {
  background: linear-gradient(165deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.offer--featured h3, .offer--featured .offer-price { color: var(--white); }
.offer--featured p { color: rgba(250,247,242,0.78); }
.offer-badge {
  position: absolute; top: -14px; left: 32px;
  background: var(--gold-500); color: var(--navy-950);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.offer-tag { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 10px; }
.offer h3 { font-size: 24px; margin-bottom: 6px; }
.offer-price { font-family: var(--font-display); font-size: 32px; color: var(--navy-900); margin: 10px 0 6px; }
.offer-price span { font-size: 14px; font-weight: 400; color: var(--ink-500); }
.offer-desc { font-size: 15px; margin-bottom: 22px; }
.offer-features { flex: 1; margin-bottom: 26px; }
.offer-features li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 14.5px; }
.offer-features .tick { flex: none; color: var(--gold-500); font-weight: 700; }

/* -------------------- Testimonials -------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--white); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(15,30,51,0.05); }
.testi-stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.testi p { font-size: 15px; color: var(--ink-700); font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-900); color: var(--gold-400); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }
.testi-person strong { display: block; font-size: 14.5px; color: var(--navy-900); }
.testi-person span { font-size: 13px; color: var(--ink-500); }

/* -------------------- About / split -------------------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split.reverse .split-media { order: 2; }
.split-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy-800), var(--navy-950));
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  box-shadow: var(--shadow-lg);
}
.split-media .initials {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 140px; color: rgba(201,162,39,0.18);
}
.split-media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.split-media .media-caption {
  position: relative; z-index: 1; padding: 26px; color: var(--white);
  background: linear-gradient(0deg, rgba(11,22,38,0.85), transparent);
  width: 100%;
}
.split-media .media-caption strong { display: block; font-family: var(--font-display); font-size: 20px; }
.split-media .media-caption span { font-size: 13px; color: var(--gold-100); }
.value-list li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(15,30,51,0.08); }
.value-list li:first-child { border-top: none; }
.value-list .num { font-family: var(--font-display); color: var(--gold-500); font-size: 20px; }

/* -------------------- FAQ -------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(15,30,51,0.09); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 16.5px; color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--gold-500); transition: transform var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 22px; margin: 0; color: var(--ink-700); }

/* -------------------- CTA band -------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(201,162,39,0.12);
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; font-size: 28px; }
.cta-band p { color: rgba(250,247,242,0.78); margin: 0; }
.cta-band-actions { display: flex; gap: 14px; flex: none; }

/* -------------------- Forms -------------------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15,30,51,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-900); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15,30,51,0.15);
  font-family: inherit;
  font-size: 15px;
  background: var(--cream-50);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--ink-500); margin-top: 14px; }

.contact-info-item { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(15,30,51,0.08); }
.contact-info-item:first-child { border-top: none; padding-top: 0; }
.contact-info-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item strong { display: block; color: var(--navy-900); font-size: 15px; margin-bottom: 2px; }
.contact-info-item span, .contact-info-item a { font-size: 14.5px; color: var(--ink-700); }

.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background var(--transition);
}
.social-row a:hover { background: var(--gold-500); color: var(--navy-950); }

/* -------------------- Page header (interior pages) -------------------- */
.page-header {
  background: radial-gradient(900px 500px at 90% -20%, rgba(201,162,39,0.14), transparent 60%),
              linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 72px 0 64px;
}
.page-header .eyebrow { color: var(--gold-400); }
.page-header h1 { color: var(--white); font-size: clamp(32px, 4vw, 46px); margin-bottom: 14px; }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: rgba(250,247,242,0.6); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold-400); }

/* -------------------- Footer -------------------- */
.site-footer { background: var(--navy-950); color: rgba(250,247,242,0.72); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: var(--font-display); font-size: 20px; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(250,247,242,0.5);
  flex-wrap: wrap; gap: 12px;
}

/* -------------------- Misc pages: process / values -------------------- */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.pill {
  padding: 7px 14px; border-radius: 999px;
  background: rgba(201,162,39,0.1); color: var(--gold-500);
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(201,162,39,0.25);
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { aspect-ratio: 16/9; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .offer--featured { transform: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
}
@media (max-width: 720px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  body.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--cream-50);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: var(--shadow-md);
  }
}

/* -------------------- Reveal animation -------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
