:root{
  --blue:#0E4A59;
  --blue2:#083944;

  --yellow:#F2B705;
  --orange:#F28C0F;
  --red:#D94B3D;

  --bg:#F5F7FB;
  --card:#FFFFFF;
  --text:#0F172A;
  --muted:#64748B;
  --border:#E5E7EB;

  --radius:18px;
  --shadow:0 18px 46px rgba(2, 8, 23, .14);
  --shadowSoft:0 10px 22px rgba(2, 8, 23, .07);
}

*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{ color:inherit; }
img{ max-width:100%; height:auto; display:block; }

.container{
  width:min(1220px, 92%);
  margin-inline:auto;
}

.muted{ color:var(--muted); }
.small{ font-size:.92rem; }
.tiny{ font-size:.85rem; }
.w-100{ width:100%; }

/* ---------------- TOPBAR ---------------- */
.topbar{
  background: linear-gradient(90deg, var(--blue2), var(--blue));
  color:#EAF2F4;
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar__left{ display:flex; align-items:center; gap:10px; font-weight:800; }
.topbar__right{ display:flex; gap:14px; flex-wrap:wrap; opacity:.95; }

.dot{ width:10px; height:10px; border-radius:999px; display:inline-block; }
.dot--yellow{ background:var(--yellow); }

/* ---------------- HEADER ---------------- */
.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

.brand img{
  height:46px;
  width:auto;
  filter: drop-shadow(0 10px 18px rgba(2,8,23,.10));
}

.nav{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.nav__link{
  text-decoration:none;
  font-weight:900;
  color:var(--muted);
  padding:10px 12px;
  border-radius:14px;
}
.nav__link:hover,
.nav__link.is-active{
  background:#EAF2F4;
  color:var(--blue);
  text-decoration:none;
}

.header__cta{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

/* ---------------- BUTTONS ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:1000;
  text-decoration:none;
  cursor:pointer;
  white-space:nowrap;
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn--lg{ padding:12px 18px; border-radius:16px; }

.btn--primary{
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  color:#fff;
  box-shadow: 0 12px 26px rgba(14,74,89,.25);
}
.btn--accent{
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  color:#1F2937;
  box-shadow: 0 12px 26px rgba(242,140,15,.25);
}
.btn--ghost{
  background:#fff;
  border-color:var(--border);
  color:var(--blue);
  box-shadow: 0 10px 20px rgba(2,8,23,.05);
}

/* ---------------- HERO (WOW) ---------------- */
.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.12);
}

/* Fond dynamique sans image externe */
.hero__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(1100px 520px at 18% 15%, rgba(242,183,5,.38), transparent 60%),
    radial-gradient(1000px 560px at 85% 10%, rgba(217,75,61,.28), transparent 55%),
    radial-gradient(900px 540px at 60% 85%, rgba(242,140,15,.22), transparent 60%),
    linear-gradient(135deg, var(--blue2), var(--blue));
  transform: scale(1.03);
}

/* Ajout de texture légère */
.hero__bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.05) 0,
      rgba(255,255,255,.05) 10px,
      rgba(255,255,255,.00) 10px,
      rgba(255,255,255,.00) 20px);
  opacity:.25;
}

.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:18px;
  padding:44px 0;
  align-items:start;
}

.kicker{
  margin:0 0 8px 0;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.86rem;
  opacity:.95;
}

.hero h1{
  margin:0 0 12px 0;
  font-size:2.35rem;
  line-height:1.12;
  letter-spacing:.01em;
}

.subtitle{
  margin:0 0 16px 0;
  opacity:.94;
  max-width:75ch;
}

