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

:root {
  --black: #0a0a0b;
  --dark: #131210;
  --dark2: #1C1A17;
  --dark3: #242018;
  --border: #2a2a32;
  --accent: #107B88;
  --accent2: #9EAAA8;
  --accent-glow: rgba(16, 123, 136, 0.15);
  --text: #e8e8f0;
  --text-muted: #8888a0;
  --text-dim: #55556a;
  --white: #ffffff;
  --green: #22c55e;
  --red: #ef4444;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1180px;
  --max-w-narrow: 780px;
}

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

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

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

/* ===== UTILS ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #107B88, #9EAAA8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--accent-glow);
}
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--outline {
  background: transparent;
  color: var(--accent2);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover { background: var(--accent-glow); }
.btn--full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.logo-s { color: var(--accent); }
.logo-dot { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav__links li a:hover { color: var(--white); }
.nav__cta {
  padding: 10px 20px;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600 !important;
}
.nav__cta:hover { opacity: 0.9; }

/* ── DROPDOWN ── */
.nav__dropdown { position: relative; }
.nav__dropdown > a { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__dropdown > a::after {
  content: '';
  width: 8px; height: 5px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform var(--transition);
  opacity: .6;
  flex-shrink: 0;
}
.nav__dropdown:hover > a::after { transform: rotate(180deg); opacity: 1; }
.nav__sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.nav__sub::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 6px;
  background: var(--border);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.nav__dropdown:hover .nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__sub li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
  transition: background var(--transition), color var(--transition) !important;
  white-space: nowrap;
}
.nav__sub li a:hover {
  background: rgba(16,123,136,.1);
  color: var(--white) !important;
}
.nav__sub li a .sub-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(16,123,136,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(16, 123, 136, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 85% 65%, rgba(158, 170, 168, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 15% 80%, rgba(16, 123, 136, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(16, 123, 136,0.10);
  border: 1px solid rgba(16, 123, 136,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent2);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
}
.hero__accent {
  background: linear-gradient(135deg, #107B88, #9EAAA8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.proof__item strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.proof__item span {
  font-size: 13px;
  color: var(--text-muted);
}
.proof__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem__text .eyebrow { margin-bottom: 16px; }
.problem__text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}
.problem__text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.problem__text strong { color: var(--white); }
.problem__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prob-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.prob-card:hover {
  border-color: rgba(16, 123, 136,0.32);
  transform: translateX(4px);
}
.prob-card__icon { display: flex; align-items: center; margin-bottom: 12px; color: var(--accent2); }
.prob-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.prob-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(16, 123, 136,0.32);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card--featured {
  background: linear-gradient(145deg, rgba(16, 123, 136, 0.14) 0%, rgba(82, 197, 200, 0.05) 100%);
  border-color: rgba(16, 123, 136, 0.5);
  box-shadow: 0 0 40px rgba(16, 123, 136, 0.08);
}
.service-card--featured:hover { border-color: var(--accent); }
.service-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #107B88, #9EAAA8);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.service-card__icon { display: flex; align-items: center; margin-bottom: 16px; color: var(--accent2); }
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.service-card__list li::before {
  content: '✓';
  color: var(--accent2);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== MÉTHODE ===== */
.methode {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.methode__steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.step {
  flex: 1;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.step:hover {
  border-color: rgba(16, 123, 136,0.32);
  transform: translateY(-3px);
}
.step__num {
  font-size: 40px;
  font-weight: 800;
  color: rgba(16, 123, 136,0.16);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}
.step__content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step__content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step__arrow {
  font-size: 20px;
  color: var(--text-dim);
  padding-top: 40px;
  flex-shrink: 0;
}

/* ===== POUR QUI ===== */
.pourqui { padding: 100px 0; }
.pourqui__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.pourqui__block {
  border-radius: var(--radius-lg);
  padding: 36px;
}
.pourqui__block--oui {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.pourqui__block--non {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.pourqui__block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.pourqui__block--oui h3 { color: var(--green); }
.pourqui__block--non h3 { color: var(--red); }
.pourqui__block ul { display: flex; flex-direction: column; gap: 12px; }
.pourqui__block li { font-size: 15px; color: var(--text-muted); line-height: 1.5; }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: var(--transition);
}
.faq__q:hover { color: var(--accent2); }
.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a {
  display: none;
  padding-bottom: 22px;
}
.faq__a p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.faq__item.open .faq__a { display: block; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 100px 0; }
.cta-block {
  background: linear-gradient(145deg, var(--dark2) 0%, rgba(16, 123, 136, 0.08) 50%, var(--dark3) 100%);
  border: 1px solid rgba(16, 123, 136, 0.3);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(158, 170, 168, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(16, 123, 136,0.10);
  border: 1px solid rgba(16, 123, 136,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-block h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-block > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

/* ===== FORM ===== */
.contact-form { text-align: left; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form__group input,
.form__group textarea,
.form__group select {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--text-dim); }
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--accent);
  background: rgba(16, 123, 136,0.03);
}
.form__group select option { background: var(--dark2); }
.form__group textarea { resize: vertical; min-height: 90px; }
.contact-form .btn--primary { margin-top: 8px; font-size: 16px; padding: 16px; }
.form__mention {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}
.footer__links h4,
.footer__contact h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact a {
  font-size: 14px;
  color: var(--accent2);
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(10,10,11,0.95);
  border-top: 1px solid var(--border);
  z-index: 90;
  backdrop-filter: blur(12px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .methode__steps { flex-direction: column; }
  .step__arrow { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav__links.open li a { font-size: 20px; }
  .nav__burger { display: flex; }
  /* Mobile dropdown */
  .nav__dropdown > a::after { display: none; }
  .nav__sub {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    min-width: 0;
    margin-top: 8px;
  }
  .nav__sub::before { display: none; }
  .nav__sub li a {
    font-size: 16px !important;
    padding: 8px 0 !important;
    color: var(--text-dim) !important;
  }
  .nav__sub li a:hover { background: transparent !important; }

  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero__proof { gap: 20px; }
  .proof__divider { display: none; }

  .problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .pourqui__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
  .form__row { grid-template-columns: 1fr; }
  .cta-block { padding: 36px 24px; }

  .sticky-cta { display: block; }
  .hero__ctas .btn--ghost { display: none; }

  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  :root { --radius-lg: 14px; }
  .hero__title { font-size: 32px; }
  .cta-block h2 { font-size: 24px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== GRADIENT ENHANCEMENTS ===== */

/* Stat numbers → dégradé teal */
.about-stat strong,
.stat-value,
.services-stat strong {
  background: linear-gradient(135deg, #107B88, #9EAAA8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Icônes cards → dégradé */
.prob-card__icon,
.service-card__icon {
  background: linear-gradient(135deg, #107B88, #9EAAA8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Timeline dot active → dégradé */
.parcours__dot--active {
  background: linear-gradient(135deg, #107B88, #9EAAA8);
  border-color: transparent;
}

/* Valeur card numéros → dégradé (moins transparent) */
.valeur-card__num {
  background: linear-gradient(135deg, rgba(16,123,136,0.3), rgba(158,170,168,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav CTA → dégradé */
.nav__cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%) !important;
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 18px;
}

/* Sidebar card eyebrow */
.sidebar-card__eyebrow {
  background: linear-gradient(90deg, #107B88, #9EAAA8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Blog filter active → dégradé */
.filter-btn.active {
  background: linear-gradient(135deg, #107B88, #9EAAA8);
  color: #fff;
  border-color: transparent;
}

/* Ligne timeline → dégradé déjà en place, renforcement */
.parcours__timeline::before {
  background: linear-gradient(180deg, #9EAAA8, #107B88, transparent);
}

/* Story highlight border → dégradé */
.story__highlight {
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #107B88, #9EAAA8) 1;
}
