/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --blue:        #1f3c88;
  --blue-dark:   #142850;
  --blue-light:  #2f5edb;
  --blue-relief: #2b4fa3;
  --red:         #e53935;
  --red-dark:    #b71c1c;
  --red-light:   #ff5252;
  --white:       #ffffff;
  --text-sec:    #c7d2fe;
  --light-bg:    #e6ecff;
  --bg:          #0f172a;
  --bg-card:     #162247;
  --bg-card2:    #1a2d5a;
  --border:      rgba(47,94,219,0.22);
  --border-hover:rgba(47,94,219,0.55);
  --font-display:'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --max-w:       1100px;
  --radius:      6px;
  --transition:  0.22s ease;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);font-size:1rem;line-height:1.65;background:var(--bg);color:var(--white);overflow-x:hidden}
img,video,canvas,svg{max-width:100%;height:auto;display:block}
a{color:var(--blue-light);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--white)}
ul{padding-left:1.25rem}
li{margin-bottom:.35rem}
strong{color:var(--white)}

/* ===========================
   HEADER
   =========================== */
header{position:sticky;top:0;z-index:100;background:var(--blue-dark);border-bottom:1px solid var(--border);transition:box-shadow var(--transition)}
header.scrolled{box-shadow:0 4px 24px rgba(0,0,0,.5)}

.header-inner{max-width:var(--max-w);margin:0 auto;padding:1rem 1.5rem;display:flex;align-items:center;gap:1.5rem}
.logo-link{flex-shrink:0}
.logo-img{height:64px;width:auto;object-fit:contain}

.header-title{flex:1;min-width:0}
.header-title h1{font-family:var(--font-display);font-size:1.6rem;font-weight:800;color:var(--white);letter-spacing:.04em;text-transform:uppercase;line-height:1.1}
.header-tagline{font-size:.72rem;color:var(--text-sec);letter-spacing:.06em;text-transform:uppercase;margin-top:.2rem;opacity:.75}

.header-contacts{display:flex;align-items:center;gap:.75rem;flex-shrink:0}
.contact-pill{display:flex;align-items:center;gap:.4rem;font-size:.82rem;font-weight:600;color:var(--text-sec);padding:.4rem .85rem;border:1px solid var(--border);border-radius:100px;white-space:nowrap;transition:all var(--transition)}
.contact-pill svg{width:14px;height:14px;flex-shrink:0}
.contact-pill:hover{color:var(--white);border-color:var(--red);background:rgba(229,57,53,.1)}

.social-icons{display:flex;gap:.5rem}
.social-icons a{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border:1px solid var(--border);border-radius:50%;color:var(--text-sec);transition:all var(--transition)}
.social-icons a svg{width:16px;height:16px}
.social-icons a:hover{color:var(--white);border-color:var(--red);background:rgba(229,57,53,.12)}

.main-nav{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;background:var(--blue);border-top:1px solid var(--border)}
.main-nav a{font-family:var(--font-display);font-size:.8rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--text-sec);padding:.65rem 1rem;border-bottom:2px solid transparent;transition:all var(--transition)}
.main-nav a:hover{color:var(--white);border-bottom-color:var(--red)}
.main-nav a.nav-cta{background:var(--red);color:var(--white);margin-left:.5rem;padding:.65rem 1.25rem;border-bottom:none}
.main-nav a.nav-cta:hover{background:var(--red-light)}

/* ===========================
   BUTTONS
   =========================== */
.btn{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--font-display);font-size:.9rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:.75rem 1.75rem;border-radius:var(--radius);border:2px solid transparent;cursor:pointer;transition:all var(--transition);text-decoration:none}
.btn-primary{background:var(--red);color:var(--white);border-color:var(--red)}
.btn-primary:hover{background:var(--red-light);border-color:var(--red-light);color:var(--white)}
.btn-ghost{background:transparent;color:var(--text-sec);border-color:var(--border-hover)}
.btn-ghost:hover{border-color:var(--white);color:var(--white)}
.btn-full{width:100%;justify-content:center}

/* ===========================
   HERO
   =========================== */
.hero{position:relative;min-height:85vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#0f172a 0%,#142850 50%,#0f172a 100%);overflow:hidden;padding:6rem 1.5rem}
.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 20% 50%,rgba(31,60,136,.35) 0%,transparent 70%),radial-gradient(ellipse 60% 40% at 80% 30%,rgba(47,94,219,.15) 0%,transparent 60%)}
.hero::after{content:'';position:absolute;inset:0;background-image:repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(255,255,255,.012) 2px,rgba(255,255,255,.012) 4px);pointer-events:none}

.hero-wave{position:absolute;bottom:-2px;left:0;width:100%;overflow:hidden;line-height:0}
.hero-wave svg{display:block;width:100%;height:56px}

.hero-content{position:relative;z-index:1;text-align:center;max-width:780px}
.hero-badge{display:inline-block;font-family:var(--font-display);font-size:.75rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--text-sec);border:1px solid var(--border-hover);padding:.35rem 1rem;border-radius:100px;margin-bottom:1.5rem;animation:fadeUp .6s ease both}
.hero-title{font-family:var(--font-display);font-size:clamp(3rem,8vw,6rem);font-weight:800;line-height:1;color:var(--white);text-transform:uppercase;letter-spacing:-.01em;margin-bottom:1.25rem;animation:fadeUp .6s .1s ease both}
.hero-title em{font-style:normal;color:var(--red-light)}
.hero-sub{font-size:1.1rem;color:var(--text-sec);line-height:1.7;max-width:560px;margin:0 auto 2rem;animation:fadeUp .6s .2s ease both}
.hero-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:3rem;animation:fadeUp .6s .3s ease both}
.hero-stats{display:flex;align-items:center;justify-content:center;gap:2rem;animation:fadeUp .6s .4s ease both}
.stat{display:flex;flex-direction:column;align-items:center;gap:.15rem}
.stat strong{font-family:var(--font-display);font-size:1.5rem;font-weight:800;color:var(--white)}
.stat span{font-size:.7rem;color:var(--text-sec);text-transform:uppercase;letter-spacing:.1em;opacity:.8}
.stat-sep{width:1px;height:40px;background:var(--border-hover)}

@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

/* ===========================
   SECTIONS
   =========================== */
.section{padding:5rem 1.5rem;background:var(--bg)}
.section-dark{background:var(--blue-dark)}
.container{max-width:var(--max-w);margin:0 auto}
.section-header{margin-bottom:3rem}
.section-label{display:inline-block;font-family:var(--font-display);font-size:.7rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--red-light);margin-bottom:.5rem}
.section-header h2{font-family:var(--font-display);font-size:clamp(1.8rem,4vw,2.6rem);font-weight:800;text-transform:uppercase;color:var(--white);letter-spacing:.02em;line-height:1.1}
.section-header h2::after{content:'';display:block;width:48px;height:3px;background:var(--red);margin-top:.75rem}
.section-cta{margin-top:2.5rem}

/* DESCRIPTION */
.section-description{padding:2.5rem 1.5rem;background:var(--blue);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.lead-text{max-width:860px;margin:0 auto;font-size:1.05rem;line-height:1.8;color:var(--text-sec);text-align:center}
.lead-text strong{color:var(--white)}
.lead-text em{color:var(--red-light);font-style:normal}

/* IMG BLOCK */
.img-block{margin-bottom:2.5rem;border-radius:var(--radius);overflow:hidden;max-height:320px;border:1px solid var(--border)}
.img-block img{width:100%;height:320px;object-fit:cover;border-radius:var(--radius)}

/* ===========================
   SERVICES
   =========================== */
.services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.25rem}
.service-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.75rem;transition:all var(--transition)}
.service-card:hover{border-color:var(--blue-light);background:var(--bg-card2);transform:translateY(-2px)}
.service-icon{width:44px;height:44px;border:1px solid var(--border-hover);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:1rem;color:var(--text-sec);background:rgba(47,94,219,.1)}
.service-icon svg{width:22px;height:22px}
.service-card h3{font-family:var(--font-display);font-size:1.1rem;font-weight:700;text-transform:uppercase;color:var(--white);margin-bottom:.6rem;letter-spacing:.04em}
.service-card p{font-size:.9rem;color:var(--text-sec);line-height:1.6;opacity:.85}

/* ===========================
   ÉVÉNEMENTIEL
   =========================== */
.event-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.25rem}
.event-category{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;transition:border-color var(--transition)}
.event-category:hover{border-color:var(--border-hover)}
.event-category--highlight{border-color:rgba(229,57,53,.3);background:rgba(229,57,53,.04)}
.event-category h3{font-family:var(--font-display);font-size:1rem;font-weight:700;text-transform:uppercase;color:var(--white);margin-bottom:.85rem;letter-spacing:.04em;display:flex;align-items:center;gap:.5rem}
.cat-icon{font-size:1rem}
.event-category ul{list-style:none;padding:0}
.event-category li{font-size:.875rem;color:var(--text-sec);padding:.25rem 0;border-bottom:1px solid rgba(199,210,254,.07);display:flex;align-items:flex-start;gap:.5rem;opacity:.85}
.event-category li::before{content:'—';color:var(--red);flex-shrink:0;font-size:.75rem;margin-top:.15rem}

/* ===========================
   ERP
   =========================== */
.erp-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:.75rem;margin-bottom:1.5rem}
.erp-item{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:.9rem 1.1rem;font-size:.875rem;color:var(--text-sec);display:flex;align-items:center;justify-content:space-between;gap:.5rem;transition:border-color var(--transition)}
.erp-item:hover{border-color:var(--blue-light)}
.erp-item span{font-family:var(--font-display);font-size:.7rem;font-weight:700;color:var(--red-light);letter-spacing:.08em;text-transform:uppercase;flex-shrink:0}
.erp-note{font-size:.9rem;color:var(--text-sec);font-style:italic;margin-top:.5rem;opacity:.8}

/* ===========================
   GÉO
   =========================== */
.geo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1rem;margin-bottom:1.5rem}
.geo-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem 1.5rem;border-left:3px solid var(--red);transition:all var(--transition)}
.geo-card:hover{background:var(--bg-card2);border-color:var(--border-hover);border-left-color:var(--red-light)}
.geo-card h3{font-family:var(--font-display);font-size:1rem;font-weight:700;text-transform:uppercase;color:var(--white);margin-bottom:.4rem;letter-spacing:.04em}
.geo-card h3 span{color:var(--text-sec);font-weight:400}
.geo-card p{font-size:.875rem;color:var(--text-sec);opacity:.85}
.geo-note{font-size:.9rem;color:var(--text-sec);font-style:italic;margin-bottom:1.5rem;opacity:.75}
.map-container{border-radius:var(--radius);overflow:hidden;border:1px solid var(--border)}
.map-container .cky-unblock-content{background:var(--bg-card);padding:1rem;font-size:.875rem;color:var(--text-sec);text-align:center;display:none}

/* ===========================
   À PROPOS
   =========================== */
.about-layout{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.about-text p{color:var(--text-sec);margin-bottom:1rem;opacity:.9}
.about-img img{width:100%;object-fit:cover;border-radius:var(--radius);border:1px solid var(--border)}

/* ===========================
   GALERIE
   =========================== */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:.75rem;margin-bottom:2rem}
.gallery-grid img{width:100%;height:200px;object-fit:cover;border-radius:var(--radius);border:1px solid var(--border);transition:all var(--transition)}
.gallery-grid img:hover{border-color:var(--blue-light);transform:scale(1.02)}
.certif-logos{display:flex;justify-content:center;align-items:center;gap:2.5rem;flex-wrap:wrap;padding:1.5rem 0;border-top:1px solid var(--border)}
.certif-logos img{height:60px;width:auto;object-fit:contain;opacity:.65;filter:grayscale(30%);transition:all var(--transition)}
.certif-logos img:hover{opacity:1;filter:none}

/* ===========================
   PARTENAIRES
   =========================== */
.partner-logos{display:flex;justify-content:center;align-items:center;gap:2rem;flex-wrap:wrap;margin-bottom:2rem}
.partner-logos a{display:flex;align-items:center;padding:1.25rem 2rem;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);transition:all var(--transition)}
.partner-logos a:hover{border-color:var(--blue-light);background:var(--bg-card2)}
.partner-logos img{height:50px;width:auto;object-fit:contain;filter:grayscale(20%);transition:filter var(--transition)}
.partner-logos a:hover img{filter:none}
.partner-desc{font-size:.9rem;color:var(--text-sec);line-height:1.7;max-width:700px;margin:0 auto;text-align:center;opacity:.85}

/* ===========================
   AVIS
   =========================== */
.section-avis{text-align:center;padding:4rem 1.5rem}
.section-avis h2{font-family:var(--font-display);font-size:2rem;font-weight:800;text-transform:uppercase;color:var(--white);margin-bottom:.5rem}
.section-avis p{color:var(--text-sec);margin-bottom:1.5rem;opacity:.85}

/* ===========================
   CONTACT
   =========================== */
.contact-layout{display:grid;grid-template-columns:280px 1fr;gap:3rem;align-items:start}
.contact-info{display:flex;flex-direction:column;gap:1rem}
.contact-block{display:flex;align-items:flex-start;gap:.85rem;padding:1rem 1.25rem;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);transition:border-color var(--transition)}
.contact-block:hover{border-color:var(--border-hover)}
.contact-block svg{width:20px;height:20px;color:var(--text-sec);flex-shrink:0;margin-top:.1rem}
.contact-block div{display:flex;flex-direction:column;gap:.1rem}
.contact-block strong{font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;color:var(--text-sec);opacity:.7;font-family:var(--font-display);font-weight:700}
.contact-block a{font-size:.9rem;color:var(--white)}
.contact-block a:hover{color:var(--text-sec)}
.contact-form{display:flex;flex-direction:column;gap:1.25rem}
.form-group{display:flex;flex-direction:column;gap:.4rem}
.form-group label{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--text-sec);font-family:var(--font-display);opacity:.8}
.form-group input,.form-group textarea{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:.8rem 1rem;font-family:var(--font-body);font-size:.95rem;color:var(--white);transition:border-color var(--transition);outline:none;width:100%;resize:vertical}
.form-group input::placeholder,.form-group textarea::placeholder{color:rgba(199,210,254,.3)}
.form-group input:focus,.form-group textarea:focus{border-color:var(--blue-light)}

/* ===========================
   FAQ
   =========================== */
.faq-list{max-width:780px;display:flex;flex-direction:column;gap:.5rem}
.faq-item{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:border-color var(--transition)}
.faq-item[open]{border-color:var(--border-hover)}
.faq-item summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.1rem 1.5rem;font-family:var(--font-display);font-size:1rem;font-weight:600;text-transform:uppercase;letter-spacing:.04em;color:var(--text-sec);cursor:pointer;user-select:none;transition:color var(--transition)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-size:1.3rem;color:var(--red-light);flex-shrink:0;transition:transform var(--transition);font-family:monospace}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item summary:hover{color:var(--white)}
.faq-body{padding:0 1.5rem 1.25rem;border-top:1px solid var(--border)}
.faq-body p{font-size:.9rem;color:var(--text-sec);margin-top:.85rem;line-height:1.7;opacity:.85}
.faq-body ul{margin-top:.75rem}
.faq-body li{font-size:.875rem;color:var(--text-sec);opacity:.85}
.faq-body a{color:var(--text-sec);word-break:break-word;text-decoration:underline;text-underline-offset:3px}
.faq-body a:hover{color:var(--white)}
.faq-cta{display:inline-block;margin-top:1rem;font-family:var(--font-display);font-size:.8rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--red-light) !important;border-bottom:1px solid rgba(255,82,82,.35);padding-bottom:.1rem;text-decoration:none !important}
.faq-cta:hover{color:var(--white) !important;border-bottom-color:var(--white)}

/* ===========================
   FOOTER
   =========================== */
footer{background:var(--blue-dark);border-top:1px solid var(--border);padding:2.5rem 1.5rem}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr auto auto;gap:2rem;align-items:center}
.footer-brand{display:flex;align-items:center;gap:1rem}
.footer-logo{height:40px;width:auto;opacity:.85}
.footer-brand p{font-size:.8rem;color:var(--text-sec);opacity:.7}
.footer-links,.footer-contact{display:flex;flex-direction:column;gap:.4rem}
.footer-links a,.footer-contact a{font-size:.82rem;color:var(--text-sec);opacity:.7;transition:all var(--transition)}
.footer-links a:hover,.footer-contact a:hover{color:var(--white);opacity:1}

/* ===========================
   RESPONSIVE
   =========================== */
@media(max-width:900px){
  .header-inner{flex-wrap:wrap;gap:.75rem}
  .header-contacts{display:none}
  .about-layout{grid-template-columns:1fr}
  .about-img{order:-1}
  .contact-layout{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr;gap:1.25rem}
  .footer-brand{flex-direction:column;align-items:flex-start}
}
@media(max-width:640px){
  .hero-stats{gap:1.25rem}
  .stat strong{font-size:1.2rem}
  .hero-actions{flex-direction:column;align-items:center}
  .main-nav a{font-size:.7rem;padding:.55rem .65rem}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid img{height:140px}
  .erp-grid{grid-template-columns:1fr 1fr}
}

/* ===========================
   PAGE HERO (sous-pages)
   =========================== */
.page-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  background: linear-gradient(135deg, #0f172a 0%, #142850 60%, #0f172a 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(31,60,136,.3) 0%, transparent 70%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeUp .6s ease both;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1.05;
  margin: .75rem 0 1rem;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-sec);
  line-height: 1.7;
  opacity: .9;
}

/* ===========================
   ÉVÉNEMENTIEL CARDS
   =========================== */
.evnt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.evnt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), background var(--transition);
}
.evnt-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card2);
}
.evnt-card--accent {
  border-color: rgba(229,57,53,.25);
  background: rgba(229,57,53,.03);
}
.evnt-card--accent:hover {
  border-color: rgba(229,57,53,.5);
}

.evnt-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.evnt-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  background: rgba(47,94,219,.1);
}
.evnt-icon--red {
  border-color: rgba(229,57,53,.35);
  background: rgba(229,57,53,.08);
  color: var(--red-light);
}
.evnt-icon svg { width: 22px; height: 22px; }

.evnt-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: .25rem;
}
.evnt-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.2;
}
.evnt-card ul {
  list-style: none;
  padding: 0;
  flex: 1;
}
.evnt-card li {
  font-size: .875rem;
  color: var(--text-sec);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(199,210,254,.06);
  display: flex;
  gap: .5rem;
  opacity: .85;
  line-height: 1.5;
}
.evnt-card li::before {
  content: '—';
  color: var(--red);
  flex-shrink: 0;
  font-size: .75rem;
  margin-top: .2rem;
}

/* Destinataires */
.dest-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}
.dest-item {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .6rem .85rem;
  background: rgba(47,94,219,.08);
  border-left: 2px solid var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.dest-item strong {
  font-size: .8rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
}
.dest-item span {
  font-size: .8rem;
  color: var(--text-sec);
  opacity: .8;
}

/* CTA bas de page événementiel */
.evnt-cta-block {
  margin-top: 3rem;
  background: var(--blue);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.evnt-cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: .35rem;
}
.evnt-cta-text p {
  font-size: .9rem;
  color: var(--text-sec);
  opacity: .85;
  max-width: 520px;
}

@media (max-width: 640px) {
  .evnt-grid { grid-template-columns: 1fr; }
  .evnt-cta-block { flex-direction: column; text-align: center; }
  .evnt-cta-text p { max-width: 100%; }
}

/* ===========================
   PAGE ERP — SERVICES
   =========================== */
.erp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.erp-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), background var(--transition);
}
.erp-service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card2);
}
.erp-service-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.erp-service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.2;
}
.erp-service-card ul {
  list-style: none;
  padding: 0;
}
.erp-service-card li {
  font-size: .875rem;
  color: var(--text-sec);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(199,210,254,.06);
  display: flex;
  gap: .5rem;
  opacity: .85;
  line-height: 1.5;
}
.erp-service-card li::before {
  content: '—';
  color: var(--red);
  flex-shrink: 0;
  font-size: .75rem;
  margin-top: .2rem;
}

/* Zones + CTA bas section ERP */
.erp-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue-light);
}
.erp-zones p {
  font-size: .9rem;
  color: var(--text-sec);
  margin-top: .3rem;
  opacity: .85;
}

/* Tags SEO */
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2rem 0;
}
.seo-tags span {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-sec);
  border: 1px solid var(--border);
  padding: .25rem .75rem;
  border-radius: 100px;
  opacity: .7;
}

@media (max-width: 640px) {
  .erp-services-grid { grid-template-columns: 1fr; }
  .erp-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===========================
   PAGE ABOUT — PROFIL
   =========================== */
.about-profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Card profil gauche */
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
}
.profile-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  opacity: .9;
}
.profile-info {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.profile-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem .75rem;
  background: rgba(47,94,219,.07);
  border-radius: var(--radius);
  border-left: 2px solid var(--blue-light);
}
.profile-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--text-sec);
  flex-shrink: 0;
  margin-top: .15rem;
}
.profile-info-item div {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}
.profile-info-item span {
  font-size: .65rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-sec);
  opacity: .6;
}
.profile-info-item strong,
.profile-info-item a {
  font-size: .85rem;
  color: var(--white);
  word-break: break-word;
}
.profile-info-item a:hover { color: var(--text-sec); }

.profile-socials {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
}
.profile-socials a {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-sec);
  padding: .5rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.profile-socials a svg { width: 16px; height: 16px; flex-shrink: 0; }
.profile-socials a:hover {
  color: var(--white);
  border-color: var(--blue-light);
  background: rgba(47,94,219,.08);
}

/* Bio droite */
.profile-bio p {
  color: var(--text-sec);
  margin-bottom: 1rem;
  opacity: .9;
  line-height: 1.75;
}
.bio-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: 1.75rem;
}
.bio-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  border-left: 3px solid var(--red);
}
.bio-stat strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.bio-stat span {
  font-size: .75rem;
  color: var(--text-sec);
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--font-display);
}

/* ===========================
   CV TIMELINE
   =========================== */
.cv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.cv-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--red);
}
.cv-col-title svg { width: 20px; height: 20px; color: var(--red-light); }

.cv-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.cv-timeline::before {
  content: '';
  position: absolute;
  left: 68px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.cv-entry {
  display: flex;
  gap: 1.25rem;
  padding: .85rem 0;
  position: relative;
}
.cv-entry::after {
  content: '';
  position: absolute;
  left: 62px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-hover);
}
.cv-entry--highlight::after {
  border-color: var(--red);
  background: rgba(229,57,53,.15);
}
.cv-entry--current::after {
  border-color: var(--blue-light);
  background: rgba(47,94,219,.2);
}
.cv-date {
  width: 56px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-sec);
  opacity: .65;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding-top: .1rem;
  text-align: right;
}
.cv-content {
  padding-left: 1.5rem;
  flex: 1;
}
.cv-content strong {
  font-size: .9rem;
  color: var(--white);
  display: block;
  line-height: 1.3;
}
.cv-content p {
  font-size: .8rem;
  color: var(--text-sec);
  opacity: .75;
  margin-top: .15rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .about-profile-layout { grid-template-columns: 1fr; }
  .profile-card { position: static; }
  .cv-layout { grid-template-columns: 1fr; }
  .bio-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bio-stats { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   PAGES LÉGALES (CGV, Politique)
   =========================== */
.page-hero--compact {
  padding: 3.5rem 1.5rem 2.5rem;
  min-height: auto;
}
.page-hero--compact .page-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sommaire sticky */
.legal-toc {
  position: sticky;
  top: 110px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
}
.legal-toc .section-label {
  display: block;
  margin-bottom: .85rem;
}
.legal-toc ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.legal-toc li { margin: 0; }
.legal-toc a {
  display: block;
  font-size: .8rem;
  color: var(--text-sec);
  opacity: .75;
  padding: .35rem .5rem;
  border-radius: 4px;
  transition: all var(--transition);
  line-height: 1.3;
}
.legal-toc a:hover {
  color: var(--white);
  opacity: 1;
  background: rgba(47,94,219,.1);
}

/* Articles */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.legal-article {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.legal-article:last-of-type { border-bottom: none; }
.legal-article h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}
.art-num {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 800;
  color: var(--red-light);
  background: rgba(229,57,53,.1);
  border: 1px solid rgba(229,57,53,.25);
  border-radius: 4px;
  padding: .2rem .55rem;
  letter-spacing: .1em;
  flex-shrink: 0;
}
.legal-article p {
  font-size: .9rem;
  color: var(--text-sec);
  line-height: 1.75;
  opacity: .88;
  margin-bottom: .75rem;
}
.legal-article p:last-child { margin-bottom: 0; }
.legal-article strong { color: var(--white); }

.legal-back {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 800px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-toc ul { flex-direction: row; flex-wrap: wrap; gap: .25rem; }
  .legal-toc a { padding: .25rem .6rem; font-size: .75rem; }
}

/* ===========================
   SOUS-PAGES ÉVÉNEMENTIELLES
   =========================== */
.subpage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.subpage-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color var(--transition), background var(--transition);
}
.subpage-block:hover {
  border-color: var(--border-hover);
  background: var(--bg-card2);
}
.subpage-block--accent {
  border-color: rgba(229,57,53,.25);
  background: rgba(229,57,53,.03);
}
.subpage-block--accent:hover { border-color: rgba(229,57,53,.5); }
.subpage-block-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.subpage-block h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.2;
}
.subpage-block ul {
  list-style: none;
  padding: 0;
  flex: 1;
}
.subpage-block li {
  font-size: .875rem;
  color: var(--text-sec);
  padding: .28rem 0;
  border-bottom: 1px solid rgba(199,210,254,.06);
  display: flex;
  gap: .5rem;
  opacity: .85;
  line-height: 1.5;
}
.subpage-block li::before {
  content: '—';
  color: var(--red);
  flex-shrink: 0;
  font-size: .75rem;
  margin-top: .18rem;
}

/* PAGE MERCI */
.merci-section { display: flex; align-items: center; justify-content: center; min-height: 60vh; }
.merci-card {
  max-width: 520px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.merci-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(47,94,219,.1);
  border: 2px solid var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: .5rem;
}
.merci-icon svg { width: 30px; height: 30px; }
.merci-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}
.merci-card p { font-size: .9rem; color: var(--text-sec); opacity: .85; line-height: 1.6; }
.merci-actions { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }
.merci-socials {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  width: 100%;
  justify-content: center;
}
.merci-socials a {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-sec);
  transition: color var(--transition);
}
.merci-socials a svg { width: 16px; height: 16px; }
.merci-socials a:hover { color: var(--white); }

/* PLAN DU SITE */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.sitemap-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sitemap-group h3 {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red-light);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.sitemap-group ul { list-style: none; padding: 0; }
.sitemap-group li { margin-bottom: 0; }
.sitemap-group a {
  display: block;
  font-size: .875rem;
  color: var(--text-sec);
  padding: .35rem .25rem;
  border-bottom: 1px solid rgba(199,210,254,.05);
  transition: color var(--transition);
  opacity: .85;
}
.sitemap-group a:hover { color: var(--white); opacity: 1; }

@media (max-width: 640px) {
  .subpage-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .merci-card { padding: 2rem 1.5rem; }
}
