/* ═══════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════ */
:root {
  --bg:      #08090C;
  --bg2:     #0F1117;
  --bg3:     #161922;
  --card:    #12151E;
  --card-h:  #1A1E2A;
  --brd:     rgba(255,255,255,0.05);
  --brd-h:   rgba(0,255,120,0.2);
  --tx:      #F2F4F8;
  --tx2:     #9BA3B8;
  --tx3:     #5E6680;
  --acc:     #00FF87;
  --acc-d:   #00D972;
  --acc-gl:  rgba(0,255,135,0.08);
  --acc-gl2: rgba(0,255,135,0.18);
  --blue:    #3B82F6;
  --purple:  #A855F7;
  --amber:   #F59E0B;
  --r:       14px;
  --r-xl:    22px;
  --r-full:  9999px;
  --font:    'Outfit', system-ui, sans-serif;
  --mono:    'JetBrains Mono', monospace;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:cubic-bezier(0.33, 1, 0.68, 1);
}
[data-theme="light"] {
  --bg:#F4F5F9;--bg2:#FFF;--bg3:#ECEEF4;--card:#FFF;--card-h:#F3F5FA;
  --brd:rgba(0,0,0,0.07);--brd-h:rgba(0,170,80,0.25);
  --tx:#0B0D14;--tx2:#4E5570;--tx3:#8890A8;
  --acc:#00AA5B;--acc-d:#008A4A;--acc-gl:rgba(0,170,91,0.06);--acc-gl2:rgba(0,170,91,0.14);
}

/* ═══════════════════════════════
   RESET & BASE
   ═══════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--tx);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.ctn { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ═══════════════════════════════
   TOP ANNOUNCEMENT BAR
   ═══════════════════════════════ */
.announce {
  background: var(--acc);
  color: #000;
  text-align: center;
  padding: 11px 20px;
  font-size: .84rem;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}
.announce a { font-weight: 800; text-decoration: underline; }

/* ═══════════════════════════════
   HEADER / NAV
   ═══════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(8,9,12,.82);
  backdrop-filter: blur(28px) saturate(1.5);
  border-bottom: 1px solid var(--brd);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
[data-theme="light"] header { background: rgba(255,255,255,.88); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }

.logo { font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--acc); display: grid; place-items: center;
  font-size: .72rem; font-weight: 900; color: #000;
}

.nav-links { display: flex; gap: 0; align-items: center; }
.nl {
  position: relative; padding: 22px 17px;
  font-size: .88rem; font-weight: 500;
  color: var(--tx2); cursor: pointer; transition: color .25s;
}
.nl:hover { color: var(--acc); }
.nl.has-dd:hover .dd { opacity: 1; visibility: visible; transform: translateY(0); }

.dd {
  position: absolute; top: 100%; left: -28px; min-width: 340px;
  padding: 20px 22px; background: var(--bg2);
  border: 1px solid var(--brd); border-radius: var(--r);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--ease);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}
[data-theme="light"] .dd { box-shadow: 0 24px 64px rgba(0,0,0,.1); }
.dd a { display: flex; flex-direction: column; padding: 11px 14px; border-radius: var(--r-xl); transition: background .2s; }
.dd a:hover { background: var(--acc-gl); }
.dd a strong { font-size: .88rem; color: var(--tx); font-weight: 600; }
.dd a span { font-size: .76rem; color: var(--tx3); margin-top: 2px; }

.nav-r { display: flex; align-items: center; gap: 10px; }

.btn-o {
  padding: 9px 20px; border-radius: var(--r-full); font-size: .84rem; font-weight: 600;
  border: 1px solid var(--brd); background: transparent; color: var(--tx2);
  cursor: pointer; transition: all .3s var(--ease); font-family: var(--font);
}
.btn-o:hover { border-color: var(--acc); color: var(--acc); }

.btn-g {
  padding: 10px 24px; border-radius: var(--r-full); font-size: .84rem; font-weight: 700;
  background: var(--acc); color: #000; border: none; cursor: pointer;
  transition: all .35s var(--ease); font-family: var(--font);
  position: relative; overflow: hidden;
}
.btn-g::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .3s;
}
.btn-g:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--acc-gl2); }
.btn-g:hover::after { background: rgba(255,255,255,.1); }

.theme-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--brd); background: transparent; color: var(--tx2);
  cursor: pointer; font-size: .95rem; display: grid; place-items: center; transition: all .25s;
}
.theme-btn:hover { border-color: var(--acc); color: var(--acc); }

.mob-btn {
  display: none; width: 36px; height: 36px; border-radius: 9px;
  border: 1px solid var(--brd); background: transparent; color: var(--tx);
  cursor: pointer; font-size: 1.2rem; place-items: center;
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  padding: clamp(80px,12vw,140px) 0 clamp(80px,10vw,120px);
  position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 50% -5%, var(--acc-gl2), transparent),
    radial-gradient(ellipse 35% 40% at 75% 70%, rgba(59,130,246,.04), transparent);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .025;
  background-image:
    linear-gradient(var(--tx) 1px, transparent 1px),
    linear-gradient(90deg, var(--tx) 1px, transparent 1px);
  background-size: 72px 72px; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }

/* Chips */
.chips { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 16px;
  border-radius: var(--r-full); font-size: .76rem; font-weight: 600;
  border: 1px solid var(--brd); color: var(--tx2); background: var(--card);
  opacity: 0; animation: chipIn .7s var(--ease) forwards;
}
.chip:nth-child(1) { animation-delay: .1s; }
.chip:nth-child(2) { animation-delay: .2s; }
.chip:nth-child(3) { animation-delay: .3s; }
.chip .d { width: 7px; height: 7px; border-radius: 50%; }
.d-g { background: var(--acc); box-shadow: 0 0 10px var(--acc-gl2); }
.d-b { background: var(--blue); }
.d-p { background: var(--purple); }

