@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,900;1,600&family=Great+Vibes&family=Inter+Tight:wght@600&family=Figtree:wght@600&display=swap');

:root {
  --purple: #cd9fdc;
  --purple-2: #1f5fbf;
  --ink: #1c1c1c;
  --ink-2: #2a2b2b;
  --muted: #555555;
  --line: #dedede;
  --bg: #ffffff;
  --bg-soft: #f9f9fb;
  --black: #000000;
  --green: #3db489;
  --maxw: 1200px;
  --font: "Poppins", "Poppins Placeholder", sans-serif;
  --script: "Great Vibes", cursive;
  --label: "Inter Tight", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }
@media (max-width: 809px) { .container { padding: 0 20px; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 600; color: var(--ink); }
h1 { font-size: 65px; letter-spacing: -0.04em; line-height: 1.05em; }
h2 { font-size: 55px; letter-spacing: -0.04em; line-height: 1.15em; }
h3 { font-size: 22px; letter-spacing: -0.02em; line-height: 1.5em; }
h4 { font-size: 20px; letter-spacing: -0.02em; line-height: 1.6em; }
.script { font-family: var(--script); font-weight: 400; letter-spacing: 0; font-size: 1.35em; line-height: 1; }
.lead { font-size: 18px; font-weight: 400; color: var(--muted); letter-spacing: -0.02em; line-height: 1.7em; }
@media (max-width: 1199px) {
  h1 { font-size: 45px; }
  h2 { font-size: 36px; }
  h3 { font-size: 18px; }
  .lead { font-size: 16px; }
}
@media (max-width: 809px) {
  h1 { font-size: 34px; }
  h2 { font-size: 29px; }
  .script { font-size: 1.2em; }
}

.section { padding: 125px 30px; }
.section.soft { background: var(--bg-soft); }
@media (max-width: 1199px) { .section { padding: 100px 30px; } }
@media (max-width: 809px) { .section { padding: 75px 20px; } }
.inner { max-width: var(--maxw); margin: 0 auto; }

.head { max-width: 600px; margin: 0 auto 60px; text-align: center; }
.head.left { margin: 0; text-align: left; max-width: 400px; }
.head h2 { margin-bottom: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 600; font-size: 18px; color: #fff;
  background: var(--black); padding: 20px 30px; border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 0.6px 1.57px -1px rgba(0,0,0,.15), 0 2.29px 5.95px -2px rgba(0,0,0,.14), 0 10px 26px -3px rgba(0,0,0,.1);
  transition: transform .25s ease, opacity .25s ease;
}
.btn:hover { transform: translateY(-2px); opacity: .92; }
.btn.small { padding: 15px 25px; font-size: 16px; }
@media (max-width: 1199px) { .btn { font-size: 16px; } }

/* ---------- Header (absolute, transparent over hero) ---------- */
.header { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; z-index: 10; padding: 30px 30px 0; }
.nav { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 39px; width: auto; }
.nav-center { flex: 1; display: flex; justify-content: center; }
.nav-links {
  display: flex; align-items: center; gap: 30px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  padding: 10px 30px; border-radius: 10px;
}
.nav-links a { color: #fff; font-weight: 500; font-size: 16px; transition: opacity .2s; }
.nav-links a:hover { opacity: .7; }
.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-phone { display: inline-flex; align-items: center; gap: 5px; color: #fff; font-weight: 500; font-size: 14px; }
.nav-contact {
  font-family: "Figtree", sans-serif; font-weight: 600; color: #fff; background: var(--black);
  padding: 15px 25px; border-radius: 10px; font-size: 16px;
  box-shadow: 0 0.6px 1.57px -1px rgba(0,0,0,.15), 0 2.29px 5.95px -2px rgba(0,0,0,.14), 0 10px 26px -3px rgba(0,0,0,.1);
  transition: transform .25s ease;
}
.nav-contact:hover { transform: translateY(-2px); }
.burger { display: none; flex-direction: column; gap: 5px; background: rgba(255,255,255,.1); border: none; cursor: pointer; padding: 12px; border-radius: 10px; }
.burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 809px) {
  .header { padding: 20px; }
  .nav-center, .nav-phone { display: none; }
  .nav-links {
    position: fixed; inset: 74px 20px auto 20px; flex-direction: column; align-items: stretch; gap: 15px;
    background: #cd9fdc; padding: 24px; transform: translateY(-140%); transition: transform .35s ease; box-shadow: 0 20px 50px rgba(0,0,0,.2);
  }
  .nav-links.open { transform: translateY(0); }
  .burger { display: flex; }
}

/* ---------- Hero ---------- */
.hero { background: var(--purple); padding: 175px 30px 125px; overflow: hidden; }
.hero-grid { max-width: var(--maxw); margin: 0 auto; display: flex; gap: 100px; align-items: center; }
.hero-texts { min-width: 600px; flex: 0 0 auto; width: 600px; display: flex; flex-direction: column; gap: 20px; }
.hero-partners { display: flex; align-items: center; gap: 3px; }
.hero-partners img { height: 70px; width: auto; }
.hero h1 { color: #fff; }
.hero h1 .line1 { font-family: var(--font); font-weight: 600; font-size: 65px; letter-spacing: -0.04em; display: block; }
.hero h1 .line2 { font-family: var(--script); font-weight: 400; font-size: 72px; line-height: 1.05em; display: block; }
.hero .lead { color: rgba(255,255,255,.92); }
.hero-spacer { height: 20px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-rating { display: flex; align-items: center; gap: 10px; }
.hero-rating .thumb { width: 50px; height: 50px; border-radius: 50px; border: 2px solid #fff; object-fit: cover; }
.rating-txt .stars { color: #f5a623; letter-spacing: 2px; font-size: 14px; display: block; }
.rating-txt strong { color: #fff; font-weight: 600; font-size: 16px; }
.hero-visual { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 25px; }
.hero-illu { width: 100%; max-width: 500px; height: 500px; object-fit: contain; }
.hero-stats { display: flex; gap: 25px; }
.stat-card {
  background: rgba(255,255,255,.9); border: 1px solid rgba(0,0,0,.1); backdrop-filter: blur(5px);
  border-radius: 12px; padding: 12px 18px; min-width: 150px;
}
.stat-card .cap { color: var(--ink-2); font-weight: 500; font-size: 14px; line-height: 1.5; }
.stat-card .num { color: var(--purple-2); font-weight: 500; font-size: 32px; line-height: 1.2; }
@media (max-width: 1199px) {
  .hero-grid { gap: 50px; }
  .hero-texts { min-width: 380px; width: auto; flex: 1; }
  .hero-partners img { height: 40px; }
  .hero h1 .line1 { font-size: 45px; }
  .hero h1 .line2 { font-size: 45px; }
  .hero-illu { height: 400px; }
}
@media (max-width: 809px) {
  .hero { padding: 150px 20px 75px; }
  .hero-grid { flex-direction: column; }
  .hero-texts { width: 100%; min-width: 0; }
  .hero-partners { flex-wrap: wrap; gap: 9px; }
  .hero-partners img { height: 60px; }
  .hero h1 .line1 { font-size: 36px; }
  .hero h1 .line2 { font-size: 40px; }
  .hero-visual { width: 100%; }
}

/* ---------- Steps ---------- */
.steps { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: flex-start; justify-content: center; gap: 40px; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.step-ico { width: 95px; height: 95px; position: relative; display: flex; align-items: flex-end; justify-content: center; }
.step-ico .oval { width: 125px; height: 60px; background: var(--purple); border-radius: 50px; }
.step-ico svg { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 80px; color: var(--ink); }
.step-body h3 { margin-bottom: 10px; }
.step-body p { color: var(--muted); font-size: 16px; line-height: 1.7; font-weight: 400; }
.step-arrow { flex: 0 0 60px; opacity: .15; align-self: center; margin-top: 40px; }
.step-arrow svg { width: 60px; color: var(--ink); }
@media (max-width: 1199px) { .steps { gap: 20px; } .step-arrow { display: none; } }
@media (max-width: 809px) { .steps { flex-direction: column; gap: 40px; } }

/* ---------- Split (about) ---------- */
.split { max-width: var(--maxw); margin: 0 auto; display: flex; gap: 100px; align-items: center; }
.split-media { flex: 1; position: relative; border-radius: 15px; overflow: hidden; height: 550px;
  box-shadow: 0 .6px 1.57px -1px rgba(0,0,0,.15), 0 2.29px 5.95px -2px rgba(0,0,0,.14), 0 10px 26px -3px rgba(0,0,0,.1); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.16), rgba(0,0,0,.47)); }
.split-body { flex: 1; }
.split-body h2 { margin-bottom: 20px; }
.split-body .lead { margin-bottom: 30px; }
.split-body .lead strong { font-weight: 700; display: block; }
.keys { display: flex; flex-direction: column; gap: 20px; }
.key { display: flex; align-items: center; gap: 15px; }
.key .check { flex: 0 0 25px; width: 25px; height: 25px; color: var(--purple); }
.key h3 { font-size: 22px; }
@media (max-width: 1199px) { .split { gap: 50px; } .split-media { height: 450px; } }
@media (max-width: 809px) { .split { flex-direction: column; gap: 36px; } .split-media { width: 100%; height: 400px; } }

/* ---------- Services (purple) ---------- */
.services { background: radial-gradient(50% 50% at 50% 50%, var(--purple) 0%, var(--purple) 100%); }
.services .head h2, .services .head .lead { color: #fff; }
.services .head .lead { color: rgba(255,255,255,.85); }
.cards { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.card {
  flex: 1 1 360px; max-width: 374px; background: rgba(255,255,255,.2); border: 1px solid #e0e0e0;
  border-radius: 15px; padding: 20px 20px 30px; display: flex; flex-direction: column; gap: 25px;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,.02);
}
.card-img { width: 100%; aspect-ratio: 1.51; border-radius: 15px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 0 10px; display: flex; flex-direction: column; gap: 20px; }
.card-label { font-family: var(--label); font-weight: 600; font-size: 18px; color: var(--purple); line-height: 1.3em; }
.card-doc {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  background: #f2f2f2; border: 1px solid #d9d9d9; border-radius: 7px; padding: 10px 15px;
  font-family: var(--font); font-weight: 500; font-size: 14px; color: var(--ink); transition: gap .2s;
}
.card-doc:hover { gap: 14px; }
.card-doc svg { width: 14px; height: 14px; }
.services .btn-wrap { text-align: center; margin-top: 40px; }
@media (max-width: 809px) { .card { flex: 1 1 100%; max-width: 100%; } }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: var(--maxw); margin: 0 auto; display: flex; gap: 100px; align-items: flex-start; }
.faq-list { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.faq-item { border: 1px solid #dedede; border-radius: 15px; background: #fff; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 30px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; font-family: var(--font); }
.faq-q h3 { font-weight: 600; font-size: 22px; }
.faq-q .tog { flex: 0 0 20px; width: 20px; height: 20px; position: relative; transition: transform .3s; color: var(--ink); }
.faq-q .tog::before, .faq-q .tog::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .tog::before { top: 9px; left: 2px; right: 2px; height: 2px; }
.faq-q .tog::after { left: 9px; top: 2px; bottom: 2px; width: 2px; transition: opacity .3s; }
.faq-item.open .tog::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 30px 30px; color: var(--muted); font-weight: 400; font-size: 16px; }
@media (max-width: 1199px) { .faq-wrap { gap: 50px; } .faq-q h3 { font-size: 18px; } }
@media (max-width: 809px) { .faq-wrap { flex-direction: column; gap: 50px; } .head.left { max-width: none; } }

/* ---------- Testimonials ---------- */
.reviews { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review { background: #fff; border-radius: 15px; padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.review .stars { color: #f5a623; letter-spacing: 2px; }
.review p { color: var(--muted); font-weight: 400; font-size: 16px; line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: 15px; }
.review-author .ph { width: 50px; height: 50px; border-radius: 40px; border: 2px solid var(--purple); object-fit: cover; }
.review-author h6 { font-weight: 600; font-size: 16px; }
.review-author span { color: #8c8c8c; font-size: 14px; font-weight: 400; }
@media (max-width: 1199px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 809px) { .reviews { grid-template-columns: 1fr; } .review { padding: 30px; } }

/* ---------- CTA band ---------- */
.cta { padding: 100px 30px; }
.cta-band {
  max-width: var(--maxw); margin: 0 auto; position: relative; overflow: hidden;
  background: radial-gradient(50% 50% at 50% 50%, var(--purple-2) 0%, #184fa1 100%);
  background: var(--purple);
  border-radius: 20px; padding: 80px 40px; text-align: center;
}
.cta-band h3 { color: #fff; font-size: 40px; line-height: 1.25em; letter-spacing: -0.04em; max-width: 800px; margin: 0 auto 40px; }
@media (max-width: 1199px) { .cta-band h3 { font-size: 32px; } }
@media (max-width: 809px) { .cta { padding: 50px 20px; } .cta-band { padding: 50px 24px; } .cta-band h3 { font-size: 26px; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--purple); padding: 200px 30px 100px; text-align: center; }
.page-hero .inner { max-width: 720px; }
.page-hero h1 { color: #fff; font-size: 55px; letter-spacing: -0.04em; line-height: 1.15em; margin-bottom: 20px; }
.page-hero h1 .script { color: #fff; }
.page-hero p { color: rgba(255,255,255,.9); font-size: 18px; font-weight: 400; }
@media (max-width: 809px) { .page-hero { padding: 150px 20px 75px; } .page-hero h1 { font-size: 34px; } }

/* ---------- Chips (à propos values) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.chip { padding: 12px 22px; border-radius: 999px; background: rgba(205,159,220,.18); color: #a05fc0; font-weight: 600; font-size: 15px; }

/* ---------- Doc list (formations / tarifs) ---------- */
.doc-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.doc { display: flex; align-items: center; gap: 16px; padding: 22px; background: #fff; border: 1px solid #dedede; border-radius: 15px; transition: transform .25s, box-shadow .25s; }
.doc:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.doc-ico { flex: 0 0 46px; height: 46px; border-radius: 12px; background: rgba(205,159,220,.18); color: #a05fc0; display: grid; place-items: center; }
.doc-txt strong { display: block; font-weight: 600; font-size: 16px; }
.doc-txt span { font-size: 13px; color: var(--muted); font-weight: 400; }
@media (max-width: 900px) { .doc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .doc-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { max-width: var(--maxw); margin: 0 auto; display: flex; gap: 48px; align-items: flex-start; }
.info-block { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.info-row { display: flex; gap: 16px; padding: 22px; background: var(--bg-soft); border: 1px solid #dedede; border-radius: 15px; }
.info-row .ico { flex: 0 0 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid #dedede; display: grid; place-items: center; color: var(--purple); }
.info-row strong { display: block; font-weight: 600; margin-bottom: 4px; }
.info-row p, .info-row a { color: var(--muted); font-size: 15px; font-weight: 400; }
.info-row a:hover { color: var(--ink); }
.form { flex: 1.1; background: #fff; border: 1px solid #dedede; border-radius: 20px; padding: 34px; box-shadow: 0 10px 40px rgba(0,0,0,.05); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.field input, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid #dedede; border-radius: 12px; font-family: inherit; font-size: 16px; background: var(--bg-soft); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--purple); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.form .btn { width: 100%; }
.map-wrap { max-width: var(--maxw); margin: 48px auto 0; border-radius: 20px; overflow: hidden; border: 1px solid #dedede; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
@media (max-width: 860px) { .contact-grid { flex-direction: column; } .form-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { padding: 100px 30px 50px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 60px; }
.footer-col .flogo { height: 39px; margin-bottom: 20px; }
.footer-col p { color: var(--muted); font-size: 16px; font-weight: 400; line-height: 1.7; }
.footer-social { display: flex; gap: 15px; margin-top: 20px; }
.footer-social a { color: var(--ink); }
.footer-col h4 { margin-bottom: 20px; }
.footer-col .addr { display: flex; flex-direction: column; }
.footer-col .addr p { margin: 0; }
.footer-col .maplink { margin-top: 10px; color: var(--purple); font-weight: 500; text-decoration: underline; }
.footer-bottom { border-top: 1px solid #dedede; margin-top: 30px; padding-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { color: var(--muted); font-size: 16px; font-weight: 400; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { font-size: 16px; }
.footer-credit a { color: var(--green); text-decoration: underline; }
@media (max-width: 1199px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (max-width: 809px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 15px; }
}

/* ================= À PROPOS ================= */

/* ---------- Page hero (photo variant) ---------- */
.page-hero--photo { position: relative; background: #000; padding: 200px 30px 125px; overflow: hidden; text-align: center; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(rgba(0,0,0,.71) 0%, rgba(0,0,0,.69) 100%); }
.page-hero--photo .inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.page-hero--photo h1 { color: #fff; font-size: 65px; letter-spacing: -0.04em; line-height: 1.05em; margin: 0; }
.page-hero--photo p { color: rgba(255,255,255,.8); font-size: 18px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.7em; }
@media (max-width: 1199px) { .page-hero--photo { padding: 175px 30px 100px; } .page-hero--photo h1 { font-size: 45px; } .page-hero--photo p { font-size: 16px; } }
@media (max-width: 809px) { .page-hero--photo { padding: 150px 20px 75px; } .page-hero--photo h1 { font-size: 36px; } }

/* ---------- Mission (slider + texts + key points) ---------- */
.mission .inner { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.slider { width: 100%; }
.slider-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none; }
.slider-track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 auto; width: 300px; aspect-ratio: 1; scroll-snap-align: start; border-radius: 15px; overflow: hidden;
  box-shadow: 0 .6px 1.57px -1px rgba(0,0,0,.15), 0 2.29px 5.95px -2px rgba(0,0,0,.14), 0 10px 26px -3px rgba(0,0,0,.1); }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.slider-arrow { width: 36px; height: 36px; border: none; border-radius: 40px; background: var(--purple); color: #fff;
  display: grid; place-items: center; cursor: pointer; transition: transform .2s ease, opacity .2s ease; }
.slider-arrow:hover { transform: scale(1.08); }
.slider-arrow:active { transform: scale(.95); }
.slider-arrow svg { width: 16px; height: 16px; }

.mission-texts { width: 100%; max-width: var(--maxw); display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.mission-title { font-size: 35px; font-weight: 600; letter-spacing: -0.04em; line-height: 1.25em; }
.mission-texts .lead { max-width: 900px; }
.keypoints { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(50px, 1fr)); gap: 15px; margin-top: 20px; }
.kp { display: flex; align-items: center; justify-content: center; gap: 10px; }
.kp-ico { flex: 0 0 25px; width: 25px; height: 25px; color: #a05fc0; }
.kp-ico svg { width: 25px; height: 25px; }
.kp h3 { font-size: 22px; letter-spacing: -0.02em; line-height: 1.5em; }
@media (max-width: 1199px) { .slide { width: 260px; } .mission-title { font-size: 32px; } }
@media (max-width: 809px) {
  .slide { width: min(78vw, 320px); }
  .mission-title { font-size: 26px; }
  .keypoints { grid-template-columns: 1fr; }
  .kp { justify-content: flex-start; }
}

/* ---------- Formation (image boxes) ---------- */
.formation-head { display: flex; gap: 100px; align-items: center; margin-bottom: 75px; }
.formation-head h2 { flex: 1; margin: 0; }
.formation-head .lead { flex: 1; }
.imgboxes { display: flex; gap: 30px; }
.imgbox { flex: 1; min-width: 0; background: #fff; border-radius: 15px; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 2px 10px rgba(0,0,0,.02); }
.imgbox-media { height: 227px; overflow: hidden; }
.imgbox-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.imgbox:hover .imgbox-media img { transform: scale(1.04); }
.imgbox-body { padding: 30px; display: flex; flex-direction: column; gap: 10px; }
.imgbox-body h3 { font-size: 22px; letter-spacing: -0.02em; line-height: 1.5em; }
.imgbox-body p { color: var(--muted); font-size: 16px; font-weight: 400; line-height: 1.7; }
@media (max-width: 1199px) { .formation-head { gap: 50px; margin-bottom: 50px; } }
@media (max-width: 809px) {
  .formation-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .imgboxes { flex-direction: column; }
}

/* ================= TARIFS ================= */
.page-hero--purple { position: relative; overflow: hidden; text-align: center; padding: 200px 30px 125px;
  background: radial-gradient(50% 50% at 50% 50%, var(--purple) 0%, var(--purple) 100%); }
.page-hero-pattern { position: absolute; inset: 0; z-index: 0; background-repeat: repeat; background-position: left top; background-size: 1200px auto;
  -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000 0%, rgba(0,0,0,.5) 84%, transparent 100%);
  mask: radial-gradient(50% 50% at 50% 50%, #000 0%, rgba(0,0,0,.5) 84%, transparent 100%); }
.page-hero--purple .inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.page-hero--purple h1 { color: #fff; font-size: 65px; letter-spacing: -0.04em; line-height: 1.05em; margin: 0; }
.page-hero--purple p { color: #fff; font-size: 18px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.7em; }
@media (max-width: 1199px) { .page-hero--purple { padding: 175px 30px 100px; } .page-hero--purple h1 { font-size: 45px; } .page-hero--purple p { font-size: 16px; } }
@media (max-width: 809px) { .page-hero--purple { padding: 150px 20px 75px; } .page-hero--purple h1 { font-size: 36px; } }

.price-grid { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.price-card { flex: 0 0 calc((100% - 40px) / 5); display: flex; flex-direction: column; gap: 25px;
  padding: 20px 20px 30px; background: #fff; border: 1px solid #e0e0e0; border-radius: 15px; box-shadow: 0 2px 10px rgba(0,0,0,.02); }
.price-media { width: 100%; aspect-ratio: 1.51064; border-radius: 15px; overflow: hidden; }
.price-media img { width: 100%; height: 100%; object-fit: cover; }
.price-body { padding: 0 10px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.price-title { font-family: var(--label); font-weight: 600; font-size: 16px; color: var(--purple); line-height: 1.3em; letter-spacing: 0; }
.price-doc { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  background: #f2f2f2; border: 1px solid #d9d9d9; border-radius: 7px; padding: 10px 30px 10px 15px;
  font-family: var(--font); font-weight: 500; font-size: 14px; color: var(--ink); transition: gap .2s ease, padding .2s ease; }
.price-doc:hover { gap: 12px; padding-right: 26px; }
.price-doc svg { width: 14px; height: 14px; }
@media (max-width: 1199px) { .price-card { flex: 1 1 100%; } }

/* ================= CONTACT (Framer) ================= */
.contact-flex { max-width: var(--maxw); margin: 0 auto; display: flex; gap: 100px; align-items: center; }
.contact-col { flex: 1 0 0; width: 1px; }
.contact-col h2 { font-size: 55px; font-weight: 600; letter-spacing: -0.04em; line-height: 1.15em; color: var(--ink); margin: 0; }
.contact-col > p { margin: 20px 0 0; font-size: 18px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.7em; color: var(--muted); }
.contact-info { margin-top: 40px; display: flex; flex-direction: column; gap: 15px; }
.contact-info-row { display: flex; align-items: center; gap: 15px; }
.contact-info-ico { flex: 0 0 25px; width: 25px; height: 25px; border-radius: 30px; background: var(--purple); color: #fff; display: grid; place-items: center; }
.contact-info-ico svg { width: 14px; height: 14px; }
.contact-info-row h4 { margin: 0; font-size: 20px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.6em; color: var(--ink); }
.contact-info-row a { color: inherit; }
.contact-info-row a:hover { color: var(--purple); }
.contact-card { flex: 1 0 0; width: 1px; background: var(--bg-soft); border-radius: 15px; padding: 40px;
  box-shadow: 0 .6px 1.57px -1px rgba(0,0,0,.15), 0 2.29px 5.95px -2px rgba(0,0,0,.14), 0 10px 26px -3px rgba(0,0,0,.1); }
.contact-card h2 { text-align: center; font-size: 24px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.4em; color: var(--ink); margin: 0 0 40px; }
.contact-form2 { display: flex; flex-direction: column; gap: 15px; }
.contact-form2 input, .contact-form2 select, .contact-form2 textarea { width: 100%; padding: 12px; border: 1px solid #e0e0e0; border-radius: 10px;
  background: #fff; font-family: var(--font); font-weight: 400; font-size: 14px; color: #666; }
.contact-form2 select { color: #999; }
.contact-form2 textarea { min-height: 100px; resize: vertical; }
.contact-form2 input:focus, .contact-form2 select:focus, .contact-form2 textarea:focus { outline: none; border-color: #09f; }
.contact-form2 .btn { width: 100%; }
.map-full { max-width: var(--maxw); margin: 0 auto; border-radius: 15px; overflow: hidden; }
.map-full iframe { width: 100%; height: 500px; border: 0; display: block; }
@media (min-width: 810px) and (max-width: 1199px) { .contact-flex { gap: 50px; } .contact-col h2 { font-size: 36px; } .contact-card { padding: 30px; } }
@media (max-width: 809px) { .contact-flex { flex-direction: column; gap: 75px; align-items: stretch; }
  .contact-col, .contact-card { flex: none; width: 100%; } .contact-col h2 { font-size: 29px; } .contact-card { padding: 30px; } .map-full iframe { height: 400px; } }

/* ---------- CTA full-bleed (radial + pattern) ---------- */
.cta--full { position: relative; overflow: hidden; padding: 100px 30px; text-align: center;
  background: radial-gradient(50% 50% at 50% 50%, var(--purple) 0%, var(--purple) 100%); }
.cta-pattern { position: absolute; inset: 0; z-index: 0; background-repeat: repeat; background-position: left top; background-size: 1200px auto;
  -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000 0%, rgba(0,0,0,.5) 84%, transparent 100%);
  mask: radial-gradient(50% 50% at 50% 50%, #000 0%, rgba(0,0,0,.5) 84%, transparent 100%); }
.cta-content { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.cta--full h3 { color: #fff; font-size: 40px; font-weight: 600; letter-spacing: -0.04em; line-height: 1.25em; max-width: 900px; }
@media (max-width: 1199px) { .cta--full { padding: 75px 30px; } .cta--full h3 { font-size: 32px; } }
@media (max-width: 809px) { .cta--full { padding: 50px 20px; } .cta--full h3 { font-size: 26px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
