/* ============================================================
   LeBonConseil — styles.css
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700;1,800&family=Playfair+Display:wght@700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:       #11424e;
  --primary-light: #e8f2f4;
  --dark:          #0d1f24;
  --muted:         #607d82;
  --bg-page:       #f7f9fa;
  --bg-card:       #ffffff;
  --border:        #e2eaec;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --shadow-sm:     0 1px 4px rgba(13,31,36,.06);
  --shadow-md:     0 4px 20px rgba(13,31,36,.08);
  --transition:    .2s ease;
  --max-w:         1160px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1 { font-size: 48px; font-weight: 700; line-height: 1.15; color: var(--dark); }
h2 { font-size: 32px; font-weight: 600; line-height: 1.3;  color: var(--dark); }
h3 { font-size: 20px; font-weight: 600; line-height: 1.4;  color: var(--dark); }
p  { color: var(--muted); }
.small { font-size: 13px; }

/* --- Layout helpers --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-label {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--muted); max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: var(--radius-sm); padding: 12px 24px;
  font-size: 15px; font-weight: 600; border: none;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-secondary {
  background: #fff; color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Cards --- */
.card {
  background: var(--bg-card); border: 0.5px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; color: var(--primary); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
  position: absolute !important;
  top: 0; left: 0; right: 0; width: 100%; z-index: 100;
}
.nav-inner {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  height: 96px;
}
.nav-logo {
  flex-shrink: 0; margin-right: auto; display: flex; align-items: center;
}
.nav-logo-img { height: 52px; width: auto; display: block; filter: brightness(1.2); }
.footer-brand .nav-logo-img { height: 48px; filter: none; }
header.nav .nav-cta,
header.nav .btn.btn-primary.nav-cta {
  background-color: #ffffff !important; color: #082228 !important;
  font-weight: 700 !important; border-radius: 6px !important;
  padding: 12px 28px !important; border: none !important;
  display: inline-block !important;
}
.nav-cta { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a { font-size: 20px; color: rgba(255,255,255,0.7); padding: 8px 18px; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: rgba(77,216,232,0.9); }
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-trigger { font-size: 20px; color: rgba(255,255,255,0.7); padding: 8px 18px; cursor: pointer; display: flex; align-items: center; gap: 5px; user-select: none; transition: color 0.2s; }
.nav-dropdown-trigger:hover { color: #fff; }
.nav-dropdown-trigger .nav-arrow { font-size: 9px; transition: transform 0.2s; }
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu { display: none; position: absolute; top: 52px; left: 0; background: #0d2830; border: 0.5px solid rgba(77,216,232,0.2); border-radius: 10px; padding: 8px 0; min-width: 190px; z-index: 200; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; font-size: 13px; color: rgba(255,255,255,0.75); padding: 9px 16px; text-decoration: none; transition: color 0.2s, background 0.2s; }
.nav-dropdown-menu a:hover { color: #fff; background: rgba(77,216,232,0.07); }
.nav-rdv-link { font-size: 20px; color: rgba(77,216,232,0.85); padding: 7px 18px; text-decoration: none; border: 0.5px solid rgba(77,216,232,0.35); border-radius: 6px; margin-left: 8px; transition: background 0.2s, color 0.2s; }
.nav-rdv-link:hover { background: rgba(77,216,232,0.1); color: #fff; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #ffffff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 24px 24px; border-top: 0.5px solid rgba(255,255,255,0.2);
  background: rgba(8,34,40,0.95);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85);
  padding: 8px 0; border-bottom: 0.5px solid rgba(255,255,255,0.15);
  transition: color var(--transition);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: #ffffff; }
.nav-mobile .btn { margin-top: 12px; width: fit-content; }

/* Nav height compensation — hero sections */
header.nav ~ section:first-of-type,
header.nav + section {
  padding-top: calc(96px + 40px) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark); color: #a8bfc3;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer h4 { font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: #a8bfc3; transition: color var(--transition); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px; font-size: 13px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  background: var(--bg-card); padding: 96px 0 80px;
}

/* Hero with video background */
.hero--video {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 0; border-bottom: none;
  background: var(--dark);
}
.hero-video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
/* Gradient renforcé en bas pour lisibilité du texte */
.hero--video::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,.62) 0%, transparent 100%);
  z-index: 1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 0; padding-bottom: 72px;
  width: 100%;
  margin-top: 80px;
}
.hero--video .hero-eyebrow {
  color: #fff; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
}
.hero.hero--video h1 { color: #fff; font-size: 39px; max-width: 900px; }
.hero--video .hero-sub { color: rgba(255,255,255,.82); }
.hero--video .partners-band { border-top-color: rgba(255,255,255,.15); }
.hero--video .partners-label { color: rgba(255,255,255,.5); }
.hero--video .partners-logos span { color: rgba(255,255,255,.35); }
.hero--video .partners-logos span:hover { color: rgba(255,255,255,.65); }
.hero-btn-secondary {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.6) !important;
}
.hero-btn-secondary:hover { border-color: #fff !important; }
.btn.btn-secondary.hero-btn-secondary {
  background: #ffffff !important;
  color: #082228 !important;
  border: none !important;
  font-weight: 600 !important;
}

.hero-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-light);
  border-radius: 100px; padding: 4px 14px; margin-bottom: 24px;
}
.hero h1 { max-width: 700px; margin-bottom: 20px; }
.hero-sub { font-size: 14px; line-height: 1.6; color: #ffffff !important; text-shadow: 0 1px 4px rgba(0,0,0,0.4); max-width: 560px; margin-bottom: 36px; }
.partners-band {
  margin-top: 64px; padding-top: 32px;
}
.partners-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.40); margin-bottom: 16px;
}
.ticker-wrapper {
  overflow: hidden; width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker-scroll 60s linear infinite;
}
.ticker-set {
  display: flex; align-items: center; gap: 64px; padding: 0 32px;
}
.ticker-set img {
  height: 22px; width: auto; max-width: 90px; object-fit: contain; opacity: 0.85;
  filter: drop-shadow(0px 0px 3px rgba(255,255,255,0.30))
          drop-shadow(0px 0px 1px rgba(255,255,255,0.50));
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.ticker-set img:hover {
  opacity: 1;
  filter: drop-shadow(0px 0px 4px rgba(255,255,255,0.45))
          drop-shadow(0px 0px 2px rgba(255,255,255,0.65));
}
.ticker-set img[src*="SL_RGB_p.png"] { height: 44px; }
.ticker-set img[src*="Lombard_Odier_logo.svg.png"] { height: 66px; }
.ticker-set img[src*="AXA-Logo.wine.png"] { height: 44px; }
.ticker-set img[src*="Julius_Bär_Logo.svg"] { height: 44px; }
.ticker-set img[src*="Credit_Suisse_Logo.svg.png"] { height: 44px; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   QUALIFICATION (homepage)
   ============================================================ */
.gradient-wrapper { /* structure only — backgrounds handled by children */ }
.qualification {
  background-color: #082228;
  background-image:
    linear-gradient(to bottom, #082228 0%, #082228 8%, #11424e 27%, #11424e 100%),
    radial-gradient(circle, rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 100% 100%, 28px 28px;
  background-blend-mode: normal;
  padding-top: 40px; padding-bottom: 80px;
}
.qualification .section-label,
.qualification-label { display: none; }
.qualification h2,
.qualification-title {
  font-size: 48px; font-weight: 800; color: #ffffff;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 130px;
}
.qualification-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto;
  gap: 32px; align-items: stretch;
}
.qualification .card {
  padding: 0; overflow: hidden; border-radius: 16px;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
}
.qualification .card-image {
  width: 100%; aspect-ratio: 21/9; overflow: hidden;
  background: #0a2535; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.qualification .card-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.qualification .card:hover .card-image img { transform: scale(1.04); }
.qualification .card-body {
  padding: 24px 28px 36px; display: flex; flex-direction: column; flex: 1;
}
.qualification .card-body h3 {
  font-size: 19px; font-weight: 700; color: #ffffff; margin: 0 0 12px; line-height: 1.3;
}
.qualification .card-body p {
  font-size: 15px; color: rgba(255,255,255,0.90); line-height: 1.75;
  flex: 1; margin: 0 0 24px; font-weight: 400;
}
.qualification .card-body a {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); text-decoration: none;
}
.qual-card { cursor: pointer; }

/* --- Qual Carousel --- */
.qual-carousel-wrapper {
  overflow: hidden;
  cursor: grab;
}

.qual-carousel-wrapper:active {
  cursor: grabbing;
}

.qual-carousel-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  user-select: none;
}

.qual-carousel-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
}
.qual-carousel-card {
  position: relative;
}
.qual-card-body a {
  position: static;
}
.qual-card-body a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.qual-card-image {
  width: 100%;
  aspect-ratio: 21/9;
  background: #0a2535;
  flex-shrink: 0;
  overflow: hidden;
}
.qual-card-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

.qual-card-body {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.qual-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.qual-card-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  flex: 1;
  margin: 0 0 20px;
}

.qual-card-body a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.qual-dots {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.qual-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.qual-dot.active {
  background: #4dd8e8;
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   WHY AAA
   ============================================================ */
.why {
  background: linear-gradient(to bottom, #11424e 0%, #11424e 65%, #0d1f24 100%);
  margin-bottom: -1px;
}
.why .section-label,
.why [class*="label"] { color: rgba(255,255,255,0.55); }
.why h2 { color: #ffffff; }
.why .card h3 { color: #ffffff; }
.why .card p { color: rgba(255,255,255,0.75); }
.why [class*="stats"],
.why [class*="number"],
.why [class*="chiffre"] { color: #ffffff; }
.why [class*="stats"] span,
.why [class*="label"] { color: rgba(255,255,255,0.60); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.why-block {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 32px;
  backdrop-filter: blur(8px);
}
.why-block h3 { margin-bottom: 10px; color: #ffffff; }
.why-block p { color: #cbd5e0; }
.stats-band {
  display: flex; gap: 48px; margin-top: 56px; flex-wrap: wrap;
}
.stat-item {}
.stat-num {
  font-size: 48px; font-weight: 700; color: #ffffff;
  line-height: 1;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* --- Why Layout (carousel + stats) --- */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.why-carousel {
  position: relative;
  min-height: 260px;
}
.why-card {
  position: absolute;
  top: 0; left: 0; width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.why-card--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.why-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0;
}
.why-dots {
  display: flex;
  gap: 10px;
  margin-top: 56px;
}
.why-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}
.why-dot--active {
  background: #4dd8e8;
  width: 24px;
  border-radius: 4px;
}

/* Comic underline */
.comic-underline {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.comic-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M0 8 C30 2, 70 2, 100 6 C130 10, 170 4, 200 7' stroke='%234dd8e8' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Card pulse animation */
@keyframes card-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(77,216,232,0);
         border-color: rgba(255,255,255,0.15); }
  50%  { box-shadow: 0 8px 40px rgba(77,216,232,0.18),
                     0 0 0 2px rgba(77,216,232,0.22),
                     inset 0 0 20px rgba(77,216,232,0.06);
         border-color: rgba(77,216,232,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(77,216,232,0);
         border-color: rgba(255,255,255,0.15); }
}

.why-dots {
  margin-top: 37px;
}
.why-carousel-spacer {
  display: none;
  visibility: hidden;
  pointer-events: none;
  padding: 24px 20px 40px;
}

.why-carousel-spacer h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.why-carousel-spacer p {
  font-size: 16px;
  line-height: 1.7;
}

.why-carousel-spacer .spacer-icon {
  height: 36px;
  margin-bottom: 16px;
}
.why-right {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 48px;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.why-stat-number {
  font-family: 'Georgia', serif;
  font-size: 56px;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.why-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.why-stats-bar {
  background: #0d1f24;
  padding: 40px 0;
}

.why-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.why-stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-stat-item .why-stat-number {
  font-family: 'Georgia', serif;
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.why-stat-item .why-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 40px;
}

@media (max-width: 768px) {
  .why-stats-row {
    flex-direction: column;
    gap: 24px;
  }
  .why-stat-divider {
    width: 48px;
    height: 1px;
    margin: 0;
  }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background-color: #0d1f24;
  position: relative; overflow: hidden;
  padding-top: 100px; padding-bottom: 48px;
  margin-bottom: -1px;
}
#particles-canvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.cta-section > *:not(#particles-canvas) { position: relative; z-index: 1; }
.cta-line { display: none; }
.cta-30-stack { position: relative; display: inline-block; margin-bottom: 28px; overflow: visible; padding-bottom: 20px; }
.cta-30-min {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 264px; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; overflow: visible;
  background: linear-gradient(90deg, rgba(77,216,232,0.78) 0%, rgba(77,216,232,0.28) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative; z-index: 1; top: 0; margin-bottom: 0;
}
.cta-headline {
  font-size: 62px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.08;
  color: #ffffff; max-width: 860px; margin: 0 auto; position: relative; z-index: 3;
}
.cta-em {
  font-style: italic; color: #fff; font-size: 1.38em;
  position: relative; display: inline; padding-bottom: 9px;
}
.cta-wave {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 14px; overflow: visible;
}
.cta-sub-text {
  font-size: 17px; color: rgba(255,255,255,0.72); max-width: 600px; margin: 20px auto 24px; line-height: 1.6; text-align: center;
}
.cta-section p { color: rgba(255,255,255,0.55); max-width: 400px; margin: 20px auto 40px; }
.cta-section a:first-of-type,
.cta-section .btn-primary {
  background: #ffffff; color: #082228; font-weight: 700;
  font-size: 15px; padding: 16px 36px; border-radius: 6px; border: 2px solid #ffffff;
}
.cta-section a:last-of-type,
.cta-section .btn-secondary {
  background: transparent; color: #ffffff; font-weight: 600;
  font-size: 15px; padding: 16px 36px; border-radius: 6px; border: 2px solid rgba(255,255,255,0.4);
}
.cta-section .btn-secondary:hover { border-color: #fff; }

/* ============================================================
   HERO THÉMATIQUE
   ============================================================ */
.hero-page {
  background: var(--bg-card); padding: 72px 0 64px;
  border-bottom: 0.5px solid var(--border);
}
.hero-page-badge {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--primary); background: var(--primary-light);
  border-radius: 100px; padding: 4px 14px; margin-bottom: 20px;
}
.hero-page h1 { max-width: 680px; margin-bottom: 18px; }
.hero-page .hero-sub { margin-bottom: 32px; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { background: var(--bg-page); }
.video-wrapper {
  max-width: 800px; margin: 40px auto 0;
}
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius-md); background: var(--dark);
  border: 0.5px solid var(--border);
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.video-caption { font-size: 14px; color: var(--muted); text-align: center; margin-top: 16px; }

/* ============================================================
   ARTICLES
   ============================================================ */
.articles { background: var(--bg-card); }
.articles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 40px;
}
.article-card {
  background: var(--bg-page); border: 0.5px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-tag {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--primary);
  background: var(--primary-light); border-radius: 100px;
  padding: 3px 10px; display: inline-block; margin-bottom: 14px;
}
.article-card h3 { font-size: 17px; margin-bottom: 10px; }
.article-card p { font-size: 14px; margin-bottom: 18px; }
.article-card .link {
  font-size: 14px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
}
.article-card .link:hover { text-decoration: underline; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--bg-card); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-image {
  background: var(--primary-light); border-radius: var(--radius-lg);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.about-image span { font-size: 13px; color: var(--muted); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }

.values-section { background: var(--bg-page); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--bg-card); border: 0.5px solid var(--border); border-radius: var(--radius-md); padding: 32px; }
.value-card .card-icon { margin-bottom: 20px; }
.value-card h3 { margin-bottom: 10px; }

.team-section { background: var(--bg-card); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.team-card { background: var(--bg-page); border: 0.5px solid var(--border); border-radius: var(--radius-md); padding: 24px; text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary-light); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.team-avatar span { font-size: 24px; font-weight: 700; color: var(--primary); }
.team-card h3 { font-size: 16px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--muted); }

.partners-section { background: var(--bg-page); }
.partners-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.partner-badge {
  background: var(--bg-card); border: 0.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: color var(--transition), border-color var(--transition);
}
.partner-badge:hover { color: var(--primary); border-color: var(--primary); }

/* ============================================================
   RENDEZ-VOUS PAGE
   ============================================================ */
.rdv-intro { background: var(--bg-card); }
.rdv-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.rdv-benefit { display: flex; gap: 16px; align-items: flex-start; }
.rdv-benefit .card-icon { flex-shrink: 0; }
.rdv-benefit h3 { font-size: 16px; margin-bottom: 6px; }
.rdv-benefit p { font-size: 14px; }

.calendly-section { background: var(--bg-page); }
.calendly-wrapper {
  max-width: 720px; margin: 0 auto;
}
#calendly-placeholder {
  background: var(--bg-card); border: 2px dashed var(--border);
  border-radius: var(--radius-lg); padding: 72px 40px;
  text-align: center;
}
#calendly-placeholder h3 { margin-bottom: 12px; color: var(--muted); }
#calendly-placeholder p { font-size: 14px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-header { background: var(--bg-card); padding: 64px 0 48px; border-bottom: 0.5px solid var(--border); }
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.filter-btn {
  background: var(--bg-page); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.blog-grid-section { background: var(--bg-page); padding: 56px 0; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.blog-card {
  background: var(--bg-card); border: 0.5px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-image {
  background: var(--primary-light); height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-image span { font-size: 13px; color: var(--muted); }
.blog-card-body { padding: 24px; }
.blog-card-body .article-tag { margin-bottom: 12px; }
.blog-card-body h3 { font-size: 16px; margin-bottom: 10px; }
.blog-card-body p { font-size: 14px; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--muted); }

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 30px; line-height: 1.25; }
  h2 { font-size: 22px; line-height: 1.3; }
  .hero.hero--video h1 { font-size: 23px; line-height: 1.25; }
  section { padding: 32px 0; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { flex-wrap: wrap; height: auto; padding: 16px 0; }

  /* Grids → 1 col */
  .why-grid,
  .values-grid,
  .team-grid,
  .rdv-benefits,
  .footer-grid { grid-template-columns: 1fr; }
  .qualification-grid { grid-template-columns: 1fr; }
  .qualification h2,
  .qualification-title { font-size: 32px; margin-bottom: 60px; }
  .qualification .card-image { aspect-ratio: 16/9; }
  .qual-carousel-card { flex: 0 0 100%; }

  .why-carousel {
    min-height: unset;
  }

  .why-card {
    padding: 24px 20px;
  }

  .why-carousel-spacer {
    display: block;
  }

  .why-dots {
    margin-top: 16px;
    position: relative;
    z-index: 2;
  }

  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-right {
    border-left: none;
    border-top: none;
    padding-left: 0;
    padding-top: 8px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }

  .why-stat {
    flex: 1;
    text-align: center;
    align-items: center;
  }

  .why-stat-number {
    font-size: 32px;
  }

  .why-stat-label {
    font-size: 10px;
  }

  .articles-grid,
  .blog-grid { grid-template-columns: 1fr; }

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

  .stats-band { gap: 28px; }

  .hero, .hero--video { padding-top: 185px; padding-bottom: 48px; min-height: auto; }
  .hero-video { object-position: 56% 50%; }
  .hero-page { padding: 48px 0 40px; }
  .hero-content { padding-bottom: 40px; }
  .hero--video h1 { font-size: 20px; line-height: 1.2; margin-bottom: 12px; }
  .hero--video .hero-sub { font-size: 14px; margin-bottom: 20px; }
  .hero--video .btn { padding: 11px 18px; font-size: 14px; }
  .hero--video .btn-group { gap: 8px; }
  .hero--video .partners-band { margin-top: 28px; padding-top: 20px; }
  .hero--void .partners-logos { gap: 10px; }
  .hero--video .partners-logos span { font-size: 12px; }

  .partners-logos { gap: 16px; }

  .cta-section {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .cta-30-min { font-size: 110px; }
  .cta-section { margin-top: 0; }
  .cta-headline { font-size: 32px; max-width: 100%; }
  .cta-em { font-size: 1.45em; }
}

@media (max-width: 390px) {
  h1 { font-size: 20px; line-height: 1.2; }
  .hero.hero--video h1 { font-size: 20px; line-height: 1.2; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