@keyframes chipIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* H1 word-by-word reveal */
.hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-weight: 900; line-height: 1.06; letter-spacing: -.035em;
  margin-bottom: 28px; max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.hero h1 .w {
  display: inline-block; opacity: 0;
  transform: translateY(100%) rotateX(-80deg);
  animation: wordReveal .8s var(--ease) forwards;
  transform-origin: bottom center;
}
@keyframes wordReveal { to { opacity: 1; transform: none; } }
.hero h1 .acc { color: var(--acc); text-shadow: 0 0 50px var(--acc-gl2); }

.hero-sub {
  font-size: 1.15rem; color: var(--tx2); line-height: 1.75;
  max-width: 600px; margin: 0 auto 44px;
  opacity: 0; animation: fadeUp .8s var(--ease) 1s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-btns {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 72px;
  opacity: 0; animation: fadeUp .8s var(--ease) 1.15s forwards;
}
.btn-gl {
  padding: 16px 36px; border-radius: var(--r-full); font-size: 1rem; font-weight: 700;
  background: var(--acc); color: #000; border: none; cursor: pointer;
  transition: all .4s var(--ease); font-family: var(--font);
  position: relative; overflow: hidden; display: inline-block;
}
.btn-gl:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px var(--acc-gl2); }
.btn-ol {
  padding: 16px 36px; border-radius: var(--r-full); font-size: 1rem; font-weight: 600;
  border: 1.5px solid var(--brd); background: transparent; color: var(--tx);
  cursor: pointer; transition: all .35s var(--ease); font-family: var(--font);
  display: inline-block;
}
.btn-ol:hover { border-color: var(--acc); color: var(--acc); transform: translateY(-2px); }

.hero-stats {
  display: flex; justify-content: center; gap: clamp(28px,5vw,64px); flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s var(--ease) 1.3s forwards;
}
.hs { text-align: center; }
.hs .v { font-family: var(--mono); font-size: 2.4rem; font-weight: 700; color: var(--acc); line-height: 1; }
.hs .l { font-size: .8rem; color: var(--tx3); margin-top: 6px; }

