.elementor-kit-5{--e-global-color-primary:#E8EEF2;--e-global-color-secondary:#8FB6CE;--e-global-color-text:#A9B8C2;--e-global-color-accent:#4F7796;--e-global-color-cglbg:#050A0E;--e-global-color-cglsurface:#0A1319;--e-global-color-cglhover:#5F88A8;--e-global-color-cglonacc:#041018;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}:root { --ZZProbe:#FF0000; }
/* Start custom CSS *//* ==========================================================================
   CARGOLIS — Design tokens
   Tout le thème se rebrande ICI. Aucune autre valeur en dur ailleurs.
   ========================================================================== */
:root{
  /* --- Surfaces --------------------------------------------------------- */
  --cgl-bg:            #050A0E;
  --cgl-surface:       #0A1319;
  --cgl-surface-2:     #0C1720;
  --cgl-surface-3:     #0C1821;
  --cgl-input:         #060D12;

  /* --- Accent ----------------------------------------------------------- */
  --cgl-accent:        #4F7796;
  --cgl-accent-hover:  #5F88A8;
  --cgl-on-accent:     #041018;

  /* --- Texte ------------------------------------------------------------ */
  --cgl-text:          #E8EEF2;
  --cgl-text-2:        #DCE6EC;
  --cgl-text-3:        #D6E1E8;
  --cgl-blue-1:        #CFE0EA;
  --cgl-blue-2:        #C2CED6;
  --cgl-blue-3:        #9CC6E0;
  --cgl-blue-4:        #9CC0D8;
  --cgl-blue-5:        #8FB6CE;
  --cgl-muted:         #A9B8C2;
  --cgl-muted-2:       #93A4B0;
  --cgl-muted-3:       #7D8F9C;
  --cgl-muted-4:       #6E8091;

  /* --- Bordures --------------------------------------------------------- */
  --cgl-line:          rgba(79,119,150,.18);
  --cgl-line-soft:     rgba(79,119,150,.14);
  --cgl-line-strong:   rgba(79,119,150,.30);
  --cgl-line-blue:     rgba(143,182,206,.22);
  --cgl-line-blue-hi:  rgba(143,182,206,.45);

  /* --- Voiles ----------------------------------------------------------- */
  --cgl-tint-08:       rgba(79,119,150,.08);
  --cgl-tint-10:       rgba(79,119,150,.10);
  --cgl-tint-16:       rgba(79,119,150,.16);

  /* --- Rayons ----------------------------------------------------------- */
  --cgl-r-sm:  10px;
  --cgl-r-md:  14px;
  --cgl-r-lg:  18px;
  --cgl-r-xl:  22px;
  --cgl-r-2xl: 26px;
  --cgl-r-pill: 999px;

  /* --- Typographie ------------------------------------------------------ */
  --cgl-font-head: 'Archivo', system-ui, -apple-system, sans-serif;
  --cgl-font-body: 'Karla', system-ui, -apple-system, sans-serif;
  --cgl-font-deco: 'Cormorant Garamond', Georgia, serif;

  /* --- Rythme ----------------------------------------------------------- */
  --cgl-wrap:      1440px;
  --cgl-gutter:    20px;
  --cgl-gutter-mob: 16px;
  --cgl-section:   clamp(64px, 8vw, 96px);

  /* --- Ombres ----------------------------------------------------------- */
  --cgl-shadow-cta:  0 12px 34px rgba(79,119,150,.32);
  --cgl-shadow-card: 0 18px 44px rgba(0,0,0,.62);
  --cgl-shadow-glow: 0 0 18px rgba(79,119,150,.80);

  /* --- Courbes ---------------------------------------------------------- */
  --cgl-ease:      cubic-bezier(.22,.61,.36,1);
  --cgl-ease-out:  cubic-bezier(.16,1,.2,1);
}


/* ==========================================================================
   CARGOLIS — Base : typographie, wrapper, boutons, formulaires, a11y
   ========================================================================== */

/* --- Canvas --------------------------------------------------------------- */
/* overflow-x sur <html>, jamais sur <body> : overflow-x:hidden sur body force
   overflow-y a auto, body devient conteneur de defilement et casse
   scrollIntoView, les ancres et position:sticky. clip ne propage rien. */
html{
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body{
  background: var(--cgl-bg);
  color: var(--cgl-text);
  font-family: var(--cgl-font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body a{ color: inherit; text-decoration: none; }

/* --- Largeur de page ------------------------------------------------------
   Les containers racines V4 ne conservent pas max_width via REST : on le
   verrouille ici. La classe e-parent marque le container racine.
   -------------------------------------------------------------------------- */
.elementor-element.e-con.e-parent > .e-con-inner,
.elementor-element.e-con-boxed.e-parent > .e-con-inner{
  max-width: var(--cgl-wrap);
  margin-inline: auto;
  padding-inline: var(--cgl-gutter);
  width: 100%;
}

/* --- Titres --------------------------------------------------------------- */
h1,h2,h3,h4,h5,h6,
.elementor-heading-title{
  font-family: var(--cgl-font-head);
  color: var(--cgl-text);
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0;
}
.cgl-h1 .elementor-heading-title{
  font-size: clamp(40px, 4.6vw, 70px);
  font-weight: 700;
  line-height: .97;
  letter-spacing: -.035em;
}
.cgl-h2 .elementor-heading-title{
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: -.03em;
}
.cgl-h3 .elementor-heading-title{
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.cgl-h4 .elementor-heading-title{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
}

/* Accent typographique dans un titre : span.cgl-em */
.cgl-em{ color: var(--cgl-blue-3); }
.cgl-em-2{ color: var(--cgl-blue-5); }

/* --- Sur-titre ------------------------------------------------------------ */
.cgl-eyebrow .elementor-heading-title,
.cgl-eyebrow{
  font-family: var(--cgl-font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cgl-muted-3);
  line-height: 1.6;
}

/* --- Corps de texte ------------------------------------------------------- */
.cgl-lead .elementor-widget-container,
.cgl-lead p{
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--cgl-muted);
  max-width: 62ch;
  margin: 0;
}
.cgl-body .elementor-widget-container,
.cgl-body p{
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--cgl-muted-2);
  margin: 0;
}
.cgl-small{
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--cgl-muted-3);
}

/* --- Citation decorative -------------------------------------------------- */
.cgl-deco .elementor-heading-title,
.cgl-deco{
  font-family: var(--cgl-font-deco);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.15;
  letter-spacing: 0;
  color: rgba(232,238,242,.42);
}

/* --- Boutons -------------------------------------------------------------- */
.cgl-btn .elementor-button{
  font-family: var(--cgl-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  padding: 13px 20px;
  border-radius: var(--cgl-r-pill);
  border: 1px solid transparent;
  transition: background-color .25s var(--cgl-ease),
              color .25s var(--cgl-ease),
              border-color .25s var(--cgl-ease),
              transform .25s var(--cgl-ease),
              box-shadow .25s var(--cgl-ease);
  will-change: transform;
}
.cgl-btn--primary .elementor-button{
  background: var(--cgl-accent);
  color: var(--cgl-on-accent);
  box-shadow: var(--cgl-shadow-cta);
}
.cgl-btn--primary .elementor-button:hover,
.cgl-btn--primary .elementor-button:focus-visible{
  background: var(--cgl-accent-hover);
  color: var(--cgl-on-accent);
  transform: translateY(-2px);
}
.cgl-btn--ghost .elementor-button{
  background: transparent;
  color: var(--cgl-text);
  border-color: var(--cgl-line-strong);
}
.cgl-btn--ghost .elementor-button:hover,
.cgl-btn--ghost .elementor-button:focus-visible{
  background: var(--cgl-tint-10);
  border-color: var(--cgl-line-blue-hi);
  color: var(--cgl-text);
}
.cgl-btn--quiet .elementor-button{
  background: transparent;
  color: var(--cgl-blue-4);
  padding: 8px 0;
  box-shadow: none;
}
.cgl-btn--quiet .elementor-button:hover,
.cgl-btn--quiet .elementor-button:focus-visible{
  color: var(--cgl-text);
}
.cgl-btn--block .elementor-button{ width: 100%; justify-content: center; }
.cgl-btn--lg .elementor-button{ padding: 16px 26px; font-size: 15px; }

/* --- Formulaires (Elementor Pro Form) ------------------------------------- */
.cgl-form .elementor-field-group > label{
  font-family: var(--cgl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cgl-muted-3);
  margin-bottom: 8px;
}
.cgl-form .elementor-field-textual{
  background: var(--cgl-input);
  border: 1px solid var(--cgl-line);
  border-radius: var(--cgl-r-md);
  color: var(--cgl-text);
  font-family: var(--cgl-font-body);
  font-size: 14.5px;
  padding: 13px 15px;
  min-height: 48px;
  transition: border-color .2s var(--cgl-ease), background-color .2s var(--cgl-ease);
}
.cgl-form textarea.elementor-field-textual{ min-height: 118px; resize: vertical; }
.cgl-form .elementor-field-textual::placeholder{ color: var(--cgl-muted-4); }
.cgl-form .elementor-field-textual:focus{
  border-color: var(--cgl-line-blue-hi);
  background: var(--cgl-surface);
  outline: none;
}
.cgl-form select.elementor-field-textual{
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--cgl-muted-3) 50%),
                    linear-gradient(135deg, var(--cgl-muted-3) 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% + 1px), calc(100% - 14px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.cgl-form .elementor-button[type="submit"]{
  background: var(--cgl-accent);
  color: var(--cgl-on-accent);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--cgl-r-pill);
  padding: 14px 24px;
  min-height: 48px;
  box-shadow: var(--cgl-shadow-cta);
  transition: background-color .25s var(--cgl-ease), transform .25s var(--cgl-ease);
}
.cgl-form .elementor-button[type="submit"]:hover{
  background: var(--cgl-accent-hover);
  transform: translateY(-2px);
}
.cgl-form .elementor-message{
  font-family: var(--cgl-font-body);
  font-size: 13.5px;
}

/* --- Accessibilite -------------------------------------------------------- */
:where(a, button, input, select, textarea, [tabindex]):focus-visible{
  outline: 2px solid var(--cgl-blue-3);
  outline-offset: 3px;
  border-radius: 6px;
}
.cgl-sr{
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Cibles tactiles superieures a 44px sur tablette et mobile */
@media (max-width: 1024px){
  .cgl-btn .elementor-button,
  .cgl-nav .elementor-nav-menu a{ min-height: 44px; display: inline-flex; align-items: center; }
}

/* --- Mouvement reduit ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .cgl-reveal{ opacity: 1 !important; transform: none !important; }
}

/* --- Gouttieres mobile (plafond strict 16px) ------------------------------ */
@media (max-width: 767px){
  .elementor-element.e-con.e-parent > .e-con-inner,
  .elementor-element.e-con-boxed.e-parent > .e-con-inner{
    padding-inline: var(--cgl-gutter-mob);
  }
}


/* ==========================================================================
   CARGOLIS — Composants
   Les hooks #cgl-* ciblent des containers V4 (via _element_id).
   Les hooks .cgl-* ciblent des widgets V3 (via CSS Classes).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. EN-TETE
   -------------------------------------------------------------------------- */
#cgl-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, var(--cgl-bg) 70%, rgba(5,10,14,0) 100%);
}

/* Bloc marque */
.cgl-brand{ display: flex; align-items: center; gap: 11px; }
.cgl-brand__mark{
  width: 34px; height: 34px;
  flex: 0 0 34px;
  border-radius: var(--cgl-r-sm);
  background: var(--cgl-accent);
  color: var(--cgl-on-accent);
  font-family: var(--cgl-font-head);
  font-weight: 700;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.cgl-brand__name{
  font-family: var(--cgl-font-head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--cgl-text);
  line-height: 1.15;
  display: block;
}
.cgl-brand__tag{
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cgl-muted-3);
  display: block;
}

/* Navigation en pastilles */
.cgl-nav{ margin-left: auto; }
.cgl-nav .elementor-nav-menu{ gap: 4px; }
.cgl-nav .elementor-nav-menu a.elementor-item{
  font-family: var(--cgl-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--cgl-muted);
  padding: 9px 16px !important;
  border-radius: var(--cgl-r-pill);
  transition: background-color .22s var(--cgl-ease), color .22s var(--cgl-ease);
}
.cgl-nav .elementor-nav-menu a.elementor-item:hover{
  background: var(--cgl-tint-10);
  color: var(--cgl-text);
}
.cgl-nav .elementor-nav-menu a.elementor-item.elementor-item-active,
.cgl-nav .elementor-nav-menu .current-menu-item > a.elementor-item{
  background: var(--cgl-tint-16);
  color: var(--cgl-text);
}
/* Panneau mobile */
.cgl-nav .elementor-nav-menu--dropdown{
  background: var(--cgl-surface) !important;
  border: 1px solid var(--cgl-line);
  border-radius: var(--cgl-r-lg);
  overflow: hidden;
}
.cgl-nav .elementor-nav-menu--dropdown a{
  color: var(--cgl-muted) !important;
  font-size: 15px;
  padding: 14px 18px !important;
}
.cgl-nav div.elementor-menu-toggle{
  color: var(--cgl-text);
  background: var(--cgl-tint-10);
  border-radius: var(--cgl-r-sm);
  padding: 9px;
}

/* Barre de progression de lecture */
.cgl-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--cgl-accent);
  box-shadow: var(--cgl-shadow-glow);
  z-index: 60;
  pointer-events: none;
  transition: width .08s linear;
}

