  :root {
    --about-ink: #0f172a;
    --about-muted: #64748b;
    --about-card: rgba(255, 255, 255, 0.9);
    --about-border: rgba(15, 23, 42, 0.1);
    --about-blue: #1d4ed8;
    --about-blue-dark: #0f2f74;
    --about-gold: #c89b3c;
    --about-green: #15803d;
    --about-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  }

  body {
    background:
      radial-gradient(
        circle at 14% 8%,
        rgba(29, 78, 216, 0.13),
        transparent 34rem
      ),
      radial-gradient(
        circle at 90% 14%,
        rgba(200, 155, 60, 0.13),
        transparent 30rem
      ),
      linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7f9fc 100%);
  }

  .about-premium-hero {
    padding: 126px 20px 72px;
    overflow: hidden;
  }

  .about-premium-container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
  }

  .about-premium-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 42px;
    align-items: center;
  }

  .about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(29, 78, 216, 0.16);
    background: rgba(255, 255, 255, 0.78);
    color: var(--about-blue-dark);
    font-weight: 800;
    font-size: 0.86rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  }

  .about-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--about-green);
    box-shadow: 0 0 0 5px rgba(21, 128, 61, 0.12);
  }

  .about-premium-hero h1 {
    margin: 24px 0 18px;
    max-width: 760px;
    color: var(--about-ink);
    font-size: clamp(2.55rem, 5.3vw, 4.9rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
  }

  .about-premium-hero h1 span {
    color: var(--about-blue);
  }

  .about-lead {
    max-width: 710px;
    color: var(--about-muted);
    font-size: clamp(1.06rem, 1.7vw, 1.25rem);
    line-height: 1.75;
  }

  .about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }

  .about-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }

  .about-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--about-border);
    background: rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    padding: 10px 13px;
    color: #233047;
    font-size: 0.92rem;
    font-weight: 700;
  }

  .about-trust-pill svg {
    color: var(--about-green);
    flex: 0 0 auto;
  }

  .about-founder-premium {
    position: relative;
    border-radius: 32px;
    padding: 18px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.8)
    );
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--about-shadow);
    backdrop-filter: blur(18px);
  }

  .about-founder-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
      135deg,
      rgba(29, 78, 216, 0.28),
      rgba(200, 155, 60, 0.34),
      transparent 62%
    );
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .about-photo-premium {
    overflow: hidden;
    border-radius: 24px;
    background: #eef4ff;
    aspect-ratio: 4 / 4.45;
  }

  .about-photo-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-founder-caption {
    padding: 18px 6px 4px;
  }

  .about-founder-caption strong {
    display: block;
    font-size: 1.08rem;
    color: var(--about-ink);
    margin-bottom: 4px;
  }

  .about-founder-caption span {
    display: block;
    color: var(--about-muted);
    line-height: 1.55;
    font-size: 0.95rem;
  }

  .quote-card {
    position: absolute;
    left: -28px;
    bottom: 42px;
    width: min(300px, calc(100% - 40px));
    padding: 18px;
    border-radius: 22px;
    background: #101827;
    color: #fff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.22);
  }

  .quote-card span {
    color: var(--about-gold);
    font-size: 2.2rem;
    line-height: 0.8;
  }

  .quote-card p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    font-size: 0.95rem;
  }

  .quote-card .color-gold {
    color: var(--about-gold);
    font-size: 0.88rem;
    font-weight: 700;
  }

  .quote-card-founder p {
    color: var(--about-gold);
    font-size: 0.98rem;
    line-height: 1.25;
    margin-top: 12px;
    font-weight: 800;
  }

  .about-section {
    padding: 76px 20px;
  }

  .about-section.soft {
    background: rgba(248, 250, 252, 0.78);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .about-two-column {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 52px;
    align-items: start;
  }

  .about-kicker {
    display: inline-flex;
    color: var(--about-blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .about-title {
    margin: 0;
    color: var(--about-ink);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .about-copy {
    color: var(--about-muted);
    font-size: 1.02rem;
    line-height: 1.82;
  }

  .about-copy p {
    margin: 0 0 18px;
  }

  .about-copy strong {
    color: var(--about-ink);
  }

  .brand-dark {
    color: var(--about-ink);
    font-weight: 900;
  }

  .brand-accent {
    color: #b53f3f;
    font-weight: 900;
  }

  .principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
  }

  .principle-card,
  .method-card,
  .limit-card,
  .resource-premium-card {
    background: var(--about-card);
    border: 1px solid var(--about-border);
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  }

  .principle-card {
    padding: 22px;
  }

  .principle-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #edf4ff;
    color: var(--about-blue);
    font-weight: 900;
    margin-bottom: 16px;
  }

  .principle-card h3,
  .method-card h3,
  .limit-card h3,
  .resource-premium-card h3 {
    margin: 0 0 8px;
    color: var(--about-ink);
    letter-spacing: -0.02em;
  }

  .principle-card p,
  .method-card p,
  .limit-card p,
  .resource-premium-card p {
    margin: 0;
    color: var(--about-muted);
    line-height: 1.62;
    font-size: 0.95rem;
  }

  .method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }

  .method-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
  }

  .method-number {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #101827;
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
  }

  .limits-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: stretch;
    margin-top: 34px;
  }

  .limit-card {
    padding: 26px;
  }

  .limit-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .limit-list li {
    display: flex;
    gap: 10px;
    color: #293548;
    line-height: 1.6;
  }

  .limit-list li::before {
    content: "✓";
    color: var(--about-green);
    font-weight: 900;
  }

  .founder-note {
    background: linear-gradient(180deg, #101827, #172033);
    color: #dbe5f3;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
  }

  .founder-note h3 {
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
  }

  .founder-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
  }

  .resources-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }

  .resource-premium-card {
    display: block;
    padding: 24px;
    color: inherit;
    text-decoration: none;
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease;
  }

  .resource-premium-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.12);
  }

  .resource-tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #edf4ff;
    color: var(--about-blue);
    font-size: 0.78rem;
    font-weight: 900;
  }

  .about-final-cta {
    padding: 78px 20px;
    background:
      radial-gradient(
        circle at 16% 10%,
        rgba(255, 255, 255, 0.18),
        transparent 24rem
      ),
      linear-gradient(135deg, #0f2f74, #101827);
    color: #fff;
    text-align: center;
  }

  .about-final-cta h2 {
    max-width: 760px;
    margin: 0 auto 14px;
    color: #fff;
    font-size: clamp(2rem, 3.8vw, 3.3rem);
    letter-spacing: -0.05em;
    line-height: 1.06;
  }

  .about-final-cta p {
    max-width: 680px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
    font-size: 1.06rem;
  }

  .faq .faq-answer p {
    text-align: left;
  }

  @media (max-width: 960px) {
    .about-premium-grid,
    .about-two-column,
    .limits-layout {
      grid-template-columns: 1fr;
    }

    .principles-grid,
    .method-grid,
    .resources-premium-grid {
      grid-template-columns: 1fr 1fr;
    }

    .quote-card {
      position: static;
      width: auto;
      margin: 16px 0 0;
    }
  }

  @media (max-width: 640px) {
    .about-premium-hero {
      padding-top: 104px;
    }

    .about-premium-container {
      width: min(100% - 24px, 1160px);
    }

    .about-hero-actions .btn {
      width: 100%;
      justify-content: center;
    }

    .principles-grid,
    .method-grid,
    .resources-premium-grid {
      grid-template-columns: 1fr;
    }

    .about-section {
      padding: 56px 20px;
    }
  }
/* ─── PAGE À PROPOS ─── */
.nav-links a[aria-current="page"] {
  color: var(--blue);
  font-weight: 700;
}

.about-hero {
  padding: 132px 24px 80px;
  background: linear-gradient(145deg, #f0f5ff 0%, #fff 50%, #eef7ff 100%);
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 0;
}

.about-hero-content h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 850;
  color: var(--gray-900);
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}

.about-hero-content p {
  font-size: 1.08rem;
  color: var(--gray-600);
  max-width: 620px;
  margin-bottom: 16px;
}

.about-hero-content .hero-cta {
  justify-content: flex-start;
  margin-top: 30px;
}

.about-founder-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
}

.about-photo-wrap {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--blue-light);
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-quote {
  position: absolute;
  left: -24px;
  bottom: 34px;
  max-width: 320px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 22px 24px 22px 58px;
  box-shadow: var(--shadow-lg);
}

.about-quote span {
  position: absolute;
  left: 18px;
  top: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 800;
}

.about-quote p {
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 750;
}

.about-story {
  background: #fff;
}

.about-two-cols {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.about-rich-text {
  border-left: 4px solid var(--blue);
  padding-left: 28px;
}

.about-rich-text p {
  color: var(--gray-600);
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.about-rich-text p:last-child {
  margin-bottom: 0;
}

.about-mission .problem-card {
  min-height: 230px;
}

.about-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--blue-light);
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.about-trust {
  background: #fff;
}

.about-trust-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 52px;
  box-shadow: var(--shadow);
}

.about-checks {
  margin-top: 0;
  grid-template-columns: 1fr;
}

.about-tools .section-label,
.about-tools .section-title,
.about-tools .section-subtitle {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .about-hero-grid,
  .about-two-cols,
  .about-trust-card {
    grid-template-columns: 1fr;
  }

  .about-hero-content .hero-cta {
    justify-content: center;
  }

  .about-hero-content {
    text-align: center;
  }

  .about-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-founder-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .about-quote {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .about-rich-text {
    border-left: 0;
    padding-left: 0;
  }

  .about-trust-card {
    padding: 32px 22px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 110px 18px 56px;
  }

  .about-quote {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }
}