/* ═══════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════ */
.stag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; color: var(--acc);
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px;
  font-family: var(--mono);
}
.stag::before { content: ''; width: 22px; height: 2px; background: var(--acc); }
.stit { font-size: clamp(1.9rem,3.8vw,2.9rem); font-weight: 800; line-height: 1.15; margin-bottom: 14px; letter-spacing: -.02em; }
.sdesc { font-size: 1.02rem; color: var(--tx2); max-width: 540px; line-height: 1.7; margin-bottom: 52px; }

/* Scroll-triggered reveal */
.sr { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.sr.v { opacity: 1; transform: none; }
.sr.d1 { transition-delay: .08s; } .sr.d2 { transition-delay: .16s; }
.sr.d3 { transition-delay: .24s; } .sr.d4 { transition-delay: .32s; }
.sr.d5 { transition-delay: .4s; }

/* ═══════════════════════════════
   TRUST MARQUEE
   ═══════════════════════════════ */
.trust { padding: 44px 0; border-bottom: 1px solid var(--brd); overflow: hidden; }
.trust-lbl {
  text-align: center; font-size: .7rem; text-transform: uppercase;
  letter-spacing: 3px; color: var(--tx3); font-weight: 600; margin-bottom: 22px;
  font-family: var(--mono);
}
.mq {
  display: flex; gap: 56px; align-items: center;
  animation: mq 22s linear infinite; width: max-content;
}
.mq span {
  font-family: var(--mono); font-weight: 700; font-size: .9rem;
  color: var(--tx3); opacity: .4; white-space: nowrap; transition: all .3s;
}
.mq span:hover { opacity: 1; color: var(--acc); }

/* Logo mode (images) */
.mq img {
  height: 28px;
  width: auto;
  opacity: .45;
  filter: grayscale(1);
  transition: opacity .3s, filter .3s;
}
.mq img:hover { opacity: 1; filter: none; }
@keyframes mq {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   FORMATIONS
   ═══════════════════════════════ */
.formations { padding: 120px 0; }
.fg { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fc {
  background: var(--card); border: 1px solid var(--brd); border-radius: var(--r-xl);
  padding: 34px 28px; position: relative; overflow: hidden;
  transition: all .45s var(--ease);
}
.fc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--acc), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.fc:hover { border-color: var(--brd-h); background: var(--card-h); transform: translateY(-8px); }
.fc:hover::before { transform: scaleX(1); }
[data-theme="dark"] .fc:hover { box-shadow: 0 24px 60px rgba(0,0,0,.4); }
[data-theme="light"] .fc:hover { box-shadow: 0 24px 60px rgba(0,0,0,.07); }

.lvl {
  display: inline-block; padding: 5px 12px; border-radius: var(--r-full);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 18px; font-family: var(--mono);
}
.lvl-2 { background: rgba(245,158,11,.1); color: var(--amber); border: 1px solid rgba(245,158,11,.18); }
.lvl-3 { background: rgba(59,130,246,.1);  color: var(--blue);  border: 1px solid rgba(59,130,246,.18); }
.lvl-5 { background: rgba(168,85,247,.1);  color: var(--purple);border: 1px solid rgba(168,85,247,.18); }

.fc h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.fc > p { font-size: .88rem; color: var(--tx2); line-height: 1.6; margin-bottom: 20px; }

.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.tg {
  font-size: .7rem; font-weight: 600; padding: 4px 10px; border-radius: var(--r-full);
  font-family: var(--mono); border: 1px solid var(--brd); color: var(--tx3);
}
.tg.ai { border-color: rgba(0,255,135,.18); color: var(--acc); background: var(--acc-gl); }

.flink {
  font-size: .86rem; font-weight: 600; color: var(--acc);
  display: inline-flex; align-items: center; gap: 6px; transition: gap .35s var(--ease);
}
.flink:hover { gap: 14px; }

/* ═══════════════════════════════
   AVANTAGES
   ═══════════════════════════════ */
.avantages { padding: 120px 0; }
.ag { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.ac {
  background: var(--card); border: 1px solid var(--brd); border-radius: var(--r-xl);
  padding: 34px 30px; transition: all .4s var(--ease);
}
.ac:hover { border-color: var(--brd-h); background: var(--card-h); transform: translateY(-5px); }
.ac-i {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 18px;
}
.i-g { background: var(--acc-gl); }
.i-b { background: rgba(59,130,246,.08); }
.i-p { background: rgba(168,85,247,.08); }
.i-o { background: rgba(251,146,60,.08); }
.ac h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.ac p  { font-size: .88rem; color: var(--tx2); line-height: 1.65; }

/* ═══════════════════════════════
   STATS
   ═══════════════════════════════ */
.stats {
  padding: 80px 0; background: var(--bg2);
  border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd);
  position: relative;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, var(--acc-gl), transparent);
  pointer-events: none;
}
.sg { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; text-align: center; position: relative; z-index: 2; }
.sb .sv { font-family: var(--mono); font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: var(--acc); line-height: 1; }
.sb .sl { font-size: .8rem; color: var(--tx3); margin-top: 8px; line-height: 1.4; }

/* ═══════════════════════════════
   PEDAGOGIE
   ═══════════════════════════════ */
.peda { padding: 120px 0; }
.peda-g { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.peda-vis {
  background: var(--card); border: 1px solid var(--brd); border-radius: var(--r-xl);
  padding: 52px; display: grid; place-items: center; min-height: 420px;
  position: relative; overflow: hidden;
}
.peda-vis::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--acc-gl), transparent 70%);
  pointer-events: none;
}
.ring {
  width: 250px; height: 250px; border-radius: 50%; position: relative;
  border: 2px dashed rgba(0,255,135,.12);
  display: grid; place-items: center;
  animation: spin 28s linear infinite;
}
.ring-c {
  width: 155px; height: 155px; border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), var(--acc-d));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #000; box-shadow: 0 0 60px var(--acc-gl2);
  animation: spin 28s linear infinite reverse;
}
.ring-c .big { font-family: var(--mono); font-size: 2.6rem; font-weight: 700; }
.ring-c .sml { font-size: .82rem; font-weight: 600; opacity: .65; }
.orb {
  position: absolute; width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--brd);
  display: grid; place-items: center; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.o1 { top: -6px; left: 50%; translate: -50% 0; }