/* --------------------------------------------------------------------------
   2. HERO
   -------------------------------------------------------------------------- */
#cgl-hero, .cgl-hero-shell{
  position: relative;
  isolation: isolate;
  border-radius: var(--cgl-r-2xl);
  overflow: hidden;
}
/* Voiles superposes sur la photo de fond (3 couches comme la maquette) */
#cgl-hero::before{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,10,14,.20) 0%, rgba(5,10,14,.78) 62%, var(--cgl-bg) 100%),
    linear-gradient(100deg, rgba(5,10,14,.86) 0%, rgba(5,10,14,.42) 48%, rgba(5,10,14,.20) 100%);
  z-index: -1;
}
#cgl-hero > .e-con-inner{ position: relative; z-index: 1; }

/* Carte miniature de suivi */
.cgl-minicard{
  width: 250px;
  max-width: 100%;
  background: rgba(10,19,25,.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--cgl-line-blue);
  border-radius: var(--cgl-r-lg);
  padding: 14px;
  display: grid;
  gap: 10px;
}
.cgl-minicard img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--cgl-r-sm);
  display: block;
}
.cgl-minicard__label{
  font-size: 12.5px;
  font-weight: 500;
  color: var(--cgl-blue-1);
  line-height: 1.4;
}

/* Barre de cotation */
#cgl-quotebar, .cgl-quotebar{
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line);
  border-radius: var(--cgl-r-xl);
  padding: 18px;
}
.cgl-quotebar__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr)) auto;
  gap: 12px;
  align-items: end;
}
.cgl-quotebar__field{ display: grid; gap: 7px; min-width: 0; }
.cgl-quotebar__field label{
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cgl-muted-3);
}
.cgl-quotebar__field select{
  background: var(--cgl-input);
  border: 1px solid var(--cgl-line);
  border-radius: var(--cgl-r-md);
  color: var(--cgl-text);
  font-family: var(--cgl-font-body);
  font-size: 14px;
  padding: 12px 14px;
  min-height: 46px;
  width: 100%;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--cgl-muted-3) 50%),
                    linear-gradient(135deg, var(--cgl-muted-3) 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% + 1px), calc(100% - 14px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.cgl-quotebar__go{
  background: var(--cgl-accent);
  color: var(--cgl-on-accent);
  border: 0;
  border-radius: var(--cgl-r-pill);
  font-family: var(--cgl-font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 22px;
  min-height: 46px;
  cursor: pointer;
  box-shadow: var(--cgl-shadow-cta);
  transition: background-color .25s var(--cgl-ease), transform .25s var(--cgl-ease);
}
.cgl-quotebar__go:hover{ background: var(--cgl-accent-hover); transform: translateY(-2px); }
.cgl-quotebar__foot{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--cgl-line-soft);
  font-size: 12.5px;
  color: var(--cgl-muted-3);
}
.cgl-quotebar__foot a{ color: var(--cgl-blue-4); transition: color .2s var(--cgl-ease); }
.cgl-quotebar__foot a:hover{ color: var(--cgl-text); }

/* --------------------------------------------------------------------------
   3. BANDEAUX DE CHIFFRES
   -------------------------------------------------------------------------- */
.cgl-statstrip{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--cgl-line-soft);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-lg);
  overflow: hidden;
}
.cgl-statstrip__item{
  background: var(--cgl-bg);
  padding: 20px 22px;
  display: grid;
  gap: 5px;
}
.cgl-statstrip__n{
  font-family: var(--cgl-font-head);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--cgl-text);
  line-height: 1.1;
}
.cgl-statstrip__l{
  font-size: 12.5px;
  color: var(--cgl-muted-3);
  line-height: 1.45;
}

/* Bandeau de certifications */
.cgl-certs{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cgl-certs span{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--cgl-muted-2);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-pill);
  padding: 8px 15px;
  white-space: nowrap;
}

/* Cartes compteur */
.cgl-counters{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.cgl-counter{
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-lg);
  padding: 26px 24px;
  display: grid;
  gap: 8px;
  transition: border-color .3s var(--cgl-ease), background-color .3s var(--cgl-ease);
}
.cgl-counter:hover{ border-color: var(--cgl-line-blue); background: var(--cgl-surface-2); }
.cgl-counter__n{
  font-family: var(--cgl-font-head);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.035em;
  color: var(--cgl-blue-3);
  line-height: 1;
}
.cgl-counter__l{
  font-size: 13.5px;
  color: var(--cgl-muted-2);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   4. CARTES GENERIQUES
   -------------------------------------------------------------------------- */
.cgl-card{
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-xl);
  padding: 26px;
}
.cgl-card--pad-lg{ padding: clamp(26px, 3vw, 38px); }
.cgl-media{
  width: 100%;
  border-radius: var(--cgl-r-lg);
  overflow: hidden;
  display: block;
}
.cgl-media img{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.cgl-media--tall img{ aspect-ratio: 3 / 4; }
.cgl-media--wide img{ aspect-ratio: 16 / 9; }

/* Mini-atouts (icone + titre + texte) */
.cgl-features{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.cgl-feature{
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-md);
  padding: 18px;
  display: grid;
  gap: 7px;
  transition: border-color .3s var(--cgl-ease), background-color .3s var(--cgl-ease);
}
.cgl-feature:hover{ border-color: var(--cgl-line-blue); background: var(--cgl-surface-2); }
.cgl-feature__i{ font-size: 17px; color: var(--cgl-accent); line-height: 1; }
.cgl-feature__t{
  font-family: var(--cgl-font-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--cgl-text);
}
.cgl-feature__d{ font-size: 13px; color: var(--cgl-muted-3); line-height: 1.5; }

/* Liste a puces cochees */
.cgl-checks{ display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.cgl-checks li{
  display: flex;
  gap: 11px;
  font-size: 14px;
  color: var(--cgl-text-3);
  line-height: 1.5;
}
.cgl-checks li::before{
  content: "\2713";
  color: var(--cgl-accent);
  font-weight: 700;
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   5. SERVICES — revelation de la vignette au survol
   -------------------------------------------------------------------------- */
.cgl-services{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
}
.cgl-service{
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-xl);
  padding: 26px;
  display: block;
  transition: border-color .4s var(--cgl-ease), background-color .4s var(--cgl-ease);
}
.cgl-service:hover,
.cgl-service:focus-within{ border-color: var(--cgl-line-blue-hi); background: var(--cgl-surface-2); }
.cgl-service__thumb{
  height: 0;
  margin-bottom: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: var(--cgl-r-md);
  transform: scale(1.06);
  filter: blur(8px) saturate(.5);
  transition: height .56s var(--cgl-ease-out),
              margin-bottom .56s var(--cgl-ease-out),
              opacity .3s ease,
              transform .64s var(--cgl-ease-out),
              filter .42s ease;
}
.cgl-service:hover .cgl-service__thumb,
.cgl-service:focus-within .cgl-service__thumb{
  height: 132px;
  margin-bottom: 20px;
  opacity: 1;
  transform: scale(1);
  filter: blur(0) saturate(1);
}
.cgl-service__thumb img{
  width: 100%; height: 132px;
  object-fit: cover; display: block;
}
.cgl-service__i{ font-size: 19px; color: var(--cgl-accent); line-height: 1; margin-bottom: 12px; }
.cgl-service__t{
  font-family: var(--cgl-font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--cgl-text);
  margin-bottom: 8px;
}
.cgl-service__d{ font-size: 13.5px; color: var(--cgl-muted-2); line-height: 1.6; }

/* Variante en lignes (page Services) */
.cgl-rows{ display: grid; gap: 1px; background: var(--cgl-line-soft);
  border: 1px solid var(--cgl-line-soft); border-radius: var(--cgl-r-xl); overflow: hidden; }
.cgl-row{
  background: var(--cgl-bg);
  display: grid;
  grid-template-columns: 70px auto minmax(0,1fr) minmax(0,1fr) 140px;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  transition: background-color .4s var(--cgl-ease);
}
.cgl-row:hover, .cgl-row:focus-within{ background: var(--cgl-surface-2); }
.cgl-row__i{ font-size: 21px; color: var(--cgl-accent); line-height: 1; }
.cgl-row__thumb{
  width: 0;
  margin-right: -24px;
  opacity: 0;
  overflow: hidden;
  border-radius: var(--cgl-r-sm);
  transform: scale(.92) rotate(-3deg);
  filter: blur(8px) saturate(.5);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: width .56s var(--cgl-ease-out),
              margin-right .56s var(--cgl-ease-out),
              opacity .26s ease,
              transform .62s var(--cgl-ease-out),
              filter .42s ease,
              box-shadow .42s ease;
}
.cgl-row:hover .cgl-row__thumb,
.cgl-row:focus-within .cgl-row__thumb{
  width: 132px;
  margin-right: 0;
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: blur(0) saturate(1);
  box-shadow: var(--cgl-shadow-card);
}
.cgl-row__thumb img{ width: 132px; height: 84px; object-fit: cover; display: block; }
.cgl-row__t{
  font-family: var(--cgl-font-head);
  font-size: 16px; font-weight: 600; color: var(--cgl-text);
}
.cgl-row__d{ font-size: 13.5px; color: var(--cgl-muted-2); line-height: 1.55; }
.cgl-row__meta{ font-size: 12.5px; color: var(--cgl-muted-3); text-align: right; }

/* --------------------------------------------------------------------------
   6. TABLEAUX
   -------------------------------------------------------------------------- */
.cgl-tablewrap{
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cgl-table{
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-family: var(--cgl-font-body);
}
.cgl-table th{
  text-align: left;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cgl-muted-3);
  padding: 15px 20px;
  border-bottom: 1px solid var(--cgl-line-soft);
  white-space: nowrap;
}
.cgl-table td{
  font-size: 14px;
  color: var(--cgl-text-3);
  padding: 17px 20px;
  border-bottom: 1px solid var(--cgl-line-soft);
  vertical-align: top;
}
.cgl-table tbody tr{ transition: background-color .3s var(--cgl-ease); }
.cgl-table tbody tr:hover{ background: var(--cgl-surface); }
.cgl-table tbody tr:last-child td{ border-bottom: 0; }
.cgl-table td.cgl-t-strong{ color: var(--cgl-text); font-weight: 500; }
.cgl-table td.cgl-t-accent{ color: var(--cgl-blue-3); font-weight: 500; white-space: nowrap; }
.cgl-table td.cgl-t-muted{ color: var(--cgl-muted-3); font-size: 13px; }
.cgl-table a.cgl-t-link{ color: var(--cgl-blue-4); transition: color .2s var(--cgl-ease); }
.cgl-table a.cgl-t-link:hover{ color: var(--cgl-text); }

/* --------------------------------------------------------------------------
   7. TEMOIGNAGES
   -------------------------------------------------------------------------- */
.cgl-quotes{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.cgl-quote{
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-xl);
  padding: 28px;
  display: grid;
  gap: 18px;
  align-content: start;
}
.cgl-quote__text{
  font-size: 15px;
  line-height: 1.65;
  color: var(--cgl-text-3);
}
.cgl-quote__who{ display: flex; align-items: center; gap: 12px; }
.cgl-quote__av{
  width: 38px; height: 38px; flex: 0 0 38px;
  border-radius: var(--cgl-r-pill);
  background: var(--cgl-tint-16);
  color: var(--cgl-blue-3);
  font-family: var(--cgl-font-head);
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.cgl-quote__n{ font-family: var(--cgl-font-head); font-size: 14.5px; font-weight: 600; color: var(--cgl-text); }
.cgl-quote__r{ font-size: 12.5px; color: var(--cgl-muted-3); }

.cgl-score{
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-lg);
  padding: 22px 24px;
  display: grid;
  gap: 6px;
}
.cgl-score__n{
  font-family: var(--cgl-font-head);
  font-size: 32px; font-weight: 700;
  letter-spacing: -.035em;
  color: var(--cgl-blue-3);
  line-height: 1;
}
.cgl-score__l{ font-size: 12.5px; color: var(--cgl-muted-3); line-height: 1.45; }

/* --------------------------------------------------------------------------
   8. ETAPES
   -------------------------------------------------------------------------- */
.cgl-steps{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.cgl-step{
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-lg);
  padding: 24px;
  display: grid;
  gap: 10px;
  align-content: start;
  transition: border-color .3s var(--cgl-ease), background-color .3s var(--cgl-ease);
}
.cgl-step:hover{ border-color: var(--cgl-line-blue); background: var(--cgl-surface); }
.cgl-step__n{
  font-family: var(--cgl-font-head);
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em;
  color: var(--cgl-accent);
}
.cgl-step__t{ font-family: var(--cgl-font-head); font-size: 16px; font-weight: 600; color: var(--cgl-text); }
.cgl-step__d{ font-size: 13.5px; color: var(--cgl-muted-2); line-height: 1.6; }

/* --------------------------------------------------------------------------
   9. TARIFS
   -------------------------------------------------------------------------- */
.cgl-plans{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  align-items: stretch;
}
.cgl-plan{
  position: relative;
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-xl);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .35s var(--cgl-ease), transform .35s var(--cgl-ease);
}
.cgl-plan:hover{ border-color: var(--cgl-line-blue); transform: translateY(-3px); }
.cgl-plan--featured{
  border-color: var(--cgl-line-blue-hi);
  background: var(--cgl-surface-3);
}
.cgl-plan__badge{
  position: absolute;
  top: 18px; right: 18px;
  background: var(--cgl-accent);
  color: var(--cgl-on-accent);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--cgl-r-pill);
}
.cgl-plan__name{
  font-family: var(--cgl-font-head);
  font-size: 17px; font-weight: 600; color: var(--cgl-text);
}
.cgl-plan__price{
  font-family: var(--cgl-font-head);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -.035em;
  color: var(--cgl-blue-3);
  line-height: 1;
}
.cgl-plan__price small{
  font-family: var(--cgl-font-body);
  font-size: 13px; font-weight: 400;
  color: var(--cgl-muted-3);
  letter-spacing: 0;
  margin-left: 4px;
}
.cgl-plan__note{ font-size: 12.5px; color: var(--cgl-muted-3); line-height: 1.5; }
.cgl-plan__list{ display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.cgl-plan__list li{
  display: flex; gap: 10px;
  font-size: 13.5px; color: var(--cgl-muted-2); line-height: 1.5;
}
.cgl-plan__list li::before{ content: "\2713"; color: var(--cgl-accent); font-weight: 700; flex: 0 0 auto; }
.cgl-plan__cta{ margin-top: auto; }
.cgl-plan__cta a{
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--cgl-line-strong);
  color: var(--cgl-text);
  border-radius: var(--cgl-r-pill);
  font-size: 14px; font-weight: 600;
  padding: 13px 20px;
  transition: background-color .25s var(--cgl-ease), border-color .25s var(--cgl-ease);
}
.cgl-plan__cta a:hover{ background: var(--cgl-tint-10); border-color: var(--cgl-line-blue-hi); }
.cgl-plan--featured .cgl-plan__cta a{
  background: var(--cgl-accent);
  border-color: var(--cgl-accent);
  color: var(--cgl-on-accent);
  box-shadow: var(--cgl-shadow-cta);
}
.cgl-plan--featured .cgl-plan__cta a:hover{ background: var(--cgl-accent-hover); border-color: var(--cgl-accent-hover); }

/* --------------------------------------------------------------------------
   10. FAQ (widget accordion natif)
   -------------------------------------------------------------------------- */
.cgl-faq .elementor-accordion{ display: grid; gap: 10px; }
.cgl-faq .elementor-accordion-item{
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line-soft) !important;
  border-radius: var(--cgl-r-lg);
  overflow: hidden;
  transition: border-color .3s var(--cgl-ease);
}
.cgl-faq .elementor-accordion-item:hover{ border-color: var(--cgl-line-blue) !important; }
.cgl-faq .elementor-tab-title{
  font-family: var(--cgl-font-head);
  font-size: 15.5px;
  font-weight: 600;
  padding: 20px 22px;
}
.cgl-faq .elementor-tab-title a{ color: var(--cgl-text); }
.cgl-faq .elementor-tab-title .elementor-accordion-icon{ color: var(--cgl-accent); }
.cgl-faq .elementor-tab-content{
  border-top: 1px solid var(--cgl-line-soft) !important;
  padding: 18px 22px 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--cgl-muted-2);
  background: transparent;
}

/* --------------------------------------------------------------------------
   11. SIMULATEUR
   -------------------------------------------------------------------------- */
.cgl-sim{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,.85fr);
  gap: 14px;
  align-items: stretch;
}
.cgl-sim__panel{
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-xl);
  padding: 28px;
}
.cgl-sim__result{
  background: var(--cgl-surface-3);
  border: 1px solid var(--cgl-line-blue);
  border-radius: var(--cgl-r-xl);
  padding: 28px;
  display: grid;
  gap: 14px;
  align-content: center;
}
.cgl-sim__label{
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cgl-muted-3);
  margin-bottom: 9px;
  display: block;
}
.cgl-sim__field{ margin-bottom: 18px; }
.cgl-sim select, .cgl-sim input[type="number"]{
  background: var(--cgl-input);
  border: 1px solid var(--cgl-line);
  border-radius: var(--cgl-r-md);
  color: var(--cgl-text);
  font-family: var(--cgl-font-body);
  font-size: 14.5px;
  padding: 13px 15px;
  min-height: 48px;
  width: 100%;
  appearance: none;
}
.cgl-sim select{
  background-image: linear-gradient(45deg, transparent 50%, var(--cgl-muted-3) 50%),
                    linear-gradient(135deg, var(--cgl-muted-3) 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% + 1px), calc(100% - 14px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.cgl-sim input[type="number"]{ appearance: textfield; }
.cgl-sim__check{
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; color: var(--cgl-text-3);
  cursor: pointer;
  min-height: 44px;
}
.cgl-sim__check input{
  width: 19px; height: 19px;
  accent-color: var(--cgl-accent);
  cursor: pointer;
}
.cgl-sim__out{
  font-family: var(--cgl-font-head);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -.035em;
  color: var(--cgl-blue-3);
  line-height: 1.1;
}
.cgl-sim__detail{ font-size: 13px; color: var(--cgl-muted-2); line-height: 1.55; }
.cgl-sim__meta{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--cgl-line-soft);
}
.cgl-sim__meta div span{ display: block; }
.cgl-sim__meta .k{
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cgl-muted-3);
  margin-bottom: 4px;
}
.cgl-sim__meta .v{ font-size: 13.5px; color: var(--cgl-text-3); }

/* --------------------------------------------------------------------------
   12. ACTUALITES
   -------------------------------------------------------------------------- */
.cgl-news{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
}
.cgl-newsitem{
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-lg);
  padding: 24px;
  display: grid;
  gap: 10px;
  align-content: start;
  transition: border-color .3s var(--cgl-ease), transform .3s var(--cgl-ease);
}
.cgl-newsitem:hover{ border-color: var(--cgl-line-blue); transform: translateY(-3px); }
.cgl-newsitem__k{
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cgl-accent);
}
.cgl-newsitem__t{ font-family: var(--cgl-font-head); font-size: 16px; font-weight: 600; color: var(--cgl-text); line-height: 1.35; }
.cgl-newsitem__d{ font-size: 13.5px; color: var(--cgl-muted-2); line-height: 1.6; }

/* --------------------------------------------------------------------------
   13. CONTACT
   -------------------------------------------------------------------------- */
.cgl-infocards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.cgl-infocard{
  background: var(--cgl-surface);
  border: 1px solid var(--cgl-line-soft);
  border-radius: var(--cgl-r-lg);
  padding: 24px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.cgl-infocard__k{
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cgl-muted-3);
}
.cgl-infocard__v{ font-family: var(--cgl-font-head); font-size: 16px; font-weight: 600; color: var(--cgl-text); line-height: 1.4; }
.cgl-infocard__d{ font-size: 13px; color: var(--cgl-muted-3); line-height: 1.5; }
.cgl-infocard a{ color: var(--cgl-blue-4); transition: color .2s var(--cgl-ease); }
.cgl-infocard a:hover{ color: var(--cgl-text); }

/* Fil d ariane */
.cgl-crumb{
  font-size: 12px;
  color: var(--cgl-muted-3);
  letter-spacing: .04em;
}
.cgl-crumb a{ color: var(--cgl-muted-2); transition: color .2s var(--cgl-ease); }
.cgl-crumb a:hover{ color: var(--cgl-text); }

/* --------------------------------------------------------------------------
   14. PIED DE PAGE
   -------------------------------------------------------------------------- */
#cgl-footer{ border-top: 1px solid var(--cgl-line); }
.cgl-footgrid{
  display: grid;
  grid-template-columns: minmax(0,1.3fr) repeat(3, minmax(0,.9fr));
  gap: 34px;
}
.cgl-footcol__h{
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cgl-muted-3);
  margin-bottom: 14px;
}
.cgl-footcol ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.cgl-footcol a, .cgl-footcol li{
  font-size: 13.5px;
  color: var(--cgl-muted-2);
  line-height: 1.55;
  transition: color .2s var(--cgl-ease);
}
.cgl-footcol a:hover{ color: var(--cgl-text); }
.cgl-footbrand__d{
  font-size: 13.5px;
  color: var(--cgl-muted-3);
  line-height: 1.6;
  max-width: 34ch;
  margin: 14px 0 18px;
}
.cgl-social{ display: flex; gap: 8px; }
.cgl-social a{
  width: 36px; height: 36px;
  border-radius: var(--cgl-r-pill);
  border: 1px solid var(--cgl-line-soft);
  color: var(--cgl-muted-2);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .25s var(--cgl-ease), color .25s var(--cgl-ease), border-color .25s var(--cgl-ease);
}
.cgl-social a:hover{ background: var(--cgl-tint-16); color: var(--cgl-text); border-color: var(--cgl-line-blue); }
.cgl-footbar{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--cgl-line-soft);
  font-size: 12.5px;
  color: var(--cgl-muted-4);
}
.cgl-footbar nav{ display: flex; flex-wrap: wrap; gap: 18px; }
.cgl-footbar a{ transition: color .2s var(--cgl-ease); }
.cgl-footbar a:hover{ color: var(--cgl-text); }

/* --------------------------------------------------------------------------
   15. REVELATION AU DEFILEMENT
   -------------------------------------------------------------------------- */
.cgl-reveal{
  opacity: 0;
  transform: translateY(34px);
}
.cgl-reveal.is-in{
  opacity: 1;
  transform: none;
  transition: opacity .85s var(--cgl-ease), transform .85s var(--cgl-ease);
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px){
  .cgl-sim{ grid-template-columns: 1fr; }
  .cgl-footgrid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
  .cgl-row{ grid-template-columns: 56px auto minmax(0,1fr); gap: 16px; }
  .cgl-row__meta{ display: none; }
}
@media (max-width: 767px){
  /* Marque + burger seuls sur une ligne : le CTA vit dans le hero. */
  .cgl-header-cta{ display: none; }
  .cgl-nav{ margin-left: auto; }
  .cgl-quotebar__grid{ grid-template-columns: 1fr; }
  .cgl-quotebar__go{ width: 100%; }
  .cgl-footgrid{ grid-template-columns: 1fr; gap: 26px; }
  .cgl-card{ padding: 20px; }
  .cgl-card--pad-lg{ padding: 22px; }
  .cgl-service, .cgl-plan, .cgl-quote, .cgl-sim__panel, .cgl-sim__result{ padding: 22px; }
  .cgl-row{ grid-template-columns: 1fr; gap: 10px; padding: 20px 18px; }
  .cgl-row__thumb{ display: none; }
  .cgl-footbar{ flex-direction: column; align-items: flex-start; }
}/* End custom CSS */