/* ======================================================
   EVOLEADZ — components.css (REFAC CLEAN)
   - Structure claire, sans doublons
   - Elementor-proof quand nécessaire
   - Zone PATCHES (latest) tout en bas
   ====================================================== */

/* ======================================================
   1) BUTTONS (HTML + Elementor)
   ====================================================== */
.btn,
.elementor-button.btn{
  appearance:none;
  -webkit-appearance:none;
  text-decoration:none !important;

  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px;

  min-height:56px;
  padding:0 22px !important;

  border-radius:14px !important;
  border:1px solid transparent !important;

  font-family: var(--font);
  font-weight:800 !important;
  font-size:15px !important;
  line-height:1 !important;
  letter-spacing:-0.01em;

  white-space:nowrap;
  cursor:pointer;
  user-select:none;

  transition:
    transform .15s ease,
    background .15s ease,
    border-color .15s ease,
    box-shadow .15s ease,
    color .15s ease;
}

.elementor-button.btn .elementor-button-content-wrapper{
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
}
.elementor-button.btn .elementor-button-text{ line-height:1 !important; }
.elementor-button.btn .elementor-button-icon{ margin:0 !important; font-size:16px; }

.btn:active,
.elementor-button.btn:active{ transform:translateY(1px); }

.btn:focus-visible,
.elementor-button.btn:focus-visible{
  outline:3px solid rgba(30,144,255,.35);
  outline-offset:3px;
}

/* Variants */
.btn--primary,
.elementor-button.btn--primary{
  background:var(--c-primary) !important;
  color:var(--c-text-inv) !important;
  box-shadow:0 18px 46px rgba(51,211,117,.26) !important;
}
.btn--primary:hover,
.elementor-button.btn--primary:hover{ background:var(--c-primary-hover) !important; }
.btn--primary:active,
.elementor-button.btn--primary:active{ background:var(--c-primary-active) !important; }

.btn--secondary,
.elementor-button.btn--secondary{
  background:var(--c-secondary) !important;
  color:var(--c-text-inv) !important;
  box-shadow:0 18px 46px rgba(41,146,252,.24) !important;
}
.btn--secondary:hover,
.elementor-button.btn--secondary:hover{ background:var(--c-secondary-hover) !important; }
.btn--secondary:active,
.elementor-button.btn--secondary:active{ background:var(--c-secondary-active) !important; }

.btn--ghost,
.elementor-button.btn--ghost{
  background:rgba(255,255,255,.10) !important;
  color:var(--c-text-inv) !important;
  border-color:rgba(255,255,255,.18) !important;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.btn--ghost:hover,
.elementor-button.btn--ghost:hover{ background:rgba(255,255,255,.14) !important; }


/* ======================================================
   2) HEADER (desktop + full-bleed)
   Header = même fond que footer (var(--c-bg))
   ====================================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;

  background: var(--c-bg) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  width:100%;
}

/* Full-bleed si header est dans une section boxée Elementor */
.elementor .site-header{
  width:100vw;
  max-width:100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.elementor .site-header,
.elementor .site-header > .site-header__inner{ box-sizing:border-box; }

.site-header__inner{
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:var(--gutter);
  min-height:var(--header-h);

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.site-header__logo{ display:flex; align-items:center; flex:0 0 auto; }
.site-header__logo img{ height:34px; width:auto; display:block; }

.site-header__nav{ flex:1 1 auto; display:flex; justify-content:center; }
.site-header__nav .evo-nav__list{
  display:flex;
  align-items:center;
  gap:22px;
  list-style:none;
  margin:0;
  padding:0;
}

/* Menu blanc (fond dark) */
.site-header__nav a{
  font-size:14px;
  font-weight:800;
  line-height:1;
  padding:10px 10px;
  border-radius:12px;

  color: rgba(255,255,255,.92) !important;
  transition:background .15s ease, color .15s ease, transform .15s ease;
}
.site-header__nav a:hover{
  background: rgba(255,255,255,.10) !important;
  color: #fff !important;
  transform:translateY(-1px);
}

.site-header__cta{ flex:0 0 auto; white-space:nowrap; }
.site-header__cta .btn,
.site-header__cta .elementor-button.btn{ color: var(--c-text-inv) !important; }


/* ======================================================
   3) BURGER + DRAWER (mobile)
   ====================================================== */
.site-header__burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18) !important;
  background:rgba(255,255,255,.10) !important;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.site-header__burger span{
  width:18px;
  height:2px;
  display:block;
  border-radius:999px;
  background:#fff !important;
}

.site-header__drawer{
  display:none;
  position:fixed;
  inset:0;
  z-index:1100;
  background:rgba(11,31,50,.58);
  padding:18px;
}
.site-header__drawer-panel{
  margin-left:auto;
  width:min(420px, 100%);
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow-strong);
  overflow:hidden;
}
.site-header__drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  border-bottom:1px solid var(--c-border);
}
.site-header__drawer-title{
  font-weight:800;
  font-size:14px;
  color:var(--c-text);
}
.site-header__drawer-close{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--c-border);
  background:#fff;
  cursor:pointer;
}
.site-header__drawer nav{ padding:10px 14px 14px; }
.site-header__drawer .evo-nav__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.site-header__drawer a{
  display:flex;
  padding:12px 12px;
  border-radius:14px;
  background:rgba(11,21,48,.04);
  font-weight:800;
  color:var(--c-text);
}
.site-header__drawer a:hover{
  background:rgba(30,144,255,.12);
  color:var(--c-secondary);
}