.o2 { bottom: -6px; left: 50%; translate: -50% 0; }
.o3 { left: -6px; top: 50%; translate: 0 -50%; }
.o4 { right: -6px; top: 50%; translate: 0 -50%; }
@keyframes spin { to { rotate: 360deg; } }

.pl { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.pi {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px;
  border-radius: var(--r); background: var(--card); border: 1px solid var(--brd);
  transition: all .35s var(--ease);
}
.pi:hover { border-color: var(--brd-h); background: var(--card-h); }
.pi-i {
  width: 38px; height: 38px; border-radius: 10px; background: var(--acc-gl);
  display: grid; place-items: center; font-size: 1rem; flex-shrink: 0;
}
.pi h4 { font-size: .92rem; font-weight: 700; margin-bottom: 2px; }
.pi p  { font-size: .8rem; color: var(--tx3); line-height: 1.5; }

/* ═══════════════════════════════
   FINANCEMENT
   ═══════════════════════════════ */
.fin { padding: 100px 0; }
.fin-box {
  background: var(--card); border: 1px solid var(--brd); border-radius: var(--r-xl);
  padding: 52px; display: grid; grid-template-columns: auto 1fr; gap: 52px;
  align-items: center; position: relative; overflow: hidden;
}
.fin-box::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, var(--acc-gl), transparent 70%); pointer-events: none;
}
.fin-big {
  font-family: var(--mono); font-size: clamp(5rem,8vw,7.5rem); font-weight: 700;
  color: var(--acc); line-height: 1; position: relative;
  text-shadow: 0 0 70px var(--acc-gl2);
}
.fin-r { position: relative; }
.fin-r h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.fin-r p  { font-size: .92rem; color: var(--tx2); line-height: 1.7; margin-bottom: 28px; }

/* ═══════════════════════════════
   ACCOMPAGNEMENT
   ═══════════════════════════════ */
.accomp { padding: 120px 0; }
.accomp-g { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.accomp-big {
  font-family: var(--mono); font-size: clamp(4.5rem,8vw,7rem); font-weight: 700;
  color: var(--acc); line-height: 1; text-shadow: 0 0 60px var(--acc-gl2);
}
.accomp-txt { font-size: 1.15rem; color: var(--tx2); margin-top: 10px; line-height: 1.5; }
.al { display: flex; flex-direction: column; gap: 14px; }
.ai-card {
  display: flex; gap: 14px; align-items: center; padding: 18px 20px;
  border-radius: var(--r); background: var(--card); border: 1px solid var(--brd);
  transition: all .35s var(--ease);
}
.ai-card:hover { border-color: var(--brd-h); background: var(--card-h); }
.ai-card .ico { font-size: 1.3rem; flex-shrink: 0; }
.ai-card h4 { font-size: .92rem; font-weight: 700; }
.ai-card p  { font-size: .78rem; color: var(--tx3); margin-top: 2px; }

/* ═══════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════ */
.testi { padding: 120px 0; }
.tg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tc {
  background: var(--card); border: 1px solid var(--brd); border-radius: var(--r-xl);
  padding: 28px 24px; transition: all .4s var(--ease);
}
.tc:hover { border-color: var(--brd-h); transform: translateY(-5px); }
.tc-stars { color: var(--amber); font-size: .88rem; margin-bottom: 12px; letter-spacing: 2px; }
.tc blockquote { font-size: .86rem; color: var(--tx2); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.tc-auth { display: flex; align-items: center; gap: 10px; }
.tc-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), var(--blue));
  display: grid; place-items: center; color: #000; font-weight: 700; font-size: .78rem;
}
.tc-n  { font-weight: 700; font-size: .86rem; }
.tc-ro { font-size: .76rem; color: var(--tx3); }

.g-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px;
  border-radius: var(--r-full); background: var(--card); border: 1px solid var(--brd);
  font-size: .86rem; font-weight: 600; margin-bottom: 44px;
}
.g-badge .stars { color: var(--amber); }

/* ═══════════════════════════════
   FAQ
   ═══════════════════════════════ */
.faq { padding: 100px 0; border-top: 1px solid var(--brd); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--brd); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; font-weight: 600; font-size: .95rem; transition: color .3s;
}
.faq-q:hover { color: var(--acc); }
.faq-q .arrow { font-size: 1.1rem; transition: transform .4s var(--ease); color: var(--tx3); }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); color: var(--acc); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease);
  font-size: .9rem; color: var(--tx2); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* ═══════════════════════════════
   CTA
   ═══════════════════════════════ */
