/* ============================================================
   3SHEDS - Centre de formation
   Identité visuelle 2026 : bleu #203BCC, motif sheds, Nohemi + Roboto
   ============================================================ */

/* ---------- Polices ---------- */
@font-face { font-family: "Nohemi"; src: url("../fonts/Nohemi-Regular.otf") format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Nohemi"; src: url("../fonts/Nohemi-Medium.otf") format("opentype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Nohemi"; src: url("../fonts/Nohemi-SemiBold.otf") format("opentype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Nohemi"; src: url("../fonts/Nohemi-Bold.otf") format("opentype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Nohemi"; src: url("../fonts/Nohemi-ExtraBold.otf") format("opentype"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Nohemi"; src: url("../fonts/Nohemi-Black.otf") format("opentype"); font-weight: 900; font-display: swap; }
@font-face { font-family: "Roboto"; src: url("../fonts/Roboto-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Roboto"; src: url("../fonts/Roboto-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Roboto"; src: url("../fonts/Roboto-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --blue: #203BCC;
  --blue-700: #1A30A8;
  --blue-300: #6E80E6;
  --blue-050: #EEF0FF;
  --ink: #11142B;
  --grey: #5B6170;
  --line: #E4E7F2;
  --bg: #FFFFFF;
  --bg-soft: #F6F7FC;
  --white: #FFFFFF;
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --shadow: 0 18px 50px -24px rgba(32,59,204,.35);
  --shadow-sm: 0 8px 24px -14px rgba(17,20,43,.30);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Roboto", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1,h2,h3,h4 { font-family: "Nohemi", sans-serif; line-height: 1.04; letter-spacing: -0.02em; font-weight: 800; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }

/* ---------- Boutons ---------- */
.btn { display: inline-flex; align-items: center; gap: .55em; font-family: "Nohemi", sans-serif; font-weight: 600;
  font-size: 1rem; padding: 15px 26px; border-radius: 100px; cursor: pointer; border: 2px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s, box-shadow .25s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--blue-700); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--ghost:hover { background: var(--blue); color: #fff; }
.btn--white { background: #fff; color: var(--blue); }
.btn--white:hover { background: var(--blue-050); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Eyebrow / titres section ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: "Nohemi", sans-serif; font-weight: 600;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 26px; height: 8px; background-image: var(--zig); background-size: 13px 8px; background-repeat: repeat-x; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 800; }
.section-lead { color: var(--grey); font-size: 1.12rem; max-width: 52ch; margin-top: 18px; }

/* zigzag motif inline (data-uri) en bleu */
:root {
  --zig: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'%3E%3Cpath d='M0 7L6.5 1L13 7' fill='none' stroke='%23203BCC' stroke-width='2.4'/%3E%3C/svg%3E");
  /* bande sheds : chevrons pleins imbriqués, tuilables, sans trou (bleu / blanc) */
  --shed: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpolygon points='0,10 20,0 40,10 40,20 20,10 0,20' fill='%23203BCC'/%3E%3C/svg%3E");
  --shed-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpolygon points='0,10 20,0 40,10 40,20 20,10 0,20' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* ============================================================
   HEADER
   ============================================================ */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(17,20,43,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-family: "Nohemi", sans-serif; font-weight: 500; font-size: .98rem; color: var(--ink); position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--blue); transition: width .25s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(48px, 7vw, 96px); padding-bottom: 0; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; background: var(--blue-050); color: var(--blue);
  font-family: "Nohemi", sans-serif; font-weight: 600; font-size: .85rem; padding: 8px 16px; border-radius: 100px; margin-bottom: 26px; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(32,59,204,.18); }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 800; }
.hero h1 .hl { color: var(--blue); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4%; height: 9px;
  background-image: var(--zig); background-size: 15px 9px; background-repeat: repeat-x; opacity: .9; }
.hero__lead { color: var(--grey); font-size: 1.18rem; max-width: 46ch; margin: 26px 0 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.hero__stat strong { font-family: "Nohemi", sans-serif; font-weight: 800; font-size: 2.1rem; color: var(--ink); display: block; line-height: 1; }
.hero__stat span { color: var(--grey); font-size: .9rem; }
.hero__visual { position: relative; }
.hero__card { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; background: var(--blue);
  box-shadow: var(--shadow); display: grid; place-items: center; }
.hero__card .picto { width: 62%; opacity: .96; filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }
.hero__motif-band { margin-top: 0; }

/* bande motif sheds pleine largeur */
.shed-band { height: 128px; background-image: var(--shed); background-size: 64px 32px; background-repeat: repeat; background-position: top center; }
.shed-band--soft { opacity: .9; }

/* ============================================================
   MARQUEE / confiance
   ============================================================ */
.trust { background: var(--bg-soft); border-block: 1px solid var(--line); padding: 26px 0; }
.trust__label { text-align: center; font-family: "Nohemi", sans-serif; font-weight: 600; color: var(--grey);
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.marquee { display: flex; gap: 56px; align-items: center; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 56px; align-items: center; animation: scroll 26s linear infinite; }
.marquee__track span { font-family: "Nohemi", sans-serif; font-weight: 700; font-size: 1.25rem; color: #AcB2C6; white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   FORMATIONS
   ============================================================ */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 46px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__tag { font-family: "Nohemi", sans-serif; font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-050); padding: 6px 12px; border-radius: 100px; align-self: flex-start; margin-bottom: 18px; }
.card__num { font-family: "Nohemi", sans-serif; font-weight: 800; font-size: 1rem; color: var(--blue-300); }
.card h3 { font-size: 1.5rem; margin: 8px 0 12px; font-weight: 700; }
.card p { color: var(--grey); font-size: .98rem; flex: 1; }
.card__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.chip { font-size: .8rem; color: var(--grey); background: var(--bg-soft); border: 1px solid var(--line); padding: 5px 11px; border-radius: 100px; }
.card__link { display: inline-flex; align-items: center; gap: 7px; font-family: "Nohemi", sans-serif; font-weight: 600;
  color: var(--blue); margin-top: 20px; font-size: .95rem; }
.card__link .arrow { transition: transform .25s var(--ease); }
.card:hover .card__link .arrow { transform: translateX(4px); }
.card--feature { grid-column: span 1; background: var(--blue); color: #fff; border-color: transparent; }
.card--feature .card__tag { background: rgba(255,255,255,.16); color: #fff; }
.card--feature p { color: rgba(255,255,255,.82); }
.card--feature .card__num { color: var(--blue-300); }
.card--feature .card__link { color: #fff; }
.card--feature .chip { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: #fff; }

/* ============================================================
   JUNIOR TEAM + DAAAK
   ============================================================ */
.junior { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.junior .shed-top { height: 128px; background-image: var(--shed); background-size: 64px 32px; background-repeat: repeat; background-position: top center; }
.junior__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: clamp(56px,8vw,96px) 0; }
.junior .eyebrow { color: var(--blue-300); }
.junior .eyebrow::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'%3E%3Cpath d='M0 7L6.5 1L13 7' fill='none' stroke='%236E80E6' stroke-width='2.4'/%3E%3C/svg%3E"); }
.junior h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.junior p { color: rgba(255,255,255,.74); margin-top: 18px; font-size: 1.08rem; }
.junior__daaak { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; background: rgba(110,128,230,.16);
  border: 1px solid rgba(110,128,230,.35); border-radius: 16px; padding: 16px 20px; }
.junior__daaak b { font-family: "Nohemi", sans-serif; color: #fff; }
.junior__daaak span { color: rgba(255,255,255,.7); font-size: .95rem; }
.junior__cascade { display: grid; gap: 12px; }
.step { display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 18px 20px; transition: background .25s, transform .25s var(--ease); }
.step:hover { background: rgba(255,255,255,.09); transform: translateX(6px); }
.step__y { font-family: "Nohemi", sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--blue-300); min-width: 54px; }
.step__t b { font-family: "Nohemi", sans-serif; display: block; font-weight: 600; }
.step__t span { color: rgba(255,255,255,.6); font-size: .9rem; }
.services { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.services .chip { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.85); }

/* ============================================================
   LIEUX / ASSOCIATIONS
   ============================================================ */
.places { background: var(--bg-soft); }
.places__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 46px; }
.place { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; }
.place:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.place__top { background: var(--blue); color: #fff; padding: 22px 26px; display: flex; align-items: baseline; justify-content: space-between; }
.place__top h3 { font-size: 1.6rem; font-weight: 800; }
.place__top .since { font-family: "Nohemi", sans-serif; font-weight: 600; font-size: .85rem; color: var(--blue-300); }
.place__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.place__line { display: flex; gap: 12px; align-items: flex-start; color: var(--grey); font-size: .98rem; }
.place__line svg { flex: none; margin-top: 3px; color: var(--blue); }
.place__line a:hover { color: var(--blue); }
.place__assoc { font-family: "Nohemi", sans-serif; font-weight: 600; font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); }

/* ============================================================
   CTA final
   ============================================================ */
.cta { position: relative; overflow: hidden; }
.cta__box { background: var(--blue); border-radius: 30px; padding: clamp(40px,6vw,72px); color: #fff; position: relative; overflow: hidden; }
.cta__box .shed-deco { position: absolute; inset: 0; background-image: var(--shed-white); background-size: 64px 32px;
  background-repeat: repeat; opacity: .12; }
.cta__box h2 { font-size: clamp(2rem,4.6vw,3.4rem); font-weight: 800; position: relative; }
.cta__box p { color: rgba(255,255,255,.85); margin: 18px 0 30px; font-size: 1.15rem; max-width: 50ch; position: relative; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo img { height: 38px; margin-bottom: 18px; }
.footer__about { font-size: .96rem; max-width: 34ch; }
.footer h4 { font-family: "Nohemi", sans-serif; color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer__col a { display: block; padding: 6px 0; font-size: .96rem; transition: color .2s, padding-left .2s var(--ease); }
.footer__col a:hover { color: #fff; padding-left: 5px; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s var(--ease); }
.footer__socials a:hover { background: var(--blue); transform: translateY(-3px); }
.footer__bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }

/* ============================================================
   Reveal animation
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { max-width: 420px; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .junior__grid { grid-template-columns: 1fr; gap: 40px; }
  .places__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__actions .btn { display: none; }
  .burger { display: flex; }
  .nav__links.open { display: flex; position: fixed; inset: 76px 0 auto 0; flex-direction: column; background: #fff;
    padding: 22px 24px 30px; gap: 6px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .nav__links.open a { padding: 12px 0; font-size: 1.1rem; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__links.open .btn { display: inline-flex; margin-top: 12px; }
  .cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
}

/* ============================================================
   SOUS-PAGES
   ============================================================ */
/* En-tête de page */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: clamp(36px,5vw,64px) 0 clamp(44px,6vw,72px); position: relative; overflow: hidden; }
.page-hero--blue { background: var(--blue); color: #fff; border-bottom: none; }
.page-hero--blue .shed-deco { position: absolute; inset: 0; background-image: var(--shed-white); background-size: 64px 32px; background-repeat: repeat; opacity: .10; }
.page-hero__inner { position: relative; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-family: "Nohemi", sans-serif; font-weight: 500; font-size: .85rem; color: var(--grey); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb i { opacity: .45; font-style: normal; }
.page-hero--blue .breadcrumb { color: rgba(255,255,255,.7); }
.page-hero--blue .breadcrumb a:hover { color: #fff; }
.page-hero .tag { display: inline-flex; font-family: "Nohemi", sans-serif; font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); background: var(--blue-050); padding: 6px 13px; border-radius: 100px; margin-bottom: 16px; }
.page-hero--blue .tag { color: #fff; background: rgba(255,255,255,.16); }
.page-hero h1 { font-size: clamp(2.1rem,4.6vw,3.5rem); }
.page-hero__lead { font-size: 1.15rem; color: var(--grey); max-width: 56ch; margin-top: 18px; }
.page-hero--blue .page-hero__lead { color: rgba(255,255,255,.86); }
.metas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.meta-pill { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 18px; min-width: 110px; }
.page-hero--blue .meta-pill { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); }
.meta-pill b { font-family: "Nohemi", sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.meta-pill span { font-size: .82rem; color: var(--grey); margin-top: 5px; }
.page-hero--blue .meta-pill b { color: #fff; }
.page-hero--blue .meta-pill span { color: rgba(255,255,255,.78); }
.page-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* Layout contenu + aside */
.layout { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.55rem,2.8vw,2.1rem); margin: 48px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--grey); margin-bottom: 16px; }
.prose .lead-p { font-size: 1.12rem; color: var(--ink); }
ul.ticks { display: grid; gap: 12px; margin: 20px 0; }
ul.ticks li { position: relative; padding-left: 36px; color: var(--ink); }
ul.ticks li::before { content: ""; position: absolute; left: 0; top: 1px; width: 23px; height: 23px; border-radius: 50%; background: var(--blue-050) var(--check) center/13px no-repeat; }
:root { --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%23203BCC' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); }

/* Grille de domaines / compétences */
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin: 26px 0 8px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-050); display: grid; place-items: center; margin-bottom: 14px; color: var(--blue); }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; }
.feature p { font-size: .95rem; color: var(--grey); }

.toolbox { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0; }

/* Aside sticky */
.aside-card { position: sticky; top: 100px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.aside-card h3 { font-size: 1.2rem; margin-bottom: 18px; }
.facts { display: grid; margin-bottom: 22px; }
.fact { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.fact:last-child { border-bottom: none; }
.fact span { color: var(--grey); }
.fact b { font-family: "Nohemi", sans-serif; font-weight: 600; text-align: right; }
.aside-card .btn { width: 100%; justify-content: center; }
.aside-card .btn + .btn { margin-top: 10px; }

/* Accordéon FAQ */
.accordion { display: grid; gap: 12px; max-width: 820px; }
.acc { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.acc summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: "Nohemi", sans-serif; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-family: "Nohemi", sans-serif; font-size: 1.5rem; color: var(--blue); transition: transform .25s var(--ease); line-height: 1; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc__body { padding: 0 24px 22px; color: var(--grey); }

/* Téléchargements */
.dl-list { display: grid; gap: 12px; max-width: 860px; }
.dl { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 22px; transition: border-color .25s, transform .25s var(--ease); }
.dl:hover { border-color: var(--blue); transform: translateX(4px); }
.dl__ic { width: 46px; height: 46px; border-radius: 11px; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; flex: none; }
.dl__t { flex: 1; }
.dl__t b { font-family: "Nohemi", sans-serif; font-weight: 600; display: block; }
.dl__t span { font-size: .85rem; color: var(--grey); }
.dl__go { color: var(--blue); font-family: "Nohemi", sans-serif; font-weight: 600; font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post__img { aspect-ratio: 16/9; background: var(--blue); display: grid; place-items: center; }
.post__img img { width: 54px; opacity: .9; }
.post__b { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post__date { font-size: .78rem; color: var(--blue); font-family: "Nohemi", sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.post h3 { font-size: 1.2rem; margin: 9px 0 10px; font-weight: 700; }
.post p { font-size: .92rem; color: var(--grey); flex: 1; }
.post__link { margin-top: 16px; color: var(--blue); font-family: "Nohemi", sans-serif; font-weight: 600; font-size: .9rem; }

/* Formulaire (UI) */
.form { display: grid; gap: 18px; max-width: 660px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: "Nohemi", sans-serif; font-weight: 500; font-size: .9rem; }
.field input, .field select, .field textarea { font-family: "Roboto", sans-serif; font-size: 1rem; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(32,59,204,.15); }
.field textarea { min-height: 140px; resize: vertical; }
.form__note { font-size: .82rem; color: var(--grey); }

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 16px; }

.section--tight { padding: clamp(48px,7vw,80px) 0; }
.center-head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px,5vw,52px); }
.center-head .section-lead { margin-inline: auto; }
.center-head .eyebrow { justify-content: center; }

/* Responsive sous-pages */
@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; gap: 36px; }
  .aside-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .news-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .metas { gap: 10px; }
}