body.evo-menu-open .site-header__drawer{ display:block; }
body.evo-menu-open{ overflow:hidden; }

@media(max-width:900px){
  .site-header__nav,
  .site-header__cta{ display:none; }
  .site-header__burger{ display:inline-flex; }
}


/* ======================================================
   4) HERO SLIDER
   ====================================================== */
.evo-hero{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:var(--c-bg);
  color:#fff;
}
.evo-hero *{ color:#fff; }

.evo-hero--slider{ min-height:clamp(560px, 78vh, 820px); }

.evo-hero__slide{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;

  opacity:0;
  pointer-events:none;
  transform:scale(1.01);
  transition:opacity .6s ease, transform .9s ease;
  z-index:1;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.evo-hero__slide.is-active{
  opacity:1;
  pointer-events:auto;
  transform:scale(1);
}

.evo-hero__slide::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(900px 520px at 28% 35%, rgba(41,146,252,.14), transparent 62%),
    radial-gradient(800px 520px at 72% 55%, rgba(51,211,117,.10), transparent 65%),
    linear-gradient(90deg, rgba(11,31,50,.52) 0%, rgba(11,31,50,.34) 45%, rgba(11,31,50,.18) 100%);
}
.evo-hero__slide::after{
  content:"";
  position:absolute;
  inset:-2px;
  z-index:0;
  background:radial-gradient(1200px 700px at 50% 45%, transparent 40%, rgba(11,31,50,.35) 100%);
}

.evo-hero__inner{
  position:relative;
  z-index:2;

  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding:clamp(56px,7vw,110px) var(--gutter);

  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 80px);
  align-items:start;
}

.evo-hero__left{ min-width:0; }
.evo-hero__right{ min-width:0; display:flex; justify-content:flex-end; }

.evo-hero__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 22px 70px rgba(0,0,0,.18);
  font-size:12px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.evo-hero__title{
  font-size:clamp(52px, 5.6vw, 72px);
  line-height:1.06;
  font-weight:800;
  letter-spacing:var(--title-track);
  margin:0 0 16px;
  text-shadow:0 18px 55px rgba(0,0,0,.25);
}
.evo-hero__title .evo-gradient{
  background:linear-gradient(90deg, var(--c-secondary), var(--c-primary));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
  text-shadow:none;
}

.evo-hero__subtitle{
  font-size:16px;
  line-height:1.6;
  font-weight:400;
  color:var(--c-text-inv-muted);
  max-width:60ch;
  margin:0 0 26px;
}

.evo-hero__cta{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:nowrap;
  margin-bottom:28px;
}
.evo-hero__left .btn{ min-width:190px; }

.evo-hero__stats{
  width:100%;
  max-width:740px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:12px;
}
.evo-hero__stats > *{
  padding:18px 18px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 50px rgba(0,0,0,.14);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.evo-hero__stat-value{
  font-size:18px;
  line-height:1.1;
  font-weight:800;
  letter-spacing:-0.02em;
  color:rgba(255,255,255,.96);
}
.evo-hero__stat-label{
  font-size:14px;
  line-height:1.45;
  font-weight:400;
  color:var(--c-text-inv-muted);
  max-width:40ch;
}

.evo-hero__features{
  width:100%;
  max-width:610px;
  border-radius:28px;
  padding:28px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:var(--shadow-strong);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.evo-hero__features > .e-con{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:18px;
  align-items:center;
  padding:22px;
  border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.evo-hero__features > .e-con:not(:last-child){ margin-bottom:18px; }

.evo-hero__feature-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}
.evo-hero__feature-text{
  font-size:15px;
  line-height:1.55;
  color:rgba(255,255,255,.92);
}

/* Slider UI */
.evo-hero__ui{
  position:absolute;
  inset-inline:0;
  bottom:18px;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding-inline:var(--gutter);
}
.evo-hero__arrow{
  width:46px;
  height:46px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.14);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  line-height:1;
  transition:transform .15s ease, background .15s ease;
}
.evo-hero__arrow:hover{
  background:rgba(255,255,255,.18);
  transform:translateY(-1px);
}
.evo-hero__dots{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}
.evo-hero__dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,.42);
  transition:transform .15s ease, background .15s ease;
}
.evo-hero__dot[aria-current="true"]{
  background:rgba(255,255,255,.98);
  transform:scale(1.2);
}

/* Hero icons (svg/font) */
.evo-hero .evo-hero__feature-icon i,
.evo-hero .evo-hero__feature-icon svg,
.evo-hero .evo-hero__feature-icon .elementor-icon,
.evo-hero .evo-hero__feature-icon .elementor-icon i,
.evo-hero .evo-hero__feature-icon .elementor-icon svg{
  color: rgba(255,255,255,.96) !important;
  fill: currentColor !important;
}
.evo-hero .evo-hero__feature-icon img{
  filter: brightness(2) contrast(1.05);
  opacity: .95;
}
.evo-hero .evo-hero__badge i,
.evo-hero .evo-hero__badge svg{
  color: rgba(255,255,255,.92) !important;
  fill: currentColor !important;
}


/* ======================================================
   5) ANIMATIONS (only if html.evo-js)
   ====================================================== */
@keyframes evoFadeUp{
  from{ opacity:0; transform:translateY(14px); }
  to{ opacity:1; transform:translateY(0); }
}
@keyframes evoSoftScale{
  from{ opacity:0; transform:translateY(10px) scale(.985); }
  to{ opacity:1; transform:translateY(0) scale(1); }
}

html.evo-js .evo-hero .evo-hero__badge,
html.evo-js .evo-hero .evo-hero__title,
html.evo-js .evo-hero .evo-hero__subtitle,
html.evo-js .evo-hero .evo-hero__cta,
html.evo-js .evo-hero .evo-hero__stats,
html.evo-js .evo-hero .evo-hero__features{
  opacity:0;
  transform:translateY(14px);
}

html.evo-js .evo-hero.is-ready .evo-hero__badge{ animation:evoFadeUp .55s ease forwards; animation-delay:.05s; }
html.evo-js .evo-hero.is-ready .evo-hero__title{ animation:evoFadeUp .62s ease forwards; animation-delay:.10s; }
html.evo-js .evo-hero.is-ready .evo-hero__subtitle{ animation:evoFadeUp .62s ease forwards; animation-delay:.16s; }
html.evo-js .evo-hero.is-ready .evo-hero__cta{ animation:evoFadeUp .62s ease forwards; animation-delay:.22s; }
html.evo-js .evo-hero.is-ready .evo-hero__stats{ animation:evoFadeUp .62s ease forwards; animation-delay:.28s; }
html.evo-js .evo-hero.is-ready .evo-hero__features{ animation:evoSoftScale .70s ease forwards; animation-delay:.22s; }

.evo-hero .btn{ will-change:transform; }
.evo-hero .btn:hover{ transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce){
  html.evo-js .evo-hero .evo-hero__badge,
  html.evo-js .evo-hero .evo-hero__title,
  html.evo-js .evo-hero .evo-hero__subtitle,
  html.evo-js .evo-hero .evo-hero__cta,
  html.evo-js .evo-hero .evo-hero__stats,
  html.evo-js .evo-hero .evo-hero__features{
    opacity:1 !important;
    transform:none !important;
    animation:none !important;
  }
  .evo-hero__slide{ transition:none !important; }
  .evo-hero__arrow,
  .evo-hero__dot{ transition:none !important; }
  .evo-hero .btn:hover{ transform:none !important; }
}


/* ======================================================
   6) SECTIONS (base) + TYPO wireframe
   ====================================================== */
.evo-section{
  padding: 86px 0;
  background: var(--c-surface-soft);
}

.evo-section__inner{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.evo-section__head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.evo-section__title,
.evo-section h2.elementor-heading-title{
  font-size: 36px;
  line-height: 1.15;
  font-weight: 750;            /* wireframe feel */
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: var(--c-text);
}

.evo-section__subtitle,
.evo-section__head p,
.evo-section .elementor-widget-text-editor{
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-muted);
  max-width: 68ch;
  margin: 0;
}

/* Dark sections readability */
.evo-section--stats,
.evo-section--contact{
  color: var(--c-text-inv);
}
.evo-section--stats h1,
.evo-section--stats h2,
.evo-section--stats h3,
.evo-section--contact h1,
.evo-section--contact h2,
.evo-section--contact h3{
  color: var(--c-text-inv) !important;
}
.evo-section--stats p,
.evo-section--contact p{
  color: var(--c-text-inv-muted) !important;
}

/* Grid helper */
.evo-grid{ display:grid; gap:18px; }
.evo-grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }


/* ======================================================
   7) SERVICES
   ====================================================== */
.evo-card{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:18px;
  box-shadow: var(--shadow);
}

.evo-service{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:240px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.evo-service::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 20% 15%, rgba(41,146,252,.12), transparent 60%),
    radial-gradient(420px 220px at 85% 25%, rgba(51,211,117,.10), transparent 60%);
  opacity:.85;
  pointer-events:none;
}
.evo-service > *{ position:relative; z-index:1; }

.evo-service__icon{
  width:48px;
  height:48px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(30,144,255,.12);
  border: 1px solid rgba(30,144,255,.22);
}
.evo-service__icon img{
  width:24px;
  height:24px;
  object-fit:contain;
  filter: brightness(1.08) contrast(1.05);
  opacity:.95;
}
.evo-service__icon i,
.evo-service__icon svg,
.evo-service__icon .elementor-icon,
.evo-service__icon .elementor-icon i,
.evo-service__icon .elementor-icon svg{
  color: var(--c-secondary) !important;
  fill: currentColor !important;
}

.evo-service__title{
  font-family: var(--font);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 0;
  text-wrap: balance;
}

.evo-service__desc,
.evo-service__subtitle{
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--c-muted);
  margin: 0;
  text-wrap: pretty;
}
.evo-service__desc p,
.evo-service__subtitle p{ margin:0; }

.evo-service .btn{
  margin-top:auto;
  align-self:flex-start;
  min-height:44px;
  padding:0 16px !important;
  font-size:14px !important;
  border-radius:12px !important;
}

.evo-service:hover{
  transform: translateY(-2px);
  border-color: rgba(30,144,255,.28);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
}


/* ======================================================
   8) STATS
   ====================================================== */
.evo-section--stats{
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.evo-section--stats::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 25% 25%, rgba(41,146,252,.14), transparent 62%),
    radial-gradient(850px 520px at 78% 45%, rgba(51,211,117,.10), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events:none;
}
.evo-section--stats .evo-section__inner{ position:relative; z-index:2; }

.evo-grid--stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 10px;
}

.evo-stat{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display:flex;
  flex-direction: column;
  gap: 10px;

  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.evo-stat:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.075);
  border-color: rgba(30,144,255,.22);
}

.evo-stat__icon{
  width:48px;
  height:48px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color:#fff !important;
}
.evo-stat__icon img{
  width:22px;
  height:22px;
  object-fit:contain;
  filter: brightness(1.15) contrast(1.05);
  opacity:.95;
}
.evo-stat__icon i,
.evo-stat__icon svg,
.evo-stat__icon .elementor-icon,
.evo-stat__icon .elementor-icon i,
.evo-stat__icon .elementor-icon svg{
  color:#fff !important;
  fill: currentColor !important;
}

.evo-stat__value{
  font-family: var(--font);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text-inv);
}
.evo-stat__label{
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--c-text-inv-muted);
  margin: 0;
  max-width: 44ch;
}

.evo-section__cta{
  margin-top: 28px;
  display:flex;
  justify-content:center;
}


/* ======================================================
   9) PRICING
   ====================================================== */
.evo-section--pricing{
  background: var(--c-surface-soft);
  padding: 96px 0;
}

.evo-grid--pricing{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 26px;
}

.evo-pack{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:22px;

  display:flex;
  flex-direction: column;
  gap: 12px;
  min-height: 520px;
  position:relative;
  overflow:hidden;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.evo-pack:hover{
  transform: translateY(-2px);
  border-color: rgba(30,144,255,.25);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
}

.evo-pack__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-secondary);
  width: fit-content;
}

.evo-pack__name{
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: var(--title-track);
  color: var(--c-text);
  margin: 0;
}

.evo-pack__price{
  display:flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 6px;
}
.evo-pack__price strong{
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.evo-pack__price span{
  font-size: 14px;
  color: var(--c-muted);
  font-weight: 500;
}
.evo-pack__note{
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-muted);
  margin: 0 0 8px;
}
.evo-pack__divider{
  height:1px;
  background: var(--c-border);
  margin: 10px 0 6px;
}

.evo-pack__features{
  list-style:none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.evo-pack__features li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text);
}
.evo-pack__features li::before{
  content:"✓";
  font-weight: 900;
  color: var(--c-primary);
  margin-top: 1px;
}

.evo-pack__cta{
  margin-top: auto;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.evo-pack__cta .btn{
  width: 100%;
  min-height: 52px;
}

.evo-pack--featured{
  border-color: rgba(51,211,117,.45);
  box-shadow: 0 28px 90px rgba(51,211,117,.16);
  transform: translateY(-4px);
}
.evo-pack--featured::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 320px at 35% 0%, rgba(51,211,117,.18), transparent 60%),
    radial-gradient(520px 320px at 90% 10%, rgba(41,146,252,.14), transparent 60%);
  pointer-events:none;
}
.evo-pack--featured > *{ position:relative; z-index:1; }
.evo-pack--featured .evo-pack__badge{
  background: rgba(51,211,117,.10);
  border-color: rgba(51,211,117,.30);
  color: var(--c-primary-active);
}


/* ======================================================
   10) A LA CARTE
   ====================================================== */
.evo-section--a-la-carte{
  background:#fff;
  padding: 96px 0;
}

.evo-grid--alc{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 26px;
}

.evo-alc{
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  background: #fff;
  position: relative;
  overflow: hidden;

  display:flex;
  flex-direction: column;
  gap: 10px;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.evo-alc::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 240px at 20% 15%, rgba(41,146,252,.12), transparent 60%),
    radial-gradient(420px 240px at 85% 25%, rgba(51,211,117,.10), transparent 60%);
  opacity: .7;
  pointer-events:none;
}
.evo-alc > *{ position: relative; z-index: 1; }

.evo-alc:hover{
  transform: translateY(-2px);
  border-color: rgba(30,144,255,.25);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
}

.evo-alc__badge{
  display:inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(41,146,252,.08);
  border: 1px solid rgba(41,146,252,.16);
  color: var(--c-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.evo-alc__name{
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 0;
}
.evo-alc__price{
  display:flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}
.evo-alc__price strong{
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.evo-alc__price span{
  font-size: 14px;
  color: var(--c-muted);
  font-weight: 500;
}
.evo-alc__desc{
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-muted);
  margin: 0 0 6px;
  max-width: 60ch;
}
.evo-alc__features{
  list-style: none;
  padding: 0;
  margin: 0;
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.evo-alc__features li{
  display:flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text);
}
.evo-alc__features li::before{
  content:"•";
  color: var(--c-secondary);
  font-weight: 900;
  line-height: 1;
  margin-top: 2px;
}
.evo-alc__cta{
  margin-top: auto;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.evo-alc__cta .btn{
  min-height: 48px;
  padding: 0 16px !important;
  font-size: 14px !important;
  border-radius: 12px !important;
}
.evo-alc__cta .btn.btn--ghost{
  color: var(--c-text) !important;
  background: rgba(11,21,48,.04) !important;
  border-color: var(--c-border) !important;
  backdrop-filter: none !important;
}


/* ======================================================
   11) WORKS
   ====================================================== */
.evo-section--works{
  background:#fff;
  padding: 96px 0;
}

.evo-grid--works{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 26px;
}

.evo-work{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.evo-work:hover{
  transform: translateY(-2px);
  border-color: rgba(30,144,255,.25);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
}

.evo-work__media{
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-surface-soft);
}
.evo-work__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.evo-work:hover .evo-work__media img{ transform: scale(1.06); }

.evo-work__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(11,21,48,.60) 100%);
  opacity: .9;
  pointer-events:none;
}

.evo-work__body{
  padding: 18px 18px 20px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.evo-work__tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.evo-tag{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(41,146,252,.08);
  border: 1px solid rgba(41,146,252,.16);
  color: var(--c-secondary);
}
.evo-work__name{
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 0;
}
.evo-work__desc{
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-muted);
  margin: 0;
}
.evo-work__cta{ margin-top: 6px; }
.evo-work__cta .btn{
  min-height: 48px;
  padding: 0 16px !important;
  font-size: 14px !important;
  border-radius: 12px !important;
}


/* ======================================================
   12) TESTIMONIALS
   ====================================================== */
.evo-section--testimonials{
  background:#fff;
  padding: 96px 0;
}

.evo-testi{ margin-top: 26px; position: relative; }

.evo-testi__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.evo-testi__track::-webkit-scrollbar{ display:none; }

.evo-testi__item{
  scroll-snap-align: start;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  padding: 22px;

  display:flex;
  flex-direction: column;
  gap: 12px;

  min-height: 260px;
  position: relative;
  overflow: hidden;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.evo-testi__item::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 240px at 20% 15%, rgba(41,146,252,.10), transparent 60%),
    radial-gradient(420px 240px at 85% 25%, rgba(51,211,117,.08), transparent 60%);
  opacity: .75;
  pointer-events:none;
}
.evo-testi__item > *{ position:relative; z-index:1; }

.evo-testi__item:hover{
  transform: translateY(-2px);
  border-color: rgba(30,144,255,.25);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
}

.evo-testi__stars{
  display:flex;
  gap: 6px;
  align-items:center;
  color: var(--c-warning);
  font-size: 14px;
  line-height: 1;
}
.evo-testi__quote{
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}
.evo-testi__author{
  margin-top: auto;
  display:flex;
  align-items:center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--c-border);
}
.evo-testi__avatar{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface-soft);
  flex: 0 0 auto;
}
.evo-testi__avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.evo-testi__name{
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--c-text);
}
.evo-testi__role{
  font-size: 13px;
  line-height: 1.3;
  color: var(--c-muted);
  margin: 2px 0 0;
}

.evo-testi__ui{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.evo-testi__arrows{ display:flex; gap: 10px; }
.evo-testi__arrow{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--c-border);
  background: #fff;
  cursor: pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  transition: transform .15s ease, background .15s ease;
}
.evo-testi__arrow:hover{
  background: rgba(30,144,255,.08);
  transform: translateY(-1px);
}

.evo-testi__dots{
  display:flex;
  gap: 8px;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: #fff;
}
.evo-testi__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(11,21,48,.22);
  transition: transform .15s ease, background .15s ease;
}
.evo-testi__dot[aria-current="true"]{
  background: var(--c-secondary);
  transform: scale(1.2);
}


/* ======================================================
   13) CONTACT + FORM (CF7)
   ====================================================== */
.evo-section--contact{
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: #fff;
}
.evo-section--contact::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 25% 30%, rgba(41,146,252,.14), transparent 62%),
    radial-gradient(850px 520px at 78% 55%, rgba(51,211,117,.10), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events:none;
}
.evo-section--contact .evo-section__inner{ position:relative; z-index:2; }

.evo-contact__grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr; /* version finale conservée */
  gap: clamp(22px, 4vw, 64px);
  align-items:start;
}
.evo-contact__left,
.evo-contact__right{ min-width:0; }

.evo-contact__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 22px 70px rgba(0,0,0,.18);
  font-size:12px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:16px;
  color: rgba(255,255,255,.92);
}
.evo-contact__title{
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #fff;
}
.evo-contact__subtitle{
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text-inv-muted);
  margin: 0 0 22px;
  max-width: 62ch;
}

/* Infos = 1 colonne (version finale) */
.evo-contact__infos{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}
.evo-contact__info{
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 50px rgba(0,0,0,.14);
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.evo-contact__info-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  flex: 0 0 auto;
  color: #fff;
}
.evo-contact__info-icon i,
.evo-contact__info-icon svg{
  color:#fff !important;
  fill: currentColor !important;
}

.evo-contact__info-text strong{
  display:block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.96);
  margin-bottom: 2px;
}
.evo-contact__info-text span,
.evo-contact__info-text a{
  font-size: 13px;
  color: var(--c-text-inv-muted);
  text-decoration: none;
}
.evo-contact__info-text a:hover{ color: rgba(255,255,255,.95); }

/* Form panel */
.evo-contact__right{
  width: 100%;
  display:flex;
  justify-content:flex-end;
}
.evo-contact__panel{
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  width: min(640px, 100%);
}
@media (max-width:1024px){
  .evo-contact__panel{ width:100%; }
}

.evo-contact__badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

/* Form */
.evo-form label{
  display:block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin: 0 0 6px;
}
.evo-form input[type="text"],
.evo-form input[type="email"],
.evo-form input[type="tel"],
.evo-form textarea,
.evo-form select{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.96);
  padding: 14px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.evo-form textarea{ min-height: 120px; resize: vertical; }
.evo-form input::placeholder,
.evo-form textarea::placeholder{ color: rgba(255,255,255,.60); }

.evo-form input:focus,
.evo-form textarea:focus,
.evo-form select:focus{
  border-color: rgba(30,144,255,.55);
  box-shadow: 0 0 0 4px rgba(30,144,255,.18);
  background: rgba(255,255,255,.10);
}

.evo-form .wpcf7-form-control-wrap{
  display:block;
  margin-bottom: 12px;
}

/* Submit */
.evo-form input[type="submit"],
.evo-form button[type="submit"],
.evo-form .elementor-button{
  width:100%;
  min-height:56px;
  border-radius:14px !important;
  border: 0 !important;
  background: var(--c-primary) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(51,211,117,.26);
  transition: transform .15s ease, background .15s ease;
}
.evo-form input[type="submit"]:hover,
.evo-form button[type="submit"]:hover,
.evo-form .elementor-button:hover{
  background: var(--c-primary-hover) !important;
  transform: translateY(-1px);
}
.evo-form input[type="submit"]:active,
.evo-form button[type="submit"]:active,
.evo-form .elementor-button:active{
  background: var(--c-primary-active) !important;
  transform: translateY(1px);
}

/* Errors (CF7) */
.evo-form .wpcf7-not-valid-tip{
  color: #ffb4b4;
  font-size: 12px;
  margin-top: 6px;
}
.evo-form .wpcf7-response-output{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  margin: 12px 0 0;
  padding: 12px 14px;
}

.evo-form .evo-form__row{ margin-bottom: 12px; }
.evo-form .evo-form__consent{ margin-top: 6px; margin-bottom: 14px; }
.evo-form .wpcf7-list-item{ margin: 0; }
.evo-form .wpcf7-list-item-label{
  font-size: 13px;
  line-height: 1.45;
  color: var(--c-text-inv-muted);
}
.evo-form input[type="checkbox"]{ transform: translateY(1px); margin-right: 8px; }

/* Select theme */
.evo-form select{
  -webkit-appearance:none;
  appearance:none;
  padding: 14px 44px 14px 14px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.85) 50%),
    linear-gradient(135deg, rgba(255,255,255,.85) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  color-scheme: dark;
}
.evo-form select option{
  background: var(--c-bg);
  color: #fff;
}


/* ======================================================
   14) FOOTER + full-bleed
   ====================================================== */
.site-footer{
  background: var(--c-bg);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 70px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  width:100%;
}
.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 22% 20%, rgba(41,146,252,.12), transparent 62%),
    radial-gradient(850px 520px at 78% 45%, rgba(51,211,117,.10), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events:none;
}
.site-footer__inner{
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.elementor .site-footer{
  width:100vw;
  max-width:100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.elementor .site-footer,
.elementor .site-footer > .site-footer__inner{ box-sizing:border-box; }

.site-footer__top{
  display:grid;
  grid-template-columns: 1.35fr 1fr 1.15fr;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.site-footer__logo img{ height: 34px; width: auto; display:block; }

.site-footer__desc{
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 46ch;
}

.site-footer__title{
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}

.site-footer__links{
  list-style:none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__links a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color .15s ease, transform .15s ease;
}
.site-footer__links a:hover{
  color: rgba(255,255,255,.96);
  transform: translateX(2px);
}

.site-footer__contact{
  display:flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.site-footer__contact a{ color: rgba(255,255,255,.78); text-decoration:none; }
.site-footer__contact a:hover{ color: rgba(255,255,255,.96); }

.site-footer__social{
  display:flex;
  gap: 10px;
  margin-top: 10px;
}
.site-footer__social a{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  transition: transform .15s ease, background .15s ease;
}
.site-footer__social a:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.site-footer__bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.site-footer__legal{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.site-footer__legal a{ color: rgba(255,255,255,.72); text-decoration:none; }
.site-footer__legal a:hover{ color: rgba(255,255,255,.96); }

/* Footer headings readability (Elementor H3 etc.) */
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer .elementor-heading-title{
  color: rgba(255,255,255,.92) !important;
}
.site-footer h3{
  font-weight: 800 !important;
  letter-spacing: .02em;
}

/* ======================================================
   15) RESPONSIVE (global)
   ====================================================== */
@media (max-width: 1100px){
  .evo-grid--pricing{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 1024px){
  .evo-grid--3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .evo-grid--works{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .evo-grid--alc{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .evo-grid--stats{ grid-template-columns: repeat(2, minmax(0,1fr)); }

  .evo-contact__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
  .evo-hero__inner{
    grid-template-columns:1fr;
    gap:24px;
    padding-top: clamp(40px, 7vw, 72px);
    padding-bottom: clamp(64px, 9vw, 96px);
  }
  .evo-hero__right{ justify-content:flex-start; }
  .evo-hero__features{ max-width: 680px; }

  .evo-hero__title{
    font-size: clamp(38px, 8.5vw, 52px);
    line-height: 1.08;
  }
  .evo-hero__subtitle{ font-size: 15px; }
  .evo-hero__stats{ grid-template-columns: 1fr; max-width: 520px; }
  .evo-hero__cta{ flex-wrap:wrap; }
  .evo-hero__left .btn{ width:100%; min-width:0; }
  .evo-hero__ui{ bottom: 12px; }
}
@media (max-width: 640px){
  .evo-section{ padding: 64px 0; }
  .evo-section__head{ text-align:left; margin-bottom: 22px; }

  .evo-grid--3,
  .evo-grid--works,
  .evo-grid--pricing,
  .evo-grid--alc,
  .evo-grid--stats{ grid-template-columns: 1fr; }

  .evo-section--stats,
  .evo-section--pricing,
  .evo-section--works,
  .evo-section--testimonials,
  .evo-section--a-la-carte,
  .evo-section--contact{ padding: 72px 0; }

  .site-footer{ padding: 60px 0 22px; }
  .site-footer__top{ grid-template-columns: 1fr; }
  .site-footer__bottom{ flex-direction: column; align-items: flex-start; }
  .site-footer__legal{ justify-content:flex-start; }

  .evo-testi__track{ grid-auto-columns: 100%; }
  .evo-testi__ui{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 1024px){
  .evo-testi__track{
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}


/* ======================================================
   16) PATCHES (LATEST) — keep all new fixes here
   ====================================================== */

/* Anti overflow horizontal (single place) */
html, body{ overflow-x: hidden; }


/* ======================================================
   RESPONSIVE — Tablet / Mobile / Very small screens
   À COLLER TOUT EN BAS (PATCHES)
   Breakpoints:
   - <= 1024px : tablette
   - <= 900px  : bascule header mobile (déjà en partie)
   - <= 768px  : mobile
   - <= 480px  : très petit écran
   ====================================================== */

/* ------------------------------
   <= 1024px (Tablette)
-------------------------------- */
@media (max-width:1024px){

  /* Sections: un peu moins d’air */
  .evo-section{ padding:72px 0; }

  /* Grids → 2 colonnes */
  .evo-grid--3{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .evo-grid--works{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .evo-grid--alc{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .evo-grid--stats{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .evo-grid--pricing{ grid-template-columns:repeat(2, minmax(0,1fr)); }

  /* Contact: stack */
  .evo-contact__grid{ grid-template-columns:1fr !important; }
  .evo-contact__right{ justify-content:flex-start; }
  .evo-contact__panel{ width:100% !important; }

  /* Testimonials: 2 cartes */
  .evo-testi__track{
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  /* Footer: 2 colonnes */
  .site-footer__top{ grid-template-columns:1fr 1fr; }
  .site-footer__col--contact{ grid-column:1 / -1; }
}

/* ------------------------------
   <= 900px (Header mobile)
-------------------------------- */
@media (max-width:900px){
  .site-header__inner{ gap:12px; }
  .site-header__logo img{ height:32px; }
}

/* ------------------------------
   <= 768px (Mobile)
-------------------------------- */
@media (max-width:768px){

  /* Sections */
  .evo-section{ padding:64px 0; }
  .evo-section__head{
    text-align:left;
    margin:0 0 22px;
  }
  .evo-section__title,
  .evo-section h2.elementor-heading-title{
    font-size: clamp(26px, 6.8vw, 34px) !important;
    line-height:1.15;
    margin-bottom:10px;
  }
  .evo-section__subtitle,
  .evo-section__head p,
  .evo-section .elementor-widget-text-editor{
    font-size:15px !important;
    max-width: 60ch;
  }

  /* Tous les grids → 1 colonne */
  .evo-grid--3,
  .evo-grid--works,
  .evo-grid--alc,
  .evo-grid--stats,
  .evo-grid--pricing{
    grid-template-columns:1fr !important;
  }

  /* HERO */
  .evo-hero__inner{
    grid-template-columns:1fr !important;
    gap:22px !important;
    padding-top: clamp(36px, 7vw, 64px) !important;
    padding-bottom: clamp(64px, 10vw, 92px) !important;
  }
  .evo-hero__right{ justify-content:flex-start !important; }
  .evo-hero__title{
    font-size: clamp(36px, 9vw, 52px) !important;
    line-height:1.08;
  }
  .evo-hero__subtitle{ font-size:15px; }
  .evo-hero__cta{
    flex-wrap:wrap;
    gap:12px;
  }
  .evo-hero__left .btn{
    width:100%;
    min-width:0 !important;
  }
  .evo-hero__stats{
    grid-template-columns:1fr !important;
    max-width: 520px;
  }
  .evo-hero__features{
    padding:20px;
    border-radius:22px;
  }
  .evo-hero__features > .e-con{
    grid-template-columns:48px 1fr;
    padding:18px;
    border-radius:18px;
  }
  .evo-hero__feature-icon{
    width:48px;
    height:48px;
    border-radius:16px;
  }
  .evo-hero__ui{ bottom:12px; }

  /* Testimonials: 1 carte */
  .evo-testi__track{ grid-auto-columns: 100%; }

  /* Cards: un peu plus compact */
  .evo-service,
  .evo-pack,
  .evo-alc,
  .evo-testi__item{
    padding:18px;
  }
  .evo-pack{ min-height:auto; }

  /* Contact */
  .evo-section--contact{ padding:72px 0; }
  .evo-contact__title{
    font-size: clamp(28px, 7vw, 38px);
  }

  /* Footer */
  .site-footer{
    padding: 56px 0 20px;
  }
  .site-footer__top{ grid-template-columns:1fr; }
  .site-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .site-footer__legal{ justify-content:flex-start; }
}

/* ------------------------------
   <= 480px (Très petit écran)
-------------------------------- */
@media (max-width:480px){

  /* Header */
  .site-header__logo img{ height:30px; }
  .site-header__burger{
    width:42px;
    height:42px;
    border-radius:12px;
  }

  /* Buttons */
  .btn,
  .elementor-button.btn{
    min-height:52px;
    padding:0 18px !important;
    font-size:14px !important;
    border-radius:13px !important;
  }

  /* HERO */
  .evo-hero__badge{
    padding:10px 14px;
    font-size:11px;
  }
  .evo-hero__title{
    font-size: clamp(32px, 10vw, 44px) !important;
  }

  /* Typo section */
  .evo-section__title,
  .evo-section h2.elementor-heading-title{
    font-size: clamp(24px, 7.5vw, 30px) !important;
  }

  /* Contact form */
  .evo-contact__panel{ padding:18px; border-radius:20px; }
  .evo-form input[type="text"],
  .evo-form input[type="email"],
  .evo-form input[type="tel"],
  .evo-form textarea,
  .evo-form select{
    padding: 13px 13px;
    border-radius: 13px;
  }
  .evo-form input[type="submit"],
  .evo-form button[type="submit"],
  .evo-form .elementor-button{
    min-height:52px;
    border-radius:13px !important;
    font-size:14px !important;
  }

  /* Footer socials: plus petit */
  .site-footer__social a{
    width:40px;
    height:40px;
    border-radius:14px;
  }
}

/* ======================================================
   ULTRA COMPACT — <= 360px (mini mobiles)
   À COLLER TOUT EN BAS (PATCHES)
   Objectifs :
   - densité + lisibilité
   - CTA full width
   - slider UI plus discret
   ====================================================== */

@media (max-width:360px){

  /* Global spacing */
  .evo-section{ padding:56px 0; }
  .evo-section__inner{ padding-inline: 18px; } /* un peu moins que --gutter */

  /* Titles / text */
  .evo-section__title,
  .evo-section h2.elementor-heading-title{
    font-size: 24px !important;
    line-height: 1.16;
    margin-bottom: 8px;
  }
  .evo-section__subtitle,
  .evo-section__head p,
  .evo-section .elementor-widget-text-editor{
    font-size: 14px !important;
    line-height: 1.55;
  }

  /* Header */
  .site-header__inner{ padding-inline: 18px; }
  .site-header__logo img{ height: 28px; }
  .site-header__burger{
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .site-header__burger span{ width: 16px; }

  /* Buttons (global) */
  .btn,
  .elementor-button.btn{
    min-height: 50px;
    padding: 0 16px !important;
    font-size: 13.5px !important;
    border-radius: 12px !important;
  }

  /* HERO */
  .evo-hero__inner{
    padding-top: 34px !important;
    padding-bottom: 78px !important; /* laisse de l’air pour UI dots */
    padding-inline: 18px !important;
    gap: 18px !important;
  }

  .evo-hero__badge{
    padding: 9px 12px;
    font-size: 10.5px;
    letter-spacing: .05em;
    margin-bottom: 12px;
  }

  .evo-hero__title{
    font-size: 34px !important;
    line-height: 1.07;
    margin-bottom: 12px;
  }

  .evo-hero__subtitle{
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .evo-hero__cta{
    gap: 10px;
    margin-bottom: 18px;
  }

  .evo-hero__left .btn{
    width: 100%;
    min-width: 0 !important;
  }

  .evo-hero__stats{
    gap: 12px;
    margin-top: 8px;
  }
  .evo-hero__stats > *{
    padding: 14px 14px 12px;
    border-radius: 16px;
  }
  .evo-hero__stat-value{ font-size: 16px; }
  .evo-hero__stat-label{ font-size: 13px; }

  /* Features (hero right panel) */
  .evo-hero__features{
    padding: 16px;
    border-radius: 20px;
  }
  .evo-hero__features > .e-con{
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }
  .evo-hero__feature-icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
  .evo-hero__feature-text{
    font-size: 14px;
    line-height: 1.5;
  }

  /* Slider UI = plus discret */
  .evo-hero__ui{
    bottom: 10px;
    gap: 10px;
    padding-inline: 18px;
  }
  .evo-hero__arrow{
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 20px;
  }
  .evo-hero__dots{
    padding: 8px 10px;
  }
  .evo-hero__dot{
    width: 8px;
    height: 8px;
  }

  /* Cards / blocks */
  .evo-service,
  .evo-pack,
  .evo-alc,
  .evo-work,
  .evo-testi__item{
    border-radius: 16px;
  }

  .evo-service,
  .evo-pack,
  .evo-alc,
  .evo-testi__item{
    padding: 16px;
  }

  .evo-service__title{ font-size: 18px; }
  .evo-service__desc{ font-size: 13.5px; }

  /* Works media ratio slightly taller to avoid tiny visuals */
  .evo-work__media{ aspect-ratio: 16/11; }
  .evo-work__body{ padding: 14px 14px 16px; }

  /* Testimonials UI stack */
  .evo-testi__ui{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .evo-testi__arrow{
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  /* Contact */
  .evo-section--contact{ padding: 64px 0; }
  .evo-contact__title{
    font-size: 28px;
    line-height: 1.14;
  }
  .evo-contact__subtitle{
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .evo-contact__panel{
    padding: 16px;
    border-radius: 20px;
  }

  .evo-form input[type="text"],
  .evo-form input[type="email"],
  .evo-form input[type="tel"],
  .evo-form textarea,
  .evo-form select{
    padding: 12px 12px;
    border-radius: 12px;
    font-size: 13.5px;
  }
  .evo-form select{ padding-right: 40px; }
  .evo-form textarea{ min-height: 110px; }

  .evo-form input[type="submit"],
  .evo-form button[type="submit"],
  .evo-form .elementor-button{
    min-height: 50px;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  /* Footer */
  .site-footer{ padding: 50px 0 18px; }
  .site-footer__inner{ padding-inline: 18px; }
  .site-footer__desc{ font-size: 13.5px; }
  .site-footer__links a{ font-size: 13.5px; }
  .site-footer__social a{
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }
}

/* ======================================================
   LOW HEIGHT SAFETY (ex: mobile landscape)
   - Evite une hero trop haute + UI coupée
   ====================================================== */
@media (max-height:520px) and (max-width:900px){
  .evo-hero--slider{ min-height: 520px; }
  .evo-hero__inner{
    padding-top: 28px !important;
    padding-bottom: 68px !important;
  }
  .evo-hero__ui{ bottom: 8px; }
}