.cta { padding: 120px 0; text-align: center; position: relative; }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 55% at 50% 100%, var(--acc-gl2), transparent);
  pointer-events: none;
}
.cta > * { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(1.9rem,3.8vw,3rem); font-weight: 800; margin-bottom: 14px; letter-spacing: -.02em; }
.cta p  { font-size: 1rem; color: var(--tx2); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════
   PARTNERS
   ═══════════════════════════════ */
.partners { padding: 72px 0; border-top: 1px solid var(--brd); }
.partners-lbl {
  text-align: center; font-size: .7rem; text-transform: uppercase;
  letter-spacing: 3px; color: var(--tx3); font-weight: 600; margin-bottom: 28px;
  font-family: var(--mono);
}
.pr { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pc {
  padding: 7px 16px; border-radius: var(--r-full); background: var(--card);
  border: 1px solid var(--brd); font-size: .75rem; font-weight: 600;
  color: var(--tx3); font-family: var(--mono); transition: all .25s;
}
.pc:hover { border-color: var(--brd-h); color: var(--acc); }

/* Logo mode (images) */
.partner-logo {
  height: 34px;
  width: auto;
  opacity: .55;
  filter: grayscale(1);
  transition: opacity .25s, filter .25s, transform .25s;
}
.partner-logo:hover { opacity: 1; filter: none; transform: translateY(-2px); }

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
footer { background: var(--bg2); border-top: 1px solid var(--brd); padding: 68px 0 32px; }
.ft-g { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.ft-brand { font-weight: 800; font-size: 1.15rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.ft-brand .fm {
  width: 26px; height: 26px; border-radius: 7px; background: var(--acc);
  display: grid; place-items: center; font-size: .65rem; font-weight: 900; color: #000;
}
.ft-desc { font-size: .82rem; color: var(--tx3); line-height: 1.7; }
.ft-q {
  margin-top: 16px; padding: 12px 14px; border-radius: var(--r-xl);
  background: var(--card); border: 1px solid var(--brd);
  display: flex; align-items: center; gap: 9px;
}
.ft-q span { font-size: 1.3rem; }
.ft-q img.qualiopi-logo { height: 28px; width: auto; flex-shrink: 0; }
.ft-q p { font-size: .7rem; color: var(--tx3); line-height: 1.4; }
footer h5 {
  font-size: .7rem; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--tx3); margin-bottom: 16px; font-weight: 600; font-family: var(--mono);
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 9px; }
footer ul a { color: var(--tx2); font-size: .86rem; transition: color .2s; }
footer ul a:hover { color: var(--acc); }
.ft-bottom {
  border-top: 1px solid var(--brd); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .76rem; color: var(--tx3); flex-wrap: wrap; gap: 12px;
}
.ft-soc { display: flex; gap: 9px; }
.ft-soc a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--brd);
  display: grid; place-items: center; color: var(--tx3); font-size: .82rem; transition: all .25s;
}
.ft-soc svg { width: 16px; height: 16px; fill: currentColor; }
.ft-soc a:hover { border-color: var(--acc); color: var(--acc); }

/* ═══════════════════════════════
   MOBILE NAV OVERLAY
   ═══════════════════════════════ */
.mob-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
body.mob-open .mob-overlay {
  opacity: 1; pointer-events: all;
}
.mob-nav {
  position: absolute; top: 0; right: 0;
  width: min(320px, 88vw); height: 100%; overflow-y: auto;
  background: var(--bg2); border-left: 1px solid var(--brd);
  padding: 20px 16px 40px;
  display: flex; flex-direction: column; gap: 2px;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
}
body.mob-open .mob-nav { transform: translateX(0); }

.mob-close {
  background: none; border: 1px solid var(--brd); border-radius: 8px;
  color: var(--tx2); font-size: 1rem; cursor: pointer;
  align-self: flex-end; width: 34px; height: 34px;
  display: grid; place-items: center; margin-bottom: 16px;
  transition: border-color .2s, color .2s;
}
.mob-close:hover { border-color: var(--acc); color: var(--acc); }

.mob-section {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--tx3);
  padding: 18px 10px 6px; margin-top: 4px;
}
.mob-link {
  display: flex; flex-direction: column; gap: 2px;
  padding: 11px 12px; border-radius: var(--r);
  color: var(--tx); text-decoration: none; font-size: .93rem;
  transition: background .2s;
}
.mob-link:hover { background: var(--acc-gl); }
.mob-link strong { display: block; font-weight: 600; font-size: .88rem; }
.mob-link span { font-size: .76rem; color: var(--tx2); margin-top: 1px; }

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mob-btn { display: grid; }
  .fg, .tg-grid { grid-template-columns: 1fr 1fr; }
  .peda-g, .accomp-g, .fin-box { grid-template-columns: 1fr; }
  .sg { grid-template-columns: repeat(3,1fr); }
  .ft-g { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .fg, .ag, .tg-grid { grid-template-columns: 1fr; }
  .sg { grid-template-columns: 1fr 1fr; }
  .ft-g { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .fin-big { font-size: 4.5rem; }
  .accomp-big { font-size: 4.5rem; }
  .nav-r .btn-o { display: none; }
}