.hl{
  padding:0 .14em;
  border-radius:10px;
}
.hl--yellow{ background: linear-gradient(transparent 62%, rgba(242,183,5,.55) 0); }
.hl--orange{ background: linear-gradient(transparent 62%, rgba(242,140,15,.48) 0); }
.hl--red{ background: linear-gradient(transparent 62%, rgba(217,75,61,.40) 0); }

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.hero__chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.chip{
  padding:7px 12px;
  border-radius:999px;
  font-weight:1000;
  font-size:.85rem;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
}
.chip--blue{ color:#EAF2F4; }
.chip--yellow{ color:#FFE9A8; }
.chip--orange{ color:#FFD2A2; }
.chip--red{ color:#FFC1BC; }

/* TrustRow */
.trustRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:6px;
}
.trustItem{
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  padding:10px 12px;
  display:flex;
  align-items:baseline;
  gap:8px;
}
.trustItem strong{
  font-size:1.25rem;
  font-weight:1000;
}
.trustItem span{
  opacity:.95;
  font-weight:900;
}

/* ---------------- HERO CARD ---------------- */
.infoCard{
  background: rgba(255,255,255,.92);
  color:var(--text);
  border:1px solid rgba(255,255,255,.65);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadow);
}

.infoCard__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.infoCard__head h2{
  margin:0;
  font-size:1.15rem;
}

.pill{
  padding:6px 10px;
  border-radius:999px;
  font-weight:1000;
  background: rgba(14,74,89,.10);
  border:1px solid rgba(14,74,89,.18);
  color:var(--blue);
}

.infoList{
  list-style:none;
  padding:0;
  margin:0 0 12px 0;
}
.infoList li{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(229,231,235,.85);
}
.infoList li:last-child{ border-bottom:none; }
.infoList span{
  color:var(--muted);
  font-weight:900;
}

.infoCard__cta{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin:12px 0 10px 0;
}

/* Mini badges */
.miniBadges{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.miniBadge{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:10px;
  box-shadow: 0 10px 20px rgba(2,8,23,.04);
}
.icon{
  width:34px; height:34px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:1000;
  color:#1F2937;
}
.icon--yellow{ background: rgba(242,183,5,.90); }
.icon--red{ background: rgba(217,75,61,.90); color:#fff; }

/* ---------------- SECTIONS ---------------- */
.section{
  padding:22px 0;
}

.sectionHead{
  margin-bottom:12px;
}
.sectionHead h2{
  margin:0 0 4px 0;
  font-size:1.55rem;
}
.sectionHead p{
  margin:0;
}

/* Sitemap */
.sitemap{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
  box-shadow: var(--shadowSoft);
}
.sitemap__row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Nodes (pastilles) */
.node{
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  font-weight:1000;
  color:var(--blue);
}
.node.is-active{
  background: rgba(14,74,89,.10);
  border-color: rgba(14,74,89,.22);
}
.node.is-highlight{
  background: rgba(242,140,15,.14);
  border-color: rgba(242,140,15,.32);
  color:#7A3D00;
}

/* ---------------- GRIDS ---------------- */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.card h3{
  margin:0 0 10px 0;
  font-size:1.1rem;
}

/* Color accents on cards */
.card--blue{ border-top:6px solid var(--blue); }
.card--orange{ border-top:6px solid var(--orange); }
.card--red{ border-top:6px solid var(--red); }

/* Lists */
.bullets{
  margin:0;
  padding-left:18px;
}
.bullets li{ margin:7px 0; }

.miniTags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.miniTag{
  font-size:.85rem;
  font-weight:1000;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  color:var(--blue);
}

/* Quote */
.quote{
  background:#F8FAFC;
  border:1px dashed rgba(100,116,139,.55);
  border-radius:16px;
  padding:12px;
}
.quote__author{
  margin-top:10px;
  font-weight:1000;
  color:var(--muted);
}

/* ---------------- PROGRAM BLOCK ---------------- */
.program{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  margin-top:14px;
}

.modules{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.module{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  background:#fff;
  box-shadow: 0 10px 20px rgba(2,8,23,.05);
}
.mDot{
  width:12px;
  height:12px;
  border-radius:999px;
  margin-top:6px;
}
.mDot--yellow{ background:var(--yellow); }
.mDot--orange{ background:var(--orange); }
.mDot--red{ background:var(--red); }
.mDot--blue{ background:var(--blue); }

.bannerCard{
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(242,183,5,.22), transparent 55%),
    radial-gradient(700px 260px at 90% 10%, rgba(217,75,61,.14), transparent 55%),
    linear-gradient(135deg, #ffffff, #EAF2F4);
  border:1px solid var(--border);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.bannerCard__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:12px;
}
.kpi{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  text-align:center;
}
.kpi strong{
  display:block;
  color:var(--blue);
  font-size:1.1rem;
  font-weight:1000;
}
.kpi span{
  color:var(--muted);
  font-weight:900;
  font-size:.85rem;
}

/* ---------------- STATS ---------------- */
.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.stat{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 10px 20px rgba(2,8,23,.05);
}
.stat__num{
  font-size:1.7rem;
  font-weight:1100;
  color:var(--blue);
}
.stat__label{
  color:var(--muted);
  font-weight:1000;
}

/* ---------------- REVIEWS ---------------- */
.reviews{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.review{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 10px 20px rgba(2,8,23,.05);
}
.review__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.stars{
  color:#F59E0B;
  font-weight:1100;
  letter-spacing:.06em;
}

/* ---------------- PANEL ---------------- */
.panel{
  background: linear-gradient(180deg, #fff, #F9FAFB);
  border:1px solid var(--border);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.panel__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

/* ---------------- STEPS ---------------- */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 10px 20px rgba(2,8,23,.05);
  font-weight:1000;
  display:flex;
  gap:10px;
  align-items:center;
}
.step__n{
  width:34px;
  height:34px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:1100;
}
.n--yellow{ background:rgba(242,183,5,.35); border:1px solid rgba(242,183,5,.55); }
.n--orange{ background:rgba(242,140,15,.26); border:1px solid rgba(242,140,15,.44); }
.n--red{ background:rgba(217,75,61,.20); border:1px solid rgba(217,75,61,.34); color:#6B1A13; }
.n--blue{ background:rgba(14,74,89,.20); border:1px solid rgba(14,74,89,.34); color:var(--blue); }

/* CTA block */
.cta{
  margin-top:14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(14,74,89,.16);
  background:
    radial-gradient(700px 240px at 15% 20%, rgba(242,183,5,.18), transparent 55%),
    radial-gradient(700px 240px at 85% 0%, rgba(217,75,61,.12), transparent 55%),
    linear-gradient(135deg, #ffffff, #EAF2F4);
  box-shadow: var(--shadowSoft);
}

/* ---------------- NEWS ---------------- */
.news{
  margin-top:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.news__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:10px;
}
.newsCard{
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  background: linear-gradient(180deg, #fff, #F9FAFB);
}
.newsTag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  font-weight:1000;
  font-size:.82rem;
  color:var(--blue);
  border:1px solid rgba(14,74,89,.18);
  background: rgba(14,74,89,.08);
}
.newsCard h4{ margin:10px 0 6px 0; }

/* ---------------- CONTACT ---------------- */
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadowSoft);
}
label{
  display:block;
  font-weight:1000;
  margin-bottom:10px;
}
input, textarea{
  width:100%;
  margin-top:6px;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  font:inherit;
  outline:none;
  background:#fff;
}
input:focus, textarea:focus{
  border-color: rgba(14,74,89,.45);
  box-shadow: 0 0 0 4px rgba(14,74,89,.10);
}

.contactCard{
  background: linear-gradient(180deg, #fff, #F9FAFB);
  border:1px solid var(--border);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.contactPills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.map{
  margin-top:12px;
  height:170px;
  border-radius:18px;
  border:1px dashed rgba(100,116,139,.55);
  background:
    repeating-linear-gradient(45deg,
      rgba(14,74,89,.10), rgba(14,74,89,.10) 12px,
      rgba(242,183,5,.10) 12px, rgba(242,183,5,.10) 24px);
  display:grid;
  place-items:center;
  color:var(--muted);
  font-weight:1000;
}

/* ---------------- FOOTER ---------------- */
.footer{
  margin-top:26px;
  background: linear-gradient(90deg, var(--blue2), var(--blue));
  color:#EAF2F4;
}
.footer__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  padding:20px 0;
}
.footer h3{ margin:0 0 8px 0; }
.footer p{ margin:0; opacity:.95; }
.footer a{ color:#fff; }
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.16);
  padding:12px 0;
  color:rgba(234,242,244,.85);
  font-size:.92rem;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .program{ grid-template-columns: 1fr; }
  .bannerCard__kpis{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .panel__grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .news__grid{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .steps{ grid-template-columns: 1fr; }
}

  
  