@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

    :root {
      --sky:        #e0f2fe;
      --sky-mid:    #bae6fd;
      --sky-deep:   #38bdf8;
      --blue:       #0ea5e9;
      --blue-dark:  #0369a1;
      --mint:       #d1fae5;
      --green:      #34d399;
      --rose:       #fce7f3;
      --peach:      #fed7aa;
      --lavender:   #ede9fe;
      --yellow:     #ffff00;
      --ink:        #0c1a2e;
      --ink-soft:   #3b5068;
      --white:      #ffffff;
	  --red:      #ee6666;
      --surface:    rgba(255,255,255,0.58);
      --surface-strong: rgba(255,255,255,0.74);
      --border:     rgba(255,255,255,0.86);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* Configuration des couleurs et variables */
:root {
  --sb-bg: #f1f1f1;      /* Couleur du fond */
  --sb-thumb: #4facfe;   /* Couleur de la barre */
  --sb-size: 10px;       /* Largeur de la barre */
}

/* 1. SOLUTION POUR CHROME, EDGE, SAFARI, IOS, ANDROID */
html {
  /* Réserve l'espace de la scrollbar même si elle est invisible */
  scrollbar-gutter: stable;
}

/* Personnalisation du design (Webkit) */
::-webkit-scrollbar {
  width: var(--sb-size);
  height: var(--sb-size);
}

::-webkit-scrollbar-track {
  background: var(--sb-bg);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--sb-thumb);
  background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 10px;
  border: 2px solid var(--sb-bg); /* Effet de padding interne */
}

::-webkit-scrollbar-thumb:hover {
  background: #005bea;
}

/* 2. SOLUTION POUR FIREFOX */
/* Note : Firefox ne permet pas encore de mettre des dégradés ou des arrondis précis */
* {
  scrollbar-width: thin; /* "auto" ou "thin" */
  scrollbar-color: var(--sb-thumb) var(--sb-bg);
}

/* 3. LOGIQUE D'AFFICHAGE (Seulement si nécessaire) */
body {
  font-family: 'Nunito', sans-serif;
  overflow-y: auto; /* N'affiche la barre que si le contenu dépasse */
  overflow-x: hidden;
}

    img { max-width: 100%; display: block; }
    a { color: inherit; }
    .container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); position: relative; z-index: 1; }
    section {
      padding: 4.5rem 0;
      position: relative;
      z-index: 1;
      content-visibility: auto;
      contain-intrinsic-size: 1px 800px;
    }

    header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: .85rem 0; }
    .nav-inner {
      display: flex; justify-content: space-between; align-items: center;
      background: rgba(255,255,255,0.55);
      backdrop-filter: blur(20px) saturate(1.6);
      -webkit-backdrop-filter: blur(20px) saturate(1.6);
      border: 1.5px solid rgba(255,255,255,0.85);
      border-radius: 18px; padding: .65rem 1.4rem;
      box-shadow: 0 4px 24px rgba(14,165,233,0.1), inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 15px rgba(0,0,0,0.2);
    }
    .logo-wrap { display: flex; align-items: center; gap: .75rem; text-decoration: none; min-width: 0; }
    .logo-badge {
      width: 40px; height: 40px; border-radius: 12px;
      background: linear-gradient(135deg, var(--white), var(--sky));
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(14,165,233,0.28);
    }
    .logo-text-name { font-weight: 900; font-size: 1rem; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
    .logo-text-sub  { font-size: .58rem; color: var(--blue-dark); letter-spacing: .05em; text-transform: uppercase; font-weight: 700; }
    .nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
    .nav-phone {
      font-weight: 700; font-size: .95rem; color: var(--blue-dark); text-decoration: none;
      padding: .35rem .6rem; border-radius: 999px;
    }
    .nav-phone:hover { color: var(--blue); background: rgba(255,255,255,.5); }
    .btn-nav, .btn-primary, .btn-ghost, .btn-cpf, .btn-submit {
      text-decoration: none;
      border: 0;
      cursor: pointer;
    }
    .btn-nav {
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: white; font-weight: 800; font-size: .84rem;
      padding: .58rem 1.3rem; border-radius: 100px;
      box-shadow: 0 4px 14px rgba(14,165,233,0.35);
      transition: transform .2s, box-shadow .2s;
      display: inline-flex;
      align-items: center;
      gap: .45rem;
    }
    .btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(14,165,233,0.45); }

		.hero {
			min-height: 100vh;
			display: flex;
			align-items: center;
			padding: 9rem 0 5rem; /* 📱 mobile */
		}

		/* 💻 PC */
		@media (min-width: 900px) {
			.hero {
				padding: 3rem 0 5rem;
			}
		}

    .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(255,255,255,0.65); backdrop-filter: blur(12px);
      border: 1.5px solid rgba(255,255,255,0.85); border-radius: 100px;
      padding: .38rem 1rem; font-size: .72rem; font-weight: 800;
      letter-spacing: .1em; text-transform: uppercase; color: var(--blue-dark);
      margin-bottom: 1.5rem;
    }
    .dot-live {
      width: 7px; height: 7px; border-radius: 50%; background: var(--green);
      box-shadow: 0 0 0 3px rgba(52,211,153,.3);
      animation: pdot 2s ease-in-out infinite;
    }
    @keyframes pdot { 0%,100%{box-shadow:0 0 0 3px rgba(52,211,153,.3)} 50%{box-shadow:0 0 0 7px rgba(52,211,153,.1)} }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.7rem); font-weight: 900;
      line-height: 1.08; letter-spacing: -.03em; color: var(--ink); margin-bottom: 1.25rem;
    }

.hero h1 em {
  font-style: normal;
  /* Ton dégradé */
  background: linear-gradient(130deg, var(--blue), #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* On remplace text-shadow par text-stroke pour le contour */
  -webkit-text-stroke: 0.5px #22d3ff;

  /* Optionnel : un léger filtre pour faire ressortir le tout si besoin */
  /* filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3)); */
  filter: drop-shadow(0 0 10px #ffffff);
}

    .hero-desc { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.62; margin-bottom: 1.35rem; max-width: 56ch; }
    .hero-desc strong { font-weight: 800; color: var(--ink); }
    .hero-btns { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.1rem; }

    .btn-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: white; font-weight: 800; font-size: .95rem;
      padding: .9rem 1.9rem; border-radius: 14px;
      box-shadow: 0 6px 20px rgba(14,165,233,0.38);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(14,165,233,0.45); }

    .btn-ghost {
      display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
      background: rgba(255,255,255,0.6); backdrop-filter: blur(12px);
      border: 1.5px solid rgba(14,165,233,0.25); color: var(--blue-dark);
      font-weight: 700; font-size: .95rem; padding: .88rem 1.7rem;
      border-radius: 14px; transition: all .2s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.9); border-color: var(--blue); }

    .trust-chips, .tag-row, .meta-row, .pill-row {
      display: flex; flex-wrap: wrap; gap: .6rem;
    }
    .chip, .pill, .meta-pill {
      display: inline-flex; align-items: center; gap: .4rem;
      background: rgba(255,255,255,0.6); backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.85); border-radius: 100px;
      padding: .35rem .9rem; font-size: .75rem; font-weight: 700; color: var(--ink-soft);
    }

    .hero-cards { position: relative; min-height: 390px; }
    .hcard {
      position: absolute;
      background: rgba(255,255,255,0.52);
      backdrop-filter: blur(22px) saturate(1.4);
      -webkit-backdrop-filter: blur(22px) saturate(1.4);
      border: 1.5px solid rgba(255,255,255,0.85);
      border-radius: 22px; padding: 1.5rem 1.75rem;
      box-shadow: 0 8px 32px rgba(14,165,233,0.12);
    }
    .hcard-1 { top: 0; left: 0; right: 12%; transform: rotate(-2.5deg); }
    .hcard-2 { top: 90px; left: 10%; right: 0; transform: rotate(1.8deg); }
    .hcard-3 { bottom: 0; left: 4%; right: 4%; transform: rotate(-.6deg); }
    .hcard-icon { font-size: 1.8rem; margin-bottom: .6rem; }
    .hcard h3 { font-size: .95rem; font-weight: 800; color: var(--ink); margin-bottom: .3rem; }
    .hcard p  { font-size: .8rem; color: var(--ink-soft); line-height: 1.5; }
    .hcard-badge {
      display: inline-block; margin-top: .65rem;
      background: linear-gradient(135deg, var(--blue), #22d3ee);
      color: white; font-size: .65rem; font-weight: 800;
      letter-spacing: .07em; text-transform: uppercase;
      padding: .25rem .75rem; border-radius: 100px;
    }

    .ticker-wrap {
      overflow: hidden; padding: .9rem 0;
      background: var(--sky);
      backdrop-filter: blur(16px);
      border-top: 1px solid rgba(255,255,255,0.75);
      border-bottom: 1px solid rgba(255,255,255,0.75);
      position: relative; z-index: 1;
    }
    .ticker-wrap::before, .ticker-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
    }
    .ticker-wrap::before { left: 0; background: linear-gradient(to right, rgba(224,242,254,.95), transparent); }
    .ticker-wrap::after  { right: 0; background: linear-gradient(to left, rgba(224,242,254,.95), transparent); }
    .ticker-track { display: flex; width: max-content; animation: ticker 18s linear infinite; will-change: transform; }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .ticker-item {
      white-space: nowrap; padding: 0 2.2rem;
      font-weight: 800; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase;
      color: var(--blue-dark); display: flex; align-items: center; gap: .75rem;
    }
    .ticker-sep { color: var(--red); }

    .section-label { font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: .55rem; }
    .section-title { font-size: clamp(1.7rem, 3.5vw, 2.7rem); font-weight: 900; color: var(--ink); letter-spacing: -.03em; line-height: 1.08; margin-bottom: .75rem; }
    .section-sub { font-size: 1rem; color: var(--ink-soft); line-height: 1.62; max-width: 62ch; }

    .seo-text {
      margin-top: 1.25rem;
      max-width: 72ch;
      font-size: 1rem;
      line-height: 1.68;
      color: var(--ink-soft);
    }
    .seo-text strong { color: var(--ink); font-weight: 800; }

    .grid {
      display: grid;
      gap: 1.15rem;
      margin-top: 2.5rem;
    }
    .formations-grid { grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); }
    .av-grid { grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); }
    .partner-grid { grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); }
    .card {
      background: var(--surface);
      backdrop-filter: blur(18px) saturate(1.3);
      -webkit-backdrop-filter: blur(18px) saturate(1.3);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(14,165,233,0.07);
      transition: transform .25s, box-shadow .25s, border-color .25s;
      overflow: hidden;
    }
    .card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(14,165,233,0.17); border-color: rgba(14,165,233,0.3); }

    .f-card { padding: 1.6rem 1.5rem; }
    .f-icon {
      width: 46px; height: 46px; border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.35rem; margin-bottom: 1rem;
    }
    .bg-sky    { background: var(--sky); }
    .bg-mint   { background: var(--mint); }
    .bg-rose   { background: var(--rose); }
    .bg-peach  { background: var(--peach); }
    .bg-lav    { background: var(--lavender); }
    .bg-yellow { background: var(--yellow); }
    .f-card h3, .av-card h3, .proof-card h3, .cpf-card h3, .faq-item h3 {
      font-weight: 800; color: var(--ink);
    }
    .f-card h3 { font-size: .98rem; margin-bottom: .45rem; }
    .f-card .f-question { color: var(--blue); font-weight: 800; margin-bottom: .4rem; }
    .f-card p, .av-card p, .proof-card p, .cpf-card p, .faq-item p {
      font-size: .86rem; color: var(--ink-soft); line-height: 1.64;
    }
    .f-tags, .badge-row { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .85rem; }
    .ftag, .badge {
      font-size: .65rem; font-weight: 800; letter-spacing: .04em;
      padding: .2rem .65rem; border-radius: 100px;
      background: rgba(14,165,233,0.1); color: var(--blue-dark);
    }

    .av-section {
      background: rgba(255,255,255,0.28);
      backdrop-filter: blur(18px);
      border-top: 1px solid rgba(255,255,255,0.7);
      border-bottom: 1px solid rgba(255,255,255,0.7);
    }
    .av-card { padding: 1.75rem 1.5rem; }
    .av-num {
      font-size: 2.4rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: .65rem;
      background: linear-gradient(135deg, var(--blue), #22d3ee);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .av-card h3 { font-size: .95rem; margin-bottom: .4rem; }


    .partner-card {
      padding: 1.15rem 1rem;
      display: flex;
      flex-direction: column;
      gap: .65rem;
      min-height: 120px;
    }

    .partner-mark {
      width: 68px; height: 68px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      border: 1px solid rgba(14,165,233,.14);
      box-shadow: 0 4px 14px rgba(14,165,233,.08);
      font-size: .8rem;
      font-weight: 900;
      color: var(--blue-dark);
    }

	.partner-mark img {
      border-radius: 14px;
    }

	.card a,
	.partner-card a,
	.partner-mark a {
		text-decoration: none;
	}

	/* Supprime le soulignement par défaut sur tous les liens */
		a {
		  text-decoration: none;
		}

		/* Supprime le soulignement au survol (hover) et quand le lien est actif */
		a:hover, a:active, a:focus {
		  text-decoration: none;
		}


    .partner-card strong { font-size: .88rem; color: var(--ink); line-height: 1.2; }
    .partner-card span { font-size: .76rem; color: var(--ink-soft); line-height: 1.45; }

    .content-panel {
      background: rgba(255,255,255,0.56);
      backdrop-filter: blur(22px) saturate(1.3);
      -webkit-backdrop-filter: blur(22px) saturate(1.3);
      border: 1.5px solid rgba(255,255,255,0.9);
      border-radius: 28px;
      padding: clamp(1.4rem, 3vw, 2.2rem);
      box-shadow: 0 12px 50px rgba(14,165,233,0.11);
    }

    .program-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 1.5rem; }
    .program-card { padding: 1.4rem; }
    .program-step {
      display: inline-flex; align-items: center; justify-content: center;
      width: 30px; height: 30px; border-radius: 50%;
      background: linear-gradient(135deg, var(--sky-deep), var(--blue-dark));
      color: #ffffff; font-size: .8rem; font-weight: 900;
      margin-bottom: .85rem;
    }
    .program-card h3 { font-size: .98rem; margin-bottom: .45rem; }
    .program-card p { font-size: .85rem; line-height: 1.68; color: var(--ink-soft); }

    .two-col {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 1.25rem;
      align-items: start;
      margin-top: 2rem;
    }
    @media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

    .cpf-main { padding: 2rem; }
    .cpf-side { display: flex; flex-direction: column; gap: 1rem; }
    .cpf-small { padding: 1.4rem 1.5rem; }
    .cpf-card-icon { font-size: 1.8rem; margin-bottom: .75rem; }
    .cpf-steps { margin: 1.25rem 0; display: flex; flex-direction: column; gap: .7rem; }
    .cpf-step  { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; color: var(--ink-soft); line-height: 1.5; }
    .step-num  {
      flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), #22d3ee);
      color: white; font-size: .7rem; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
    }
    .btn-cpf {
      display: inline-flex; align-items: center; gap: .4rem;
      margin-top: 1.25rem;
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: white; font-weight: 800; font-size: .88rem;
      padding: .75rem 1.5rem; border-radius: 12px;
      box-shadow: 0 4px 16px rgba(14,165,233,0.3);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-cpf:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,165,233,0.4); }

    .cpf-table-title { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: 1rem; }
    .cpf-table-wrap {
      overflow-x: auto;
      border-radius: 16px;
      background: rgba(255,255,255,0.55);
      backdrop-filter: blur(16px);
      border: 1.5px solid rgba(255,255,255,0.85);
      box-shadow: 0 4px 20px rgba(14,165,233,0.07);
    }
    .cpf-table { width: 100%; border-collapse: collapse; font-size: .85rem; min-width: 720px; }
    .cpf-table thead tr { border-bottom: 1.5px solid rgba(14,165,233,0.1); }
    .cpf-table th {
      padding: 1rem 1.25rem; text-align: left;
      font-size: .7rem; font-weight: 800; letter-spacing: .09em;
      text-transform: uppercase; color: var(--blue-dark);
    }
    .cpf-table td { padding: .9rem 1.25rem; color: var(--ink-soft); border-bottom: 1px solid rgba(5,6,10,.05); vertical-align: middle; }
    .cpf-table tbody tr:last-child td { border-bottom: none; }
    .cpf-table tbody tr:hover td { background: rgba(14,165,233,0.04); }
    .niveau-badge {
      display: inline-block; background: rgba(14,165,233,0.1);
      color: var(--blue); font-weight: 800; font-size: .78rem;
      padding: .25rem .75rem; border-radius: 8px;
    }

    .cpf-reassure {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1rem; margin-top: 2rem;
    }
    .reassure-item {
      display: flex; align-items: flex-start; gap: .85rem;
      background: rgba(255,255,255,0.55);
      backdrop-filter: blur(14px);
      border: 1.5px solid rgba(255,255,255,0.85);
      border-radius: 16px; padding: 1.2rem 1.25rem;
      box-shadow: 0 2px 12px rgba(14,165,233,0.06);
    }
    .r-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
    .reassure-item div { display: flex; flex-direction: column; gap: .25rem; }
    .reassure-item strong { font-size: .88rem; font-weight: 800; color: var(--ink); }
    .reassure-item span  { font-size: .78rem; color: var(--ink-soft); line-height: 1.5; }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1.6rem;
    }
    .proof-card { padding: 1.35rem; }
    .proof-kicker {
      font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
      color: var(--blue);
      margin-bottom: .55rem;
    }
    .proof-card h3 { font-size: .95rem; margin-bottom: .45rem; }
    .proof-card p { font-size: .85rem; line-height: 1.65; }

    @media (max-width: 860px) {
      .program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 620px) {
      .proof-grid, .program-grid { grid-template-columns: 1fr; }
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    @media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } }
    .faq-item { padding: 1.35rem; }
    .faq-item h3 { font-size: .98rem; margin-bottom: .45rem; }

    .form-glass {
      max-width: 620px; margin: 3rem auto 0;
      background: rgba(255,255,255,0.58);
      backdrop-filter: blur(22px) saturate(1.4);
      -webkit-backdrop-filter: blur(22px) saturate(1.4);
      border: 1.5px solid rgba(255,255,255,0.9);
      border-radius: 26px; padding: clamp(2rem,4vw,3rem);
      box-shadow: 0 12px 50px rgba(14,165,233,0.12);
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
    @media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }
    .field { display: flex; flex-direction: column; gap: .4rem; }
    .field.full { grid-column: 1/-1; }
    label { font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); }
    input, select, textarea {
      width: 100%; padding: .85rem 1rem;
      background: rgba(255,255,255,0.75); backdrop-filter: blur(8px);
      border: 1.5px solid rgba(255,255,255,0.95); border-radius: 12px;
      font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 500; color: var(--ink);
      outline: none; appearance: none;
      box-shadow: 0 2px 8px rgba(14,165,233,0.05);
      transition: border-color .2s, box-shadow .2s, background .2s;
    }
    input:focus, select:focus, textarea:focus {
      border-color: var(--blue); background: rgba(255,255,255,0.95);
      box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
    }
    textarea { resize: vertical; min-height: 90px; }
    .btn-submit {
	  width: 100%;
	  margin-top: .5rem;
	  /* Dégradé Orange Sable vers Rouge Foncé */
	  background: linear-gradient(135deg, #f4a460, #8b0000);
	  color: white;
	  border: none;
	  border-radius: 14px;
	  font-family: 'Nunito', sans-serif;
	  font-weight: 900;
	  font-size: 1rem;
	  padding: 1.05rem;
	  /* Ombre initiale plus discrète */
	  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
	  cursor: pointer;
	  transition: transform .2s, box-shadow .2s, filter .2s;
	}

	.btn-submit:hover {
	  transform: translateY(-2px);
	  /* Effet Glow Rouge Fluo : on augmente le flou et l'intensité */
	  box-shadow: 0 0 12px #ff0000, 0 5px 15px rgba(255, 0, 0, 0.5);
	  /* Optionnel : boost de luminosité pour accentuer l'effet fluo */
	  filter: brightness(1.1);
	}
    .form-note { font-size: .72rem; text-align: center; color: var(--ink-soft); margin-top: .75rem; line-height: 1.55; }

    footer {
      background: rgba(12,26,46,0.93);
      backdrop-filter: blur(20px);
      border-top: 10px solid var(--sky);
      color: rgba(255,255,255,0.5); padding: 4rem 0 2rem; position: relative; z-index: 1;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--sky); margin-bottom: 1.75rem; }

    @media (max-width: 680px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
    .f-brand { font-size: 1rem; font-weight: 900; color: white; margin-bottom: .75rem; }
    .f-desc { font-size: .85rem; line-height: 1.65; max-width: 32ch; }
    .f-contact { margin-top: 1.1rem; display: flex; flex-direction: column; gap: .4rem; }
    .f-contact a { font-size: .85rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
    .f-contact a:hover { color: var(--sky-deep); }
    .f-col h4 { font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--sky); margin-bottom: 1.1rem; }
    .f-col nav { display: flex; flex-direction: column; gap: .55rem; }
    .f-col nav a { font-size: .85rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
    .f-col nav a:hover { color: white; }
    .footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .7rem; align-items: center; }
    .status-pill { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.06); border-radius: 100px; padding: .3rem .8rem; font-size: .68rem; }
    .sdot { width: 6px; height: 6px; border-radius: 50%; background: #fbbf24; animation: bl 1.8s step-end infinite; }
    @keyframes bl { 0%,100%{opacity:1} 50%{opacity:0} }

    [data-reveal] {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
    }
    [data-reveal].visible { opacity: 1; transform: none; }

    @media (max-width: 820px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-cards { display: none !important; }
    }
    @media (max-width: 900px) {
      body { background-attachment: scroll; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .ticker-track { animation: none; }
    }
	input::placeholder,
	textarea::placeholder,
	select::placeholder {
	  color: #d0d0d0;
	  opacity: 1; /* Nécessaire pour Firefox qui applique une opacité par défaut */
	}

	/* Optionnel : pour que le texte soit un peu plus fin/discret */
	input::placeholder {
	  font-weight: 400;
	}

/* Ajustements mobile-first et accessibilité. */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 1.5em; margin-top: .75rem; text-align: center; font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.form-status.is-error { color: #a61b1b; }
.form-status.is-success { color: #087443; }

@media (max-width: 820px) {
  header { padding: .55rem 0; }
  .nav-inner { padding: .55rem .75rem; border-radius: 14px; }
  .logo-text-sub { display: none; }
  .nav-right { gap: .4rem; }
  .btn-nav { padding: .55rem .75rem; font-size: .76rem; }
  .hero { min-height: auto; padding: 6rem 0 3rem; }
  section { padding: 3.1rem 0; }
  .hero-btns > a { flex: 1 1 100%; }
  .btn-primary, .btn-ghost, .btn-cpf { min-height: 48px; }
}

/* Socle UX/UI : lisibilité, hiérarchie et interactions cohérentes. */
:root {
  --page-bg: #f6f9fd;
  --surface-clean: rgba(255, 255, 255, .88);
  --line-soft: #dbe7f3;
  --focus-ring: #075f9e;
}
section[id] { scroll-margin-top: 112px; }
[id$="-heading"] { scroll-margin-top: 156px; }

html { scroll-padding-top: 6rem; }
body {
  background: linear-gradient(180deg, #f8fbff 0%, #edf5fc 48%, #f8fbff 100%);
  animation: none;
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  border-radius: .75rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

section {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}
.hero { min-height: auto; padding: clamp(6rem, 10vw, 7.5rem) 0 clamp(3.5rem, 6vw, 5rem); }
.hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
.hero h1 { max-width: 16ch; font-size: clamp(2.1rem, 6vw, 3.6rem); line-height: 1.06; }
.hero h1 em { -webkit-text-stroke: 0; filter: none; }
.hero-desc { font-size: clamp(.98rem, 2vw, 1.08rem); max-width: 58ch; }
.eyebrow, .chip, .pill, .meta-pill {
  background: rgba(255, 255, 255, .76);
  border-color: var(--line-soft);
}

.btn-nav, .btn-primary, .btn-ghost, .btn-cpf, .btn-submit {
  min-height: 48px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn-primary, .btn-nav, .btn-cpf, .btn-submit {
  background: linear-gradient(135deg, #087ab8, #075f9e);
  box-shadow: 0 8px 20px rgba(7, 95, 158, .2);
}
.nav-phone {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
}
.btn-primary:hover, .btn-nav:hover, .btn-cpf:hover, .btn-submit:hover {
  transform: translateY(-2px);
  filter: none;
  box-shadow: 0 12px 26px rgba(7, 95, 158, .27);
}
.btn-ghost { background: var(--surface-clean); border-color: #b8d7ea; }
.btn-ghost:hover { background: #fff; border-color: var(--blue-dark); }

.section-title { max-width: 24ch; font-size: clamp(1.75rem, 4vw, 2.6rem); line-height: 1.1; }
.section-sub { font-size: clamp(1rem, 1.5vw, 1.125rem); }
.card, .content-panel, .form-glass {
  background: var(--surface-clean);
  border-color: var(--line-soft);
  box-shadow: 0 10px 28px rgba(20, 63, 97, .08);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20, 63, 97, .13); }
.f-card, .proof-card, .faq-item, .program-card { padding: clamp(1.2rem, 2.5vw, 1.45rem); }
.form-glass { max-width: 680px; }
#ct-heading { margin-inline: auto; text-align: center; }
.section-label-on-blue {
  display: inline-flex;
  padding: .45rem .8rem;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 4px 14px rgba(0, 55, 92, .16);
  color: #073a5c;
}

/* Fond IA décoratif issu de la démo, sans dépendance JavaScript. */
body {
  background:
    radial-gradient(circle at 15% 9%, rgba(255,255,255,.98) 0 8%, transparent 31%),
    radial-gradient(circle at 86% 30%, rgba(230,249,255,.72) 0 7%, transparent 28%),
    linear-gradient(180deg, #fff 0%, #eefaff 18%, #bfeaff 48%, #39afe6 72%, #0477b8 100%);
}
.ai-background, .ai-background::before, .ai-background::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.ai-background { z-index: 0; overflow: hidden; }
.ai-background::before {
  content: '';
  inset: -20%;
  background: conic-gradient(from 130deg at 50% 50%, transparent 0deg, rgba(255,255,255,.26) 48deg, transparent 112deg, rgba(91,210,255,.16) 190deg, transparent 265deg);
  filter: blur(72px);
  animation: ai-halo 15s ease-in-out infinite alternate;
}
.ai-background::after {
  content: '';
  opacity: .1;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.23'/%3E%3C/svg%3E");
}
.ai-network { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .48; }
.ai-lines { fill: none; stroke: rgba(255,255,255,.58); stroke-width: 1.25; stroke-dasharray: 7 12; animation: ai-line-flow 10s linear infinite; }
.ai-nodes { fill: rgba(255,255,255,.95); stroke: rgba(72,208,255,.95); stroke-width: 1.4; filter: url(#ai-node-glow); transform-box: fill-box; transform-origin: center; animation: ai-node-pulse 3.6s ease-in-out infinite; }
.ai-orb { position: absolute; z-index: 1; width: min(40vw, 550px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 34% 28%, rgba(255,255,255,.96), rgba(114,223,255,.35) 26%, rgba(0,102,168,.09) 62%, transparent 72%); box-shadow: inset -38px -42px 75px rgba(0,82,145,.2), 0 0 100px rgba(255,255,255,.3); opacity: .42; animation: ai-float 12s ease-in-out infinite alternate; }
.ai-orb-left { top: 2vh; left: -15vw; }
.ai-orb-right { right: -14vw; bottom: -18vh; transform: scale(.78); animation-delay: -5s; }
@keyframes ai-halo { to { transform: translate(3%, 2%) rotate(5deg) scale(1.08); } }
@keyframes ai-line-flow { to { stroke-dashoffset: -150; } }
@keyframes ai-node-pulse { 0%, 100% { transform: scale(.78); opacity: .58; } 50% { transform: scale(1.35); opacity: 1; } }
@keyframes ai-float { to { translate: 5vw 5vh; scale: 1.08; } }

/* Le bouton de soumission retrouve le dégradé feu de la version de référence. */
.btn-submit {
  background: linear-gradient(135deg, #f4a460, #8b0000);
  box-shadow: 0 6px 20px rgba(139, 0, 0, .3);
}
.btn-submit:hover { box-shadow: 0 0 12px #f00, 0 5px 15px rgba(255, 0, 0, .5); }
input, select, textarea {
  min-height: 48px;
  border-color: #bfd4e5;
  background: #fff;
}
textarea { min-height: 120px; }
input::placeholder, textarea::placeholder { color: #72859a; }
input:focus, select:focus, textarea:focus {
  border-color: var(--focus-ring);
  box-shadow: 0 0 0 4px rgba(7, 95, 158, .16);
}
:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; }

@media (min-width: 821px) {
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(22rem, .92fr); gap: clamp(3rem, 6vw, 6rem); }
  .hero-cards { display: block !important; }
  .hero-btns > a { min-width: 12rem; }
}
@media (max-width: 820px) {
  .hero { padding: 6rem 0 3rem; }
  .hero-btns { gap: .75rem; }
  .hero-btns > a { width: 100%; }
  .trust-chips { gap: .45rem; }
  .chip { font-size: .7rem; }
  .section-title { max-width: none; }
  .form-glass { padding: 1.35rem; border-radius: 1.25rem; }
  .footer-bottom { align-items: flex-start; }
}
@media (hover: none) {
  .card:hover, .btn-primary:hover, .btn-nav:hover, .btn-cpf:hover, .btn-submit:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-background *, .ai-background::before { animation: none; }
}
