  :root {
    /* Couleurs principales */
    --noir: #4b2a46;          /* Prune — remplace le noir */
    --terre: #eb0a4b;         /* Rouge/framboise — couleur d'action */
    --sable: #faa0cd;         /* Rose — accents doux */
    --creme: #FDEBF5;         /* Rose très clair — fonds */
    --vert: #eb0a4b;          /* Rouge — CTA principaux */
    --vert-clair: #faa0cd;    /* Rose — hover/secondaire */
    --blanc: #fff;
    --gris: #7a6475;          /* Dérivé prune désaturé */
    --accent: #eb0a4b;        /* Rouge framboise — accent fort */
    /* Couleurs activités */
    --formation: #1ebe96;
    --service-pro: #ffe600;
    --coworking: #7d64d2;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Karla', sans-serif;
    background: var(--blanc);
    color: var(--noir);
    overflow-x: hidden;
  }

  .link-8
  {
    text-decoration: none;
    color: inherit;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(235,10,75,0.15);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--noir);
    letter-spacing: 0.06em;
  }

  .nav-logo span { color: var(--accent); }

  .nav-cta {
    background: var(--vert);
    color: white;
    padding: 0.6rem 1.6rem;
    border: none;
    font-family: 'Karla', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
  }

  .nav-cta:hover { background: var(--terre); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
  }

  .hero-left {
    background: var(--noir);
    padding: 5rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-left::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    /* background: radial-gradient(circle, rgba(235,10,75,0.25) 0%, transparent 70%); */
    pointer-events: none;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(250,160,205,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sable);
    border: 1px solid rgba(250,160,205,0.5);
    padding: 0.4rem 1rem;
    margin-bottom: 2.5rem;
    width: fit-content;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 4vw, 4.8rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: 0.04em;
    color: var(--blanc);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    transform: skewY(-3deg);
    transform-origin: left center;
  }

  .hero-title em {
    font-style: normal;
    color: var(--sable);
    display: block;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(253,250,246,0.65);
    max-width: 440px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
  }

  .stat {
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blanc);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.72rem;
    color: rgba(253,250,246,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
  }

  .hero-right {
    background: var(--creme);
    padding: 5rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-right-intro {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terre);
    margin-bottom: 1.5rem;
  }

  .hero-right h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--noir);
    margin-bottom: 1.5rem;
  }

  .hero-right p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gris);
    margin-bottom: 2rem;
  }

  .barometre-wrap {
    margin-bottom: 2rem;
  }

  .barometre-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    color: var(--noir);
  }

  .barometre-bar {
    height: 10px;
    background: rgba(235,10,75,0.1);
    border-radius: 0;
    overflow: hidden;
  }

  .barometre-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--sable));
    width: 3.33%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
  }

  .barometre-sub {
    font-size: 0.72rem;
    color: var(--gris);
    margin-top: 0.5rem;
  }

  .btn-primary {
    display: inline-block;
    background: var(--vert);
    color: white;
    padding: 1rem 2.5rem;
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
  }

  .btn-primary:hover { background: var(--terre); transform: translateY(-1px); }

  .btn-secondary {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--gris);
    font-size: 0.82rem;
    text-decoration: underline;
    cursor: pointer;
    text-align: center;
    width: 100%;
  }

  /* SECTION CONTEXTE */
  .section-contexte {
    padding: 7rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: center;
  }

  .contexte-left h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 3.5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.0;
    color: var(--noir);
    transform: skewY(-2deg);
    display: inline-block;
  }

  .contexte-left h3 em {
    font-style: normal;
    color: var(--accent);
    display: block;
  }

  .contexte-tag {
    display: inline-block;
    background: var(--creme);
    border: 1px solid var(--sable);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    color: var(--terre);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .contexte-right p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gris);
    margin-bottom: 1.5rem;
  }

  .highlight-box {
    border-left: 3px solid var(--accent);
    padding: 1.2rem 1.5rem;
    background: rgba(235,10,75,0.04);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--noir);
    font-weight: 500;
    font-style: italic;
  }

  /* ACTIVITÉS */
  .section-activites {
    background: var(--accent);
    padding: 7rem 3rem;
  }

  .section-activites-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }

  .section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--blanc);
    line-height: 1.0;
  }

  .section-header h2 em { font-style: normal; color: var(--sable); }

  .section-header p {
    max-width: 320px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    text-align: right;
  }

  .activites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(250,160,205,0.15);
  }

  .activite-card {
    background: var(--blanc);
    padding: 2.5rem 1.8rem;
    border: 1px solid rgba(250,160,205,0.1);
    transition: background 0.25s;
    cursor: default;
  }

  .activite-card:hover {
    background: var(--creme);
    transition: background 0.25s;
  }

  .activite-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
  }

  .activite-num {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--noir);
    opacity: 0.8;
    margin-bottom: 0.5rem;
  }

  .activite-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .activite-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--noir);
  }
  
  .activite-details {
    padding-top: 20px;
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--noir);
  }
  
  .activite-card strong
  {
    color: var(--accent);
    font-weight: bold;
  }

  /* POURQUOI SOCIÉTAIRE */
  .section-pourquoi {
    padding: 7rem 3rem;
    background: var(--creme);
  }

  .section-pourquoi-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .pourquoi-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--noir);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.0;
  }

  .pourquoi-title em { font-style: normal; color: var(--accent); }

  .pourquoi-sub {
    text-align: center;
    color: var(--gris);
    font-size: 0.95rem;
    margin-bottom: 4rem;
    line-height: 1.7;
  }

  .raisons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .raison-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid rgba(235,10,75,0.08);
    transition: border-color 0.2s, transform 0.2s;
  }

  .raison-card:hover {
    border-color: var(--vert);
    transform: translateY(-3px);
  }

  .raison-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .raison-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 0.8rem;
  }

  .raison-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--gris);
  }

  /* COLLÈGES */
  .section-colleges {
    padding: 7rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .colleges-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
  }

  .colleges-intro h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.0;
    color: var(--noir);
  }

  .colleges-intro h2 em { font-style: normal; color: var(--accent); }

  .colleges-intro p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gris);
  }

  .colleges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(235,10,75,0.1);
  }

  .college-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(235,10,75,0.1);
    position: relative;
  }

  .college-card:last-child { border-right: none; }

  .college-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terre);
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .college-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .college-min {
    font-size: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--accent);
    margin-bottom: 0.3rem;
  }

  .college-min-label {
    font-size: 0.72rem;
    color: var(--gris);
    margin-bottom: 1rem;
  }

  .college-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--gris);
  }

  /* PROCESSUS */
  .section-process {
    background: var(--vert);
    padding: 6rem 3rem;
  }

  .section-process-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .process-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: white;
    margin-bottom: 0.8rem;
  }

  .process-title em { font-style: normal; color: var(--sable); }

  .process-sub {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 3.5rem;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .step {
    position: relative;
  }

  .step::after {
    content: '→';
    position: absolute;
    top: 1.2rem;
    right: -1.2rem;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
  }

  .step:last-child::after { display: none; }

  .step-num {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
  }

  .step-title {
    font-weight: 500;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .step-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
  }

  /* CTA FINAL */
  .section-cta {
    padding: 8rem 3rem;
    text-align: center;
    background: var(--blanc);
    position: relative;
    overflow: hidden;
  }

  .section-cta::before {
    content: '8';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40vw;
    font-weight: 400;
    color: rgba(235,10,75,0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
  }

  .cta-tag {
    display: inline-block;
    background: var(--creme);
    border: 1px solid var(--sable);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    color: var(--terre);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--noir);
    line-height: 1.0;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transform: skewY(-2deg);
    display: inline-block;
  }

  .cta-title em { font-style: normal; color: var(--accent); }

  .cta-sub {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gris);
    max-width: 550px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  .btn-cta-main {
    background: var(--vert);
    color: white;
    padding: 1.1rem 3rem;
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
  }

  .btn-cta-main:hover { background: var(--terre); transform: translateY(-2px); }

  .btn-cta-outline {
    background: transparent;
    color: var(--noir);
    padding: 1.1rem 3rem;
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px solid var(--noir);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }

  .btn-cta-outline:hover {
    background: var(--noir);
    color: white;
  }

  /* FOOTER */
  footer {
    background: var(--noir);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--blanc);
  }

  .footer-logo span { color: var(--accent); }

  .footer-info {
    font-size: 0.78rem;
    color: rgba(253,250,246,0.35);
    line-height: 1.7;
    text-align: center;
  }

  .footer-contact {
    text-align: right;
  }

  .footer-contact a {
    color: var(--sable);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
  }

  .footer-contact a:hover { color: white; }

  /* MODAL */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,24,20,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .modal-overlay.open { display: flex; }

  .modal {
    background: var(--blanc);
    max-width: 560px;
    width: 100%;
    padding: 3rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gris);
    background: none;
    border: none;
    line-height: 1;
  }

  .modal h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--noir);
    margin-bottom: 0.5rem;
  }

  .modal-sub {
    color: var(--gris);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--noir);
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(139,94,60,0.2);
    background: white;
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    color: var(--noir);
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--vert);
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .montant-display {
    background: var(--creme);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--sable);
  }

  .montant-display span:first-child { font-size: 0.8rem; color: var(--gris); }
  .montant-display strong { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--vert); }

  .modal-submit {
    width: 100%;
    background: var(--vert);
    color: white;
    padding: 1rem;
    border: none;
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .modal-submit:hover { background: var(--terre); }

  .modal-legal {
    font-size: 0.72rem;
    color: var(--gris);
    line-height: 1.6;
    margin-top: 1rem;
    text-align: center;
  }

  /* ANIMATIONS */
  .fade-in {
    opacity: 1;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 4rem 2rem 3rem; min-height: 60vh; }
    .hero-right { padding: 3rem 2rem; }
    .section-contexte { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
    .activites-grid { grid-template-columns: 1fr 1fr; }
    .raisons-grid { grid-template-columns: 1fr; }
    .colleges-grid { grid-template-columns: 1fr 1fr; }
    .college-card { border-bottom: 1px solid rgba(235,10,75,0.1); }
    .steps { grid-template-columns: 1fr 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .section-header p { text-align: left; }
    .colleges-intro { grid-template-columns: 1fr; gap: 2rem; }
    nav { padding: 1rem 1.5rem; }
    .section-activites, .section-pourquoi, .section-process, .section-cta { padding: 4rem 1.5rem; }
    .section-colleges { padding: 4rem 1.5rem; }
    footer { flex-direction: column; text-align: center; }
    .footer-contact { text-align: center; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* Activités — couleurs spécifiques charte */
  .activite-card:nth-child(1) { border-top: 20px solid var(--sable); }
  .activite-card:nth-child(2) { border-top: 20px solid var(--formation); }
  .activite-card:nth-child(3) { border-top: 20px solid var(--service-pro); }
  .activite-card:nth-child(4) { border-top: 20px solid var(--coworking);}

  /* Bebas Neue — pas de font-weight élevé */
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.05em; }
  .raison-num { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.03em; }
  .college-name { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.04em; }
  .college-min { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.04em; }
  .activite-title { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.05em; font-size: 1.2rem; }
  .raison-title { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.04em; font-size: 1.4rem; }
  .modalite-val { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.05em; }

  /* Karla — corps de texte et boutons */
  .btn-primary, .btn-cta-main, .btn-cta-outline, .nav-cta, .modal-submit {
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
  }