:root{
  --bg:#f6f9fc;
  --ink:#0b2e59;
  --muted:#3a4a5a;
  --brand:#0b2e59;
  --brand2:#2b77ff;
  --card:#ffffff;
  --line:#e6eef8;
  --shadow: 0 14px 35px rgba(11,46,89,.12);
  --radius:18px;
  --max:1100px;
}

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

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:10;
  background:rgba(246,249,252,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:12px 0;
}
.brand{
  display:flex;align-items:center;gap:10px;
  font-weight:800;color:var(--ink);
}
.brand img{
  width:38px;height:38px;border-radius:50%;
  box-shadow:0 0 10px rgba(0,0,0,.12);
}
.menu{display:flex;gap:14px;flex-wrap:wrap}
.menu a{color:var(--muted);font-weight:700}
.menu a:hover{color:var(--ink)}

.badge{
  display:inline-block;
  font-size:12px;font-weight:800;
  color:#0b3aa8;
  background:#e8f0ff;
  border:1px solid #d7e5ff;
  padding:4px 10px;border-radius:999px;
}

.hero{
  background:
    radial-gradient(900px 320px at 15% 0%, rgba(43,119,255,.22), transparent 60%),
    radial-gradient(700px 260px at 90% 10%, rgba(14,165,233,.18), transparent 55%),
    linear-gradient(#eaf3ff,#f8fbff);
  padding:56px 0 22px;
  border-bottom:1px solid var(--line);
  text-align:left;
}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:18px;align-items:center}
@media (max-width: 900px){.hero-grid{grid-template-columns:1fr;text-align:center}}
h1{font-size:42px;line-height:1.12;margin:0 0 10px;color:var(--ink)}
@media (max-width: 600px){h1{font-size:34px}}
.lead{font-size:18px;color:var(--muted);margin:0 0 16px}

.cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}
@media (max-width: 900px){.cta{justify-content:center}}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:12px;
  border:1px solid var(--line);
  font-weight:800;
}
.btn.primary{
  background:linear-gradient(90deg,var(--brand),var(--brand2));
  color:#fff;border:none;
  box-shadow: var(--shadow);
}
.btn.primary:hover{transform:translateY(-1px)}
.btn.ghost{background:#fff}
.btn.ghost:hover{border-color:#cbd5e1}

.kpi{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.kpi strong{display:block;color:var(--muted);font-size:13px}
.kpi span{display:block;font-size:20px;font-weight:900;color:var(--ink);margin-top:6px}

.section{padding:40px 0}
.section.alt{
  background:#f7f9ff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.h2{font-size:26px;margin:0 0 8px;color:var(--ink)}
.p{margin:0 0 18px;color:var(--muted)}

.grid2{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width: 900px){.grid2,.grid3{grid-template-columns:1fr}}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 20px rgba(15,23,42,.06);
}
.card .pad{padding:18px}
.card h3{margin:0 0 6px;font-size:18px;color:var(--ink)}
.card p{margin:0;color:var(--muted)}
.card img{width:100%;height:240px;object-fit:cover;display:block}
.card:hover{transform:translateY(-6px);transition:.25s ease}

.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
@media (max-width: 900px){.steps{grid-template-columns:1fr 1fr}}
@media (max-width: 520px){.steps{grid-template-columns:1fr}}

.footer{
  text-align:center;
  color:#6b7280;
  padding:34px 18px;
  font-size:.95rem;
  border-top:1px solid var(--line);
}
.small{font-size:13px}
/* =========================================================
   PATCH V4 — Bandeau plus gros (toutes pages)
   + Coordonnées plus grosses UNIQUEMENT sur la page Contact
   Pour activer la partie Contact : <body class="page-contact">
   ========================================================= */

/* ---------- Bandeau / navigation (global) ---------- */
.topbar{
  border-bottom: 1px solid var(--line);
}

.nav{
  padding: 18px 0 !important;
  gap: 18px !important;
}

.brand{
  gap: 12px !important;
  font-size: 18px;
}

.brand img{
  width: 48px !important;
  height: 48px !important;
}

.menu{
  gap: 16px !important;
}

.menu a{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 15px;
}

.menu a:hover{
  background: rgba(43,119,255,.08);
}

/* ---------- Page Contact uniquement ---------- */
.page-contact .contact-hero{
  padding: 38px 0 18px;
}

.page-contact .contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.page-contact .contact-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.page-contact h1{
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.1;
  color: var(--ink);
}

.page-contact .lead{
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
}

/* Coordonnées : plus grosses + plus “visibles” */
.page-contact .contact-lines{
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.page-contact .contact-line{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.page-contact .contact-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef5ff;
  border:1px solid #d7e5ff;
  font-size: 18px;
  flex: 0 0 auto;
}

.page-contact .contact-text{
  line-height: 1.25;
}

.page-contact .contact-label{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #4b5563;
  text-transform: uppercase;
}

.page-contact .contact-value{
  margin-top: 2px;
  font-size: 18px;
  font-weight: 900;
  color: #0b1220;
}

.page-contact .contact-value a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA plus confort */
.page-contact .cta{
  gap: 14px !important;
}

.page-contact .btn{
  padding: 14px 20px !important;
  border-radius: 14px !important;
  font-size: 16px !important;
}

/* Photo */
.page-contact .portrait{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

/* Mobile */
@media (max-width: 860px){
  .page-contact .contact-grid{ grid-template-columns: 1fr; }
  .page-contact h1{ font-size: 34px; }
}

@media (max-width: 520px){
  .nav{ padding: 14px 0 !important; }
  .menu a{ padding: 9px 10px; font-size: 14px; }
  .brand img{ width: 44px !important; height: 44px !important; }
}
/* =========================================================
   PATCH Contact — Médaillon photo (page Contact uniquement)
   Astuce anti-copie : image en background + watermark + anti clic droit
   (dissuasion, pas protection “invincible”)
   ========================================================= */

.page-contact .avatar-wrap{
  position: relative;
  width: 180px;
  height: 180px;
  margin: 14px auto 10px;
}

.page-contact .avatar{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: url("assets/andre.jpg") center/cover no-repeat;
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 40px rgba(15, 26, 44, .18);
  user-select: none;
  -webkit-user-drag: none;
}

/* couche “garde” au-dessus (bloque le clic droit sur l'image) */
.page-contact .avatar-guard{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: transparent;
}

/* optionnel : un petit liseré bleu très léger */
.page-contact .avatar-wrap::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(43,119,255,.28);
  pointer-events: none;
}

/* accessibilité : si jamais la photo ne charge pas */
.page-contact .avatar-fallback{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid var(--line);
  display: none;
}

/* =========================================================
   PATCH ACCUEIL — ARTservice / ARFlex (PME & MS)
   À COLLER TOUT EN BAS de ton style.css
   Objectifs :
   - bandeau (hero) plus grand + titre plus lisible
   - logo/marque plus visibles
   - section "Univers" : 2 pavés bien séparés (grand espace)
   ========================================================= */

/* --- Topbar : logo + marque plus visibles --- */
.topbar .brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.topbar .brand img{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:14px;
  background:#ffffff;
  padding:8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.topbar .brand > div{
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}
.topbar .brand .small{
  font-size: 13px;
  font-weight: 700;
  opacity: .95;
}

/* --- HERO : bandeau plus grand + meilleure hiérarchie --- */
.hero{
  padding-top: 90px;
  padding-bottom: 82px;
}
.hero .hero-grid{
  align-items: start;
  gap: 28px;
}
.hero h1{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.06;
  margin: 14px 0 10px 0;
}
.hero .lead{
  font-size: 18px;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 0 18px 0;
}
.hero .cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* --- KPI box : un peu plus “carte” (si pas déjà le cas) --- */
.hero .kpi{
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

/* --- Univers : 2 pavés vraiment séparés --- */
#univers .grid2{
  /* on force un écart plus grand même si l'inline style donne déjà un gap */
  gap: 76px !important;
}
#univers .grid2 > div[aria-hidden="true"]{
  height: 34px !important; /* gros espace supplémentaire */
}

/* Cartes Univers : images propres + homogènes */
#univers .card img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  display:block;
}
#univers .card{
  border-radius: 18px;
  overflow: hidden;
}

/* --- Mobile --- */
@media (max-width: 720px){
  .topbar .brand img{ width:56px; height:56px; }
  .topbar .brand > div{ font-size: 20px; }
  .hero{ padding-top: 72px; padding-bottom: 66px; }
  #univers .card img{ height: 180px; }
}
/* =========================================================
   PATCH V2 (Accueil) — déplacement du pavé KPI + titre centré
   À COLLER TOUT EN BAS de ton style.css (après le patch précédent)
   ========================================================= */

/* 1) Déplacer le pavé "Ce que vous gagnez" (KPI) : le descendre et le centrer mieux */
.hero .hero-grid{
  align-items: center;              /* au lieu de start : aligne mieux le pavé avec le texte */
}

/* Ajuste ici la position du pavé (descendre / déplacer) */
.hero .kpi{
  align-self: center;
  margin-top: 90px;                 /* <- augmente/diminue (ex: 10px, 20px, 40px) selon ton goût */
  justify-self: center;             /* si ton hero-grid est en CSS Grid */
  /* si ton hero-grid est en flex : ça ne gêne pas */
}

/* 2) Centrer davantage le titre dans le pavé (Clarté • Temps • Sérénité) */
.hero .kpi strong,
.hero .kpi span{
  display:block;
  text-align:center;
}

.hero .kpi span{
  margin-top: 6px;
  font-weight: 800;
}

/* Mobile : pavé en dessous, bien centré */
@media (max-width: 900px){
  .hero .kpi{
    margin-top: 18px;
  }
}

/* =========================================================
   PATCH V4 (Accueil) — Centrer tout le bloc du Hero + supprimer le pavé KPI
   À COLLER TOUT EN BAS de ton style.css
   ========================================================= */

/* 1) On supprime le pavé "Clarté • Temps • Sérénité" */
.hero .kpi{
  display: none !important;
}

/* 2) On centre tout le bloc principal (celui entouré en rouge) */
.hero .hero-grid{
  display: flex !important;              /* override grid si besoin */
  flex-direction: column !important;
  align-items: center !important;
  gap: 18px !important;
}

/* Le bloc texte (badge + H1 + paragraphe + boutons) */
.hero .hero-grid > div:first-child{
  width: 100% !important;
  max-width: 940px !important;
  margin: 0 auto !important;
}

/* Badge + titre bien au centre */
.hero .badge{
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero h1{
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Paragraphe : centré en bloc, mais lisible (aligné à gauche)
   -> si tu veux tout centré, remplace left par center */
.hero .lead{
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left !important;
}

/* Boutons centrés */
.hero .cta{
  justify-content: center !important;
}
/* =========================================================
   PATCH V5 (Univers) — Corriger le "trou" énorme avant ARFlex MS
   Cause : gap + spacer (div aria-hidden) s'additionnent.
   Solution : on masque le spacer et on fixe un seul grand espace propre.
   À COLLER TOUT EN BAS de ton style.css (après les autres patchs)
   ========================================================= */

/* 1) On supprime le spacer ajouté entre les 2 pavés */
#univers .grid2 > div[aria-hidden="true"]{
  display: none !important;
  height: 0 !important;
}

/* 2) On garde un SEUL espace "grand mais propre" entre PME et MS */
#univers .grid2{
  gap: 64px !important;  /* ajuste : 48px (plus serré) / 72px (plus aéré) */
}

/* (Optionnel) cartes bien centrées */
#univers .card{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1100px;
}
/* =========================================================
   PATCH V6 (Univers) — 2 pavés côte à côte sur PC (grand espace),
   et empilés sur mobile. + recadrage image MS.
   À COLLER TOUT EN BAS de ton style.css
   ========================================================= */

/* On neutralise l’inline flex-column en forçant une grille sur desktop */
@media (min-width: 900px){
  #univers .grid2{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 72px !important;   /* grand espace entre PME et MS */
    row-gap: 0 !important;
    align-items: start !important;
  }
  /* Plus besoin du spacer */
  #univers .grid2 > div[aria-hidden="true"]{
    display:none !important;
    height:0 !important;
  }

  /* Cartes: même largeur, pas de max-width trop serré */
  #univers .card{
    max-width: none !important;
  }

  /* Images cohérentes */
  #univers .card img{
    height: 220px !important;
    object-fit: cover !important;
  }

  /* Image MS : recadrage un peu plus bas (si têtes coupées) */
  #univers .card:last-of-type img{
    object-position: center 25% !important; /* ajuste : 15% (plus haut) / 35% (plus bas) */
  }
}

/* Mobile: empilé avec un espace propre */
@media (max-width: 899px){
  #univers .grid2{
    display:flex !important;
    flex-direction: column !important;
    gap: 56px !important;
  }
  #univers .grid2 > div[aria-hidden="true"]{ display:none !important; }
  #univers .card img{
    height: 200px !important;
    object-fit: cover !important;
  }
  #univers .card:last-of-type img{
    object-position: center 25% !important;
  }
}
/* =========================================================
   PATCH V8 (Univers) — Rendu "premium"
   - section plus chic (fond léger + titrage centré)
   - cartes plus élégantes (bordures, ombres, hover)
   - badges harmonisés + accent PME/MS
   - typographie plus régulière
   À COLLER TOUT EN BAS de ton style.css (après V6 + V7)
   ========================================================= */

/* Section Univers : respiration + fond doux */
#univers{
  padding: 84px 0;
  background: linear-gradient(180deg, rgba(15,95,168,.06) 0%, rgba(11,58,106,.03) 55%, rgba(255,255,255,1) 100%);
  border-top: 1px solid rgba(11,27,43,.06);
  border-bottom: 1px solid rgba(11,27,43,.06);
}

/* Titre + intro centrés (premium = simple et net) */
#univers .h2{
  text-align: center;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: .2px;
  margin: 0 0 10px 0;
}
#univers .p{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
  opacity: .92;
}

/* Grille : un peu plus d’air */
@media (min-width: 900px){
  #univers .grid2{
    column-gap: 84px !important; /* grand espace entre les 2 univers */
  }
}

/* Cartes : plus "carte premium" */
#univers .card{
  border: 1px solid rgba(11,27,43,.10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 34px rgba(11,27,43,.08);
  border-radius: 18px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Hover : léger lift */
@media (hover:hover){
  #univers .card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(11,27,43,.12);
    border-color: rgba(15,95,168,.22);
  }
}

/* Bande image : un poil plus “hero” + séparation */
#univers .card img{
  border-bottom: 1px solid rgba(11,27,43,.08);
  filter: saturate(1.05) contrast(1.02);
}

/* Contenu : typographie régulière */
#univers .card .pad{
  padding: 18px 18px 16px 18px;
}
#univers .card h3{
  margin: 8px 0 10px 0;
  font-size: 18px;
  line-height: 1.25;
}
#univers .card p{
  margin: 0 0 10px 0;
  line-height: 1.55;
  opacity: .92;
}
#univers .card ul{
  margin: 0 0 14px 18px;
  padding: 0;
}
#univers .card ul li{
  margin: 6px 0;
  line-height: 1.35;
  opacity: .92;
}

/* Badges : plus clean */
#univers .badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;
  border: 1px solid rgba(11,27,43,.10);
}

/* Accent PME / MS via position (1ère carte = PME, 2ème = MS) */
#univers .card:first-of-type .badge{
  background: rgba(15,95,168,.10);
  border-color: rgba(15,95,168,.20);
}
#univers .card:last-of-type .badge{
  background: rgba(11,58,106,.10);
  border-color: rgba(11,58,106,.20);
}

/* Boutons : un peu plus premium (sans changer ton design global) */
#univers .btn{
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(11,27,43,.10);
}

/* Alignement : cartes de même hauteur + bouton en bas */
#univers .card .pad{
  display: flex;
  flex-direction: column;
}
#univers .card .pad .btn{
  margin-top: auto;
}

/* Mobile : garder de l’air mais éviter les énormes blancs */
@media (max-width: 899px){
  #univers{
    padding: 64px 0;
  }
  #univers .p{
    margin-bottom: 28px;
    text-align: left;
  }
}
/* =========================================================
   PATCH V9 — Bandeau (Topbar) plus lisible + logo plus grand
   Objectif :
   - Logo plus visible
   - Titre / sous-titre plus lisibles
   - Menu plus lisible et plus "cliquable"

   ✅ À COLLER TOUT EN BAS de ton style.css (après V6/V7/V8)
   ========================================================= */

/* Bandeau : plus premium, lisible, et stable en haut */
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,27,43,.10);
}

/* Layout */
.topbar .nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap; /* évite l'écrasement sur petits écrans */
  padding: 14px 0;
  min-height: 82px;
}

/* Bloc marque */
.topbar .brand{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Logo plus grand */
.topbar .brand img{
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  padding: 6px;
  border: 1px solid rgba(11,27,43,.10);
  box-shadow: 0 10px 22px rgba(11,27,43,.10);
}

/* Titre de marque (ligne 1 dans le div) */
.topbar .brand > div{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .2px;
  color: #0b1b2b;
}

/* Sous-titre (classe .small) — on force car tu as du inline style */
.topbar .brand .small{
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: .2px;
  margin-top: 4px;
  color: #3a4a5a !important;
}

/* Menu : plus gros + plus "bouton" */
.topbar .menu{
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar .menu a{
  font-size: 16px;
  font-weight: 800;
  color: #0b1b2b;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background .15s ease, transform .15s ease;
}

.topbar .menu a:hover{
  background: rgba(15,95,168,.10);
  transform: translateY(-1px);
}

/* Mobile : on garde grand mais on évite l'effet "trop compact" */
@media (max-width: 760px){
  .topbar .nav{
    padding: 12px 0;
    min-height: auto;
  }
  .topbar .brand img{
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  .topbar .brand > div{
    font-size: 20px;
  }
  .topbar .brand .small{
    font-size: 13px !important;
  }
  .topbar .menu{
    gap: 12px;
    flex-wrap: wrap;
  }
  .topbar .menu a{
    font-size: 15px;
    padding: 9px 10px;
  }
}

/* =========================================================
   PATCH V11 — Bandeau “barre de luxe” (plus haut + premium)
   - logo plus grand + cadre premium
   - typo + menu plus lisibles
   - fond glass (léger blur) + ombre douce
   À coller TOUT EN BAS du style.css
   ========================================================= */

.topbar{
  position: sticky;
  top: 0;
  z-index: 1200;
  background: linear-gradient(180deg, rgba(248,251,255,.92), rgba(248,251,255,.78));
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid rgba(11,27,43,.10);
  box-shadow: 0 18px 44px rgba(11,27,43,.10);
}

/* petite ligne “premium” en haut */
.topbar::before{
  content:"";
  display:block;
  height: 3px;
  background: linear-gradient(90deg, rgba(15,95,168,.0), rgba(15,95,168,.35), rgba(15,95,168,.0));
}

.topbar .nav{
  padding: 24px 0 !important;
  min-height: 112px !important;
  gap: 26px !important;
}

.topbar .brand{
  gap: 16px !important;
}

/* Nouveau logo : plus grand + cadre “médaille” */
.topbar .brand img{
  width: 86px !important;
  height: 86px !important;
  border-radius: 22px !important;
  padding: 9px !important;
  background: rgba(255,255,255,.95) !important;
  border: 1px solid rgba(11,27,43,.12) !important;
  box-shadow:
    0 16px 36px rgba(11,27,43,.14),
    inset 0 1px 0 rgba(255,255,255,.7) !important;
}

/* Titre + sous-titre plus lisibles */
.topbar .brand > div{
  font-size: 28px !important;
  font-weight: 950 !important;
  letter-spacing: .2px !important;
  line-height: 1.05 !important;
}

.topbar .brand .small{
  font-size: 15px !important;
  font-weight: 800 !important;
  opacity: .92 !important;
}

/* Menu : plus grand + effet “pill” */
.topbar .menu{
  gap: 14px !important;
}

.topbar .menu a{
  font-size: 17px !important;
  font-weight: 850 !important;
  padding: 12px 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(11,27,43,.12) !important;
  background: rgba(255,255,255,.70) !important;
  box-shadow: 0 10px 22px rgba(11,27,43,.08) !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.topbar .menu a:hover{
  transform: translateY(-1px);
  background: rgba(15,95,168,.08) !important;
  box-shadow: 0 14px 26px rgba(11,27,43,.10) !important;
}

/* Mobile : garde le côté premium sans “écraser” */
@media (max-width: 860px){
  .topbar .nav{
    padding: 14px 0 !important;
    min-height: auto !important;
    gap: 14px !important;
  }
  .topbar .brand img{
    width: 64px !important;
    height: 64px !important;
    border-radius: 18px !important;
    padding: 7px !important;
  }
  .topbar .brand > div{
    font-size: 22px !important;
  }
  .topbar .brand .small{
    font-size: 13.5px !important;
  }
  .topbar .menu{
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .topbar .menu a{
    font-size: 15px !important;
    padding: 10px 12px !important;
  }
}
/* ============================================================
   ARFLEX – V12 Premium de Luxe
   Hero + Univers (2 pavés bien séparés) + boutons + footer
   À coller TOUT EN BAS de style.css (après le V11 header)
   ============================================================ */

:root{
  --ink: #0b1220;
  --muted: rgba(11, 18, 32, .70);
  --line: rgba(11, 18, 32, .12);

  --brand: #1d4ed8;
  --brand2: #3b82f6;

  --bg: #f6f8ff;
  --card: #ffffff;

  --r-xl: 22px;
  --r-lg: 18px;

  --shadow-soft: 0 10px 26px rgba(11, 18, 32, .10);
  --shadow: 0 18px 44px rgba(11, 18, 32, .14);
}

html { scroll-behavior: smooth; }
body{
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(59,130,246,.18), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(29,78,216,.14), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- NAV : bouton Contact rempli (si tu ajoutes class="cta") ---------- */
.nav-link.cta{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 10px 24px rgba(29,78,216,.20);
}
.nav-link.cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(29,78,216,.25);
}

/* ---------- HERO ---------- */
.hero{
  padding: 96px 0 42px;
}
.hero .eyebrow{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(11,18,32,.78);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  letter-spacing: .2px;
}
.hero-title{
  margin: 16px 0 10px;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.6px;
}
.hero-subtitle{
  max-width: 64ch;
  font-size: clamp(16px, 2.0vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 28px;
}

/* ---------- UNIVERS (2 pavés premium + grand espace) ---------- */
.univers-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px; /* <- grand espace entre les deux univers */
  margin-top: 18px;
}

.u-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 26px 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.u-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(700px 220px at 20% 0%, rgba(59,130,246,.18), transparent 55%);
  opacity: .85;
  pointer-events:none;
}
.u-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(11,18,32,.16);
}

.u-badge{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .35px;
  background: rgba(29,78,216,.10);
  color: rgba(29,78,216,.92);
  border: 1px solid rgba(29,78,216,.18);
  position: relative;
  z-index: 1;
}

.u-card h2{
  position: relative;
  z-index: 1;
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}
.u-card p{
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.u-list{
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(11,18,32,.78);
}
.u-list li{ margin: 8px 0; }

.u-actions{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- BOUTONS ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  line-height: 1;
}
.btn:focus-visible{
  outline: 3px solid rgba(29,78,216,.35);
  outline-offset: 3px;
}
.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  box-shadow: 0 14px 28px rgba(29,78,216,.22);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(29,78,216,.28);
}
.btn-outline{
  background: rgba(255,255,255,.70);
  color: rgba(11,18,32,.88);
  border-color: rgba(11,18,32,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-outline:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

/* ---------- FOOTER premium (si tu ajoutes la structure) ---------- */
.site-footer{
  margin-top: 56px;
  padding: 44px 0;
  background: rgba(11,18,32,.92);
  color: rgba(255,255,255,.86);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}
.site-footer a{ color: rgba(255,255,255,.86); }
.site-footer a:hover{ color: #fff; }
.footer-title{
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: .2px;
}
.footer-small{
  color: rgba(255,255,255,.70);
  line-height: 1.55;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .univers-grid{ grid-template-columns: 1fr; gap: 22px; }
  .hero{ padding-top: 86px; }
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- Motion safe ---------- */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior: auto; }
}
/* ===== V12.2 Hero avec image (PME / MS) ===== */
.hero.hero--img{
  position: relative;
  padding: 96px 0 56px;
  overflow: hidden;
  border-bottom: 1px solid rgba(11,18,32,.10);
}

.hero.hero--img::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--hero);
  background-size: cover;
  background-position: var(--hero-pos, 60% 45%);
  transform: scale(1.02);
}

.hero.hero--img::after{
  content:"";
  position:absolute;
  inset:0;
  /* voile premium pour garder le texte lisible */
  background: linear-gradient(180deg, rgba(246,248,255,.86) 0%, rgba(246,248,255,.70) 40%, rgba(246,248,255,.88) 100%);
}

.hero.hero--img .container{
  position: relative;
  z-index: 1;
}

/* petit rappel premium */
.hero-note{
  margin-top: 12px;
  color: rgba(11,18,32,.72);
  font-weight: 600;
}
/* ===== V12.3 HERO PHOTO : image plus visible + glass panel ===== */

/* Le hero doit être positionné pour porter un fond */
.hero.hero-photo{
  position: relative;
  overflow: hidden;
  border-radius: 26px;           /* garde ton style premium */
  padding: 110px 18px 80px;      /* plus d’air = plus luxe */
}

/* Image de fond */
.hero.hero-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--hero-url);
  background-size: cover;
  background-position: var(--hero-pos, 60% 40%);
  transform: scale(1.05);
  filter: saturate(1.15) contrast(1.08) brightness(0.95);
  opacity: 1;
}

/* Voile : beaucoup plus léger qu’avant */
.hero.hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(246,249,252,.35) 0%,
    rgba(246,249,252,.18) 45%,
    rgba(246,249,252,.38) 100%
  );
}

/* Contenu au-dessus */
.hero.hero-photo > *{
  position: relative;
  z-index: 1;
}

/* Panneau “glass” pour le texte (lisible + premium) */
/* Pavé central : net (plus de verre dépoli) */
.hero-box{
  max-width: 920px;
  margin: 0 auto;
  padding: 26px 26px;
  border-radius: 22px;

  /* plus opaque = plus clean */
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.94) 0%,
    rgba(255,255,255,.90) 100%
  );

  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 22px 60px rgba(2,8,23,.14);

  /* on coupe le flou */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-box p,
.hero-box .lead{
  color:#243142;
}


/* CTA alignés au centre (tu voulais tout centré) */
.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:14px;
}

/* Petite note */
.hero-note{
  margin-top: 12px;
  color: rgba(11,18,32,.75);
  font-weight: 650;
}
/* ===== Accueil : section Univers en mode premium (fond unique) ===== */
.section.univers-premium{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 56px 0;
  margin-top: 28px;
}

/* Image de fond */
.univers-premium::before, .section.univers-premium::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--univers-bg, url('assets/univers_bg_option1_planning.jpg'));
  background-size: cover;

  /* ⬇️ On “descend” le cadrage pour sortir DICIEMBRE de la zone titre */
  background-position: 52% 72%;

  transform: scale(1.03);

  /* ⬇️ Petit flou + ton un peu plus soft = texte de l’agenda moins lisible */
  filter: blur(1.4px) saturate(1.06) contrast(1.03) brightness(0.93);
}

/* Voile : un peu plus opaque en haut (zone du titre) */
.univers-premium::after, .section.univers-premium::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(246,249,252,.90) 0%,
    rgba(246,249,252,.55) 40%,
    rgba(246,249,252,.80) 100%
  );
}

.section.univers-premium .container{
  position: relative;
  z-index: 1;
}

/* Cartes un peu plus “glass” pour ressortir */
.section.univers-premium .card{
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 46px rgba(2,8,23,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Stop aux effets hover / zoom incontrôlés dans les carrousels */
.carousel img,
img.car-img{
  transform: none !important;
  transition: none !important;
  box-shadow: none !important;
}
.no-copy img{
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}
/* =========================
   LIGHTBOX (zoom images)
   ========================= */
.carousel img { cursor: zoom-in; }

.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lightbox.is-open{ display: block; }

.lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.86);
}

.lightbox__content{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 18px;
}

.lightbox__img{
  max-width: min(78vw, 900px) !important;
  max-height: 70vh !important;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  background: #111;

  object-fit: contain;}

.lightbox__caption{
  margin-top: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  text-align: center;
  max-width: min(94vw, 1400px);
}

.lightbox__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  z-index: 2;
}

.lightbox__prev{ left: 18px; }
.lightbox__next{ right: 18px; }

@media (max-width: 520px){
  .lightbox__nav{ width: 46px; height: 46px; font-size: 30px; }
}
.hint-zoom{ font-size: 0.95rem; opacity: 0.85; margin-top: 8px; }
.copyright-note{ font-size: 0.9rem; opacity: 0.85; margin-top: 6px; }
.hint-zoom{
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 10px;
}

.copyright-note{
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 6px;
}
.carousel .car-img{ cursor: zoom-in; }
/* Anti-copie (dissuasion grand public) */
.no-copy img,
.carousel img,
.lightbox__img{
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none; /* iOS/Edge mobile */
}


