html {
  scroll-behavior: smooth;
}

:root{
  --font: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  --bg-hero: #0e2b40;            /* bleu nuit pour la zone titre */
  --bg-nav: #0e3350;             /* bleu foncé barre nav */
  --bg-hero-deep: #0a2233;       /* variante hero */
  --bg: #070b12;                 /* fond sombre des sections */
  --panel: #0e1624;
  --text-light: #ffffff;
  --text-dim: #e6eef5;
  --text: #e6eef5;
  --muted: #cbd6e2;
  --accent: #ca1744df;           /* rose fuchsia pour séparateurs */
  --accent-2: #4bd4ff;
  --underline: currentColor;     /* soulignement = couleur du texte */
  --gap: 28px;                   /* espacement horizontal entre liens */
  --nav-height: 64px;
  --underline-height: 2px;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 14px;
  --card-bg: #0f3a5a;
  --anim-fast: .32s;
  --anim-medium: .68s;
  --anim-slow: 1.35s;
  --anim-glow: 7s;
  --ease-out: cubic-bezier(.16,.84,.44,1);
  --ease-in-out: cubic-bezier(.83,0,.17,1);
}

/* Reset léger */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  background-color: #050b12;
  color: var(--text-dim);
  animation: subtle-fade var(--anim-medium) var(--ease-out) both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes subtle-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fade-slide-up {
  from { opacity: 0; transform: translate3d(0, 26px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes float-bob {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}
@keyframes gradient-pan {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes sheen-sweep {
  0% { transform: translateX(-120%); opacity: 0; }
  40% { opacity: .8; }
  100% { transform: translateX(120%); opacity: 0; }
}
@keyframes glass-pulse {
  0%, 100% { box-shadow: 0 24px 46px rgba(0,0,0,.45); transform: translateY(0) scale(1); }
  50% { box-shadow: 0 32px 58px rgba(0,0,0,.58); transform: translateY(-6px) scale(1.02); }
}
@keyframes card-glow {
  0%, 100% { opacity: .18; }
  50% { opacity: .48; }
}
@keyframes blink-cursor {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .elementor-nav-menu > li,
  .hero-video__inner > *,
  .section-intro__inner > *,
  .section-intro__list li,
  .promo-count__inner > *,
  .countdown .cd-box,
  .tg-card,
  .pw-item{
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Bandeau supérieur (titre centré) */
.top-hero{
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 60%) , var(--bg-hero);
  color: var(--text-light);
  text-align: center;
  padding: 16px 12px 22px;
  animation: fade-slide-up var(--anim-medium) var(--ease-out) both;
}
.top-hero__title{
  margin: 0;
  letter-spacing: .06em;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 28px);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.top-hero__title.typing::after{
  content: "|";
  display: inline-block;
  margin-left: 4px;
  color: var(--accent);
  font-weight: 300;
  animation: blink-cursor 1s step-end infinite;
}
.hero-video__subtitle .accent{
  position: relative;
  display: inline-block;
  min-width: 200px;
  text-align: left;
}
.hero-video__subtitle .accent.typing::after{
  content: "|";
  display: inline-block;
  margin-left: 4px;
  color: var(--accent);
  font-weight: 300;
  animation: blink-cursor 1s step-end infinite;
}

/* Barre de navigation style Elementor */
.elementor-nav-menu__container{
  background: var(--bg-nav);
  position: relative;
  z-index: 5;
  animation: fade-slide-up var(--anim-medium) var(--ease-out) both;
  animation-delay: .12s;
}

.nav-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  color: var(--text-light);
  padding: 12px 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color .2s ease;
}
.nav-toggle:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}
.nav-toggle:hover{
  background-color: rgba(255,255,255,.06);
}
.nav-toggle__bar{
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-active .nav-toggle__bar:nth-of-type(1){
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle__bar:nth-of-type(2){
  opacity: 0;
}
.nav-toggle.is-active .nav-toggle__bar:nth-of-type(3){
  transform: translateY(-6px) rotate(-45deg);
}

.elementor-nav-menu{
  /* Push the nav block to the right of the page and align items to the end */
  margin: 0 0 0 auto; /* instead of center (0 auto) */
  padding: 0 20px;
  height: var(--nav-height);
  max-width: 1280px;
  display: flex;
  justify-content: flex-end; /* align items to the right inside the flex container */
  align-items: center;
  list-style: none;
  gap: var(--gap);
  overflow-x: auto;
  scrollbar-width: none;
}
.elementor-nav-menu::-webkit-scrollbar{ display:none; }

/* Items et liens */
.menu-item{
  position: relative;
  display: flex;
  align-items: center;
}
.elementor-item{
  position: relative;
  display: inline-block;
  color: var(--text-dim);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 0;
  transition: color .2s ease;
}
.elementor-item:hover,
.elementor-item:focus{
  color: var(--text-light);
  outline: none;
}

/* Séparateurs verticaux roses entre certains items */
.with-sep{
  padding-left: var(--gap);
}
.with-sep::before{
  content:"";
  position: absolute;
  left: calc(0px - (var(--gap)/2));
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
}

/* Effet Elementor: pointer underline + animation fade */
.e--pointer-underline .elementor-item::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  width:0;
  height: var(--underline-height);
  background: var(--underline);
  transform: translateX(-50%);
  opacity:0;
  transition: width .25s ease, opacity .25s ease;
}

/* Au hover/focus: affiche la ligne */
.e--pointer-underline.e--animation-fade .elementor-item:hover::after,
.e--pointer-underline.e--animation-fade .elementor-item:focus::after{
  width:100%;
  opacity:1;
}

/* État actif identique Elementor */
.elementor-item.elementor-item-active::after{
  width:100%;
  opacity:1;
}
.current-menu-item > .elementor-item{
  color: var(--text-light);
}

/* Responsif */
@media (max-width: 960px){
  .elementor-nav-menu{
    gap: 18px;
    height: 58px;
  }
  .with-sep{
    padding-left: 18px;
  }
  .with-sep::before{
    height: 14px;
    left: -9px;
  }
}
@media (max-width: 780px){
  .elementor-nav-menu__container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }
  .nav-toggle{
    display: inline-flex;
  }
  .elementor-nav-menu{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-nav);
    height: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .32s ease, opacity .24s ease;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .elementor-nav-menu li{
    width: 100%;
  }
  .elementor-item{
    width: 100%;
    padding: 12px 0;
  }
  .with-sep{
    padding-left: 0;
  }
  .with-sep::before{
    display: none;
  }
  .elementor-nav-menu__container.is-open .elementor-nav-menu{
    max-height: 420px;
    opacity: 1;
    padding: 12px 20px 18px;
  }
}
@media (max-width: 560px){
  .top-hero__title{
    letter-spacing: .04em;
    font-weight: 800;
  }
  .elementor-item{
    font-size: 12px;
    font-weight: 800;
  }
}

/* Section HERO vidéo */
.hero-video{
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 58%),
    var(--bg-hero-deep);
  color: var(--text-light);
  padding: 26px 16px 28px;
  text-align: center;
}
.hero-video__inner{
  max-width: 940px;
  margin: 0 auto;
  animation: fade-slide-up var(--anim-medium) var(--ease-out) both;
}
.hero-video__inner > *{
  opacity: 0;
  animation: fade-slide-up var(--anim-medium) var(--ease-out) forwards;
}
.hero-video__inner > *:nth-child(1){ animation-delay: .12s; }
.hero-video__inner > *:nth-child(2){ animation-delay: .18s; }
.hero-video__inner > *:nth-child(3){ animation-delay: .24s; }
.hero-video__inner > *:nth-child(4){ animation-delay: .3s; }
.hero-video__inner > *:nth-child(5){ animation-delay: .36s; }
.hero-video__inner > *:nth-child(6){ animation-delay: .42s; }
.hero-video__inner > *:nth-child(7){ animation-delay: .48s; }
.hero-video__title{
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-video__subtitle{
  margin: 0;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 14px;
}
.hero-video__subtitle .accent{ color: var(--accent); }

.hero-video__underline{
  display: inline-block;
  width: 120px;
  height: 2px;
  background: var(--accent);
  margin: 12px auto 16px;
  border-radius: 2px;
}

/* Player avec cadre et ombre, ratio 16:9 */
.player-frame{
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 6px;
  margin: 0 auto 10px;
}
.player{
  display: block;
  width: min(860px, 100%);
  aspect-ratio: 16 / 9;
  background: #082233;
  border-radius: calc(var(--radius) - 4px);
}

/* Hint + CTA */
.hero-video__hint{
  margin: 10px 0 8px;
  color: var(--text-dim);
  font-size: 12.5px;
  letter-spacing: .02em;
}
.hero-video__cta{
  margin-bottom: 6px;
}
.btn{
  display: inline-block;
  position: relative;
  padding: 10px 18px;
  border-radius: 12px 0px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  overflow: hidden;
  transition: transform .2s var(--ease-out), filter .2s var(--ease-out), box-shadow .25s var(--ease-out);
  will-change: transform, filter;
}
.btn-primary{
  background: var(--accent);
  color: #ffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  box-shadow: 0 18px 36px rgba(255,43,122,.35);
  animation: gradient-pan 8s var(--ease-in-out) infinite;
}
.btn-primary::before{
  content:"";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 60%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 75%);
  opacity: .8;
  pointer-events: none;
}
.btn-primary::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 70%);
  transform: translateX(-120%);
  animation: sheen-sweep 3.4s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary:hover{
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(255,43,122,.45);
}
.btn-primary:active{
  transform: translateY(0);
}

/* Section intro */
.section-intro{
  position: relative;
  padding: clamp(70px, 18vw, 110px) 16px clamp(60px, 12vw, 100px);
  color: var(--text-dim);
  background:
    linear-gradient(110deg, rgba(4,16,30,0.72) 0%, rgba(9,28,48,0.84) 45%, rgba(12,42,66,0.88) 100%),
    url('fbe26ac388ed1e6b0c2b749aba0eb5ed.jpg') center/cover no-repeat;
  overflow: hidden;
  animation: fade-slide-up var(--anim-slow) var(--ease-out) both;
}
.section-intro::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 15%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 55%);
  opacity: .4;
  animation: gradient-pan 20s linear infinite;
  background-size: 180% 180%;
}
.section-intro__inner{
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: clamp(26px, 6vw, 40px);
}
.section-intro__inner > *{
  opacity: 0;
  animation: fade-slide-up var(--anim-medium) var(--ease-out) forwards;
}
.section-intro__inner > *:nth-child(1){ animation-delay: .18s; }
.section-intro__inner > *:nth-child(2){ animation-delay: .28s; }
.section-intro__inner > *:nth-child(3){ animation-delay: .38s; }
.section-intro__panel{
  position: relative;
  background: linear-gradient(130deg, rgba(6,18,32,0.82), rgba(12,40,65,0.74));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  text-align: left;
  color: var(--text-dim);
  overflow: hidden;
}
.section-intro__panel::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 60%);
  opacity: .4;
  mix-blend-mode: screen;
  animation: sheen-sweep 8s ease-in-out infinite;
}
.section-intro__list{
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.7;
}
.section-intro__list li{
  opacity: 0;
  animation: fade-slide-up var(--anim-medium) var(--ease-out) forwards;
}
.section-intro__list li:nth-child(1){ animation-delay: .44s; }
.section-intro__list li:nth-child(2){ animation-delay: .5s; }
.section-intro__list li:nth-child(3){ animation-delay: .56s; }
.section-intro__list li:nth-child(4){ animation-delay: .62s; }
.section-intro__list li:nth-child(5){ animation-delay: .68s; }
.section-intro__list li:nth-child(6){ animation-delay: .74s; }
.section-intro__header{
  text-align: center;
  color: var(--text-light);
}
.section-intro__line{
  display: block;
  width: 120px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 16px;
  border-radius: 2px;
}
.section-intro__title{
  margin: 0 0 14px;
  color: var(--text-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: clamp(18px, 2.4vw, 32px);
}
.section-intro__lead{
  margin: 0 0 14px;
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.75;
  color: var(--text-dim);
}
.section-intro__note{
  margin: 0 0 10px;
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 600;
  color: var(--text-light);
}
.section-intro__warning{
  margin: 0;
  font-size: clamp(14px, 1.7vw, 17px);
  color: #ffd966;
  font-weight: 700;
}
.section-intro__hint{
  margin: 0 0 16px;
  color: var(--text-dim);
  font-size: clamp(13px, 1.5vw, 15px);
  letter-spacing: .02em;
}
.section-intro__footer{
  text-align: center;
}

/* Responsif */
@media (max-width: 960px){
  .player{ width: 100%; }
}

/* Fond photo assombri réutilisable */
.bg-photo{
  background:
    linear-gradient(0deg, rgba(10,34,51,0.85), rgba(10,34,51,0.85)),
    url('https://images.unsplash.com/photo-1520975916090-3105956dac38?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  color: #e6eef5;
}

/* Relances CTA */
.cta-repeat{
  text-align: center;
  padding: 36px 16px 30px;
}
.cta-repeat__inner{
  max-width: 880px;
  margin: 0 auto;
}
.cta-repeat__text{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .02em;
}

/* Bloc accompagnement */
.assist-block{
  text-align: center;
  padding: 30px 16px 24px;
}
.assist-block__inner{ max-width: 900px; margin: 0 auto; }
.assist-block__text{
  margin: 0;
  font-size: 13px;
}
.assist-block__line{
  display: block;
  width: 120px;
  height: 2px;
  background: #ca1744df;
  border-radius: 2px;
  margin: 14px auto 0;
}

/* Section promo: arrière-plan sombre type hero */
.promo-count{
  position: relative;
  padding: clamp(80px, 18vw, 120px) 16px clamp(70px, 14vw, 110px);
  color: var(--text-dim);
  background:
    linear-gradient(128deg, rgba(4,16,28,0.88) 0%, rgba(10,30,52,0.92) 46%, rgba(16,44,74,0.95) 100%),
    url('https://images.unsplash.com/photo-1533236897111-3e94666b2edf?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.promo-count::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 110% at 50% -10%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 60%);
  opacity: .5;
  background-size: 200% 200%;
  animation: gradient-pan 24s linear infinite;
}
.promo-count__inner{
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: clamp(26px, 6vw, 42px);
  justify-items: center;
}
.promo-count__inner > *{
  opacity: 0;
  animation: fade-slide-up var(--anim-medium) var(--ease-out) forwards;
}
.promo-count__inner > *:nth-child(1){ animation-delay: .16s; }
.promo-count__inner > *:nth-child(2){ animation-delay: .24s; }
.promo-count__inner > *:nth-child(3){ animation-delay: .32s; }
.promo-count__inner > *:nth-child(4){ animation-delay: .4s; }
.promo-count__inner > *:nth-child(5){ animation-delay: .48s; }
.promo-count__inner > *:nth-child(6){ animation-delay: .56s; }
.promo-count__intro{
  margin: 0;
  max-width: 820px;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.8;
  color: var(--text-dim);
}
.promo-count__title{
  margin: 0;
  color: var(--text-light);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: clamp(24px, 3.4vw, 44px);
}
.countdown{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  margin: 0;
  padding: 0;
}
.cd-box{
  position: relative;
  min-width: 134px;
  padding: 28px 26px 24px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(5,24,48,0.9) 0%, rgba(18,68,120,0.82) 100%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 46px rgba(0,0,0,.45);
  overflow: hidden;
  animation: glass-pulse var(--anim-glow) var(--ease-in-out) infinite;
}
.cd-box::before{
  content:"";
  position: absolute;
  inset: 6px 10px auto 10px;
  height: 38%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 100%);
  opacity: .35;
  transform: translateX(-120%);
  animation: sheen-sweep 7s ease-in-out infinite;
}
.cd-box::after{
  content:"";
  position: absolute;
  inset: -14px;
  border-radius: 34px;
  background: radial-gradient(60% 70% at 50% 0%, rgba(75,212,255,.26), rgba(75,212,255,0) 62%);
  filter: blur(16px);
  opacity: .6;
  z-index: -1;
}
.cd-num{
  position: relative;
  z-index: 1;
  display: block;
  color: #ffffff;
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 40px);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 3px 10px rgba(0,0,0,.35);
}
.cd-label{
  position: relative;
  z-index: 1;
  display: block;
  color: #d7eafb;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.promo-count__hint{
  margin: 0;
  color: var(--text-light);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(16px, 2.2vw, 22px);
}
.promo-count__cta-hint{
  margin: 0;
  color: var(--text-dim);
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: .02em;
}
@media (max-width: 960px){
  .cd-box{ min-width: 116px; padding: 24px 22px 20px; }
}
@media (max-width: 620px){
  .countdown{ gap: 12px; }
  .cd-box{ flex: 1 1 calc(50% - 12px); min-width: 140px; }
}


/* En-tête des témoignages */
.testi-head{
  background: #0a2233;
  color:#fff;
  text-align:center;
  padding: 18px 16px 24px;
}
.testi-head__inner{ max-width: 980px; margin: 0 auto; }
.testi-head__legend{
  margin: 0 0 6px;
  font-size: 12px;
  color: #cbd6e2;
}
.testi-head__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 18px;
}

/* Countdown état terminé */
.countdown.is-over,
.countdown.is-over .cd-box{
  opacity:.6;
}


/* En-tête */
.testimonials-wrap{
  background: var(--bg);
  padding: 20px 16px 40px;
}
.tg-head{ text-align:center; margin-bottom: 14px; }
.tg-legend{ margin: 0 0 6px; color: #9fb0c4; font-size: 12px; }
.tg-title{
  margin: 0; color: #fff; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; font-size: 20px;
}
.tg-title::before{
  content:""; display:block; width: 140px; height: 2px; background: var(--accent); margin: 8px auto 0; border-radius: 2px;
}

/* Layout 2 colonnes: sidebar fixe + grille */
.tg-layout{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: 26px;
}

/* Sidebar */
.tg-sidebar{
  position: sticky;
  top: 80px;
  align-self: start;
  padding: 26px 20px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(160deg, rgba(202,23,68,.18) 0%, rgba(46,16,45,.52) 60%, rgba(12,38,68,.65) 100%),
    rgba(10,18,32,.85);
  box-shadow: 0 26px 48px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
  overflow: hidden;
  animation: fade-slide-up var(--anim-slow) var(--ease-out) both;
}
.tg-sidebar::before{
  content:"";
  position: absolute;
  inset: -45% -60% 30% -60%;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(255,43,122,.45), rgba(255,43,122,0) 70%),
    radial-gradient(70% 80% at 50% 100%, rgba(75,212,255,.32), rgba(75,212,255,0) 70%);
  opacity: .55;
  filter: blur(36px);
  pointer-events: none;
  animation: card-glow var(--anim-glow) ease-in-out infinite;
}
.tg-side-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.btn-pill{
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--accent) 0%, #ff4f9a 45%, #5c2fff 100%);
  background-size: 220% 220%;
  box-shadow: 0 18px 34px rgba(255,43,122,.35), inset 0 -10px 20px rgba(0,0,0,.25);
  transition: transform .18s var(--ease-out), filter .18s var(--ease-out), box-shadow .22s var(--ease-out);
  animation: gradient-pan 9s var(--ease-in-out) infinite;
}
.btn-pill::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 70%);
  transform: translateX(-120%);
  animation: sheen-sweep 4.1s ease-in-out infinite;
  opacity: .75;
  pointer-events: none;
}
.btn-pill:hover{
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0,153,255,.45), inset 0 -10px 24px rgba(0,0,0,.2);
}
.btn-pill:active{
  transform: translateY(0);
}

/* Grille de témoignages (réutilise styles précédents) */
.tg-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1100px){
  .tg-layout{ grid-template-columns: 1fr; }
  .tg-sidebar{ display: none; }
  .tg-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .tg-grid{ grid-template-columns: 1fr; }
}

/* Cartes + hovers (reprend les styles donnés) */
.tg-card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius: 14px; overflow: hidden; position: relative; isolation: isolate;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  opacity: 0;
  animation: fade-slide-up var(--anim-medium) var(--ease-out) forwards;
  will-change: transform, filter;
}
.tg-card::after{
  content:"";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background:
    radial-gradient(60% 70% at 20% 0%, rgba(255,43,122,.22), rgba(255,43,122,0) 70%),
    radial-gradient(60% 70% at 80% 100%, rgba(75,212,255,.22), rgba(75,212,255,0) 70%);
  opacity: .18;
  pointer-events: none;
  animation: card-glow var(--anim-glow) ease-in-out infinite;
  z-index: -1;
}
.tg-card:nth-child(1){ animation-delay: .18s; }
.tg-card:nth-child(2){ animation-delay: .24s; }
.tg-card:nth-child(3){ animation-delay: .3s; }
.tg-card:nth-child(4){ animation-delay: .36s; }
.tg-card:nth-child(5){ animation-delay: .42s; }
.tg-card:nth-child(6){ animation-delay: .48s; }
.tg-media{ display:block; position:relative; color: var(--text); text-decoration:none; }
.tg-media img{ width:100%; aspect-ratio:1/1; object-fit:cover; transform:scale(1); transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s; filter: saturate(.95) contrast(1.05); }
.tg-gradient{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6)); opacity:.85; transition: opacity .35s ease; pointer-events:none; }
.tg-neon{ position:absolute; inset:-1px; border-radius:16px; background:
  radial-gradient(60% 60% at 50% 0%, rgba(255,43,122,.25), rgba(255,43,122,0) 60%),
  radial-gradient(60% 60% at 50% 100%, rgba(75,212,255,.25), rgba(75,212,255,0) 60%);
  opacity:0; filter: blur(10px); transition: opacity .35s ease; z-index:-1; }
.tg-play{ position:absolute; inset:0; display:grid; place-items:center; pointer-events:none; }
.tg-play__btn{ width:58px; height:58px; border-radius:999px; background:
  radial-gradient(60% 60% at 40% 35%, rgba(255,255,255,.85), rgba(255,255,255,0) 60%),
  var(--accent);
  box-shadow: 0 12px 30px rgba(255,43,122,.45), inset 0 -6px 16px rgba(0,0,0,.35); position:relative; }
.tg-play__btn::before{ content:""; position:absolute; left:22px; top:18px; border-style:solid; border-width:11px 0 11px 16px; border-color: transparent transparent transparent #0e0f1a; }
.tg-play__btn::after{ content:""; position:absolute; inset:-6px; border-radius:999px; border:2px solid rgba(255,43,122,.55); opacity:0; transform:scale(.8); }
@keyframes pulse{ 0%{opacity:0; transform:scale(.8);} 40%{opacity:1; transform:scale(1.15);} 100%{opacity:0; transform:scale(1.35);} }
.tg-caption{ position:absolute; left:12px; right:12px; bottom:12px; padding:8px 10px; border-radius:10px; background: linear-gradient(180deg, rgba(14,22,36,.8), rgba(14,22,36,.9)); color:#fff; font-weight:900; letter-spacing:.03em; text-transform:uppercase; font-size:12px; transform: translateY(6px); opacity:.95; transition: transform .35s ease, opacity .35s ease; }
.tg-card:hover img{ transform:scale(1.06); filter:saturate(1.05) contrast(1.08); }
.tg-card:hover .tg-gradient{ opacity:.65; }
.tg-card:hover .tg-neon{ opacity:1; }
.tg-card:hover .tg-caption{ transform:translateY(0); opacity:1; }
.tg-card:hover .tg-play__btn::after{ animation:pulse 1.6s ease-out infinite; }
.tg-media:focus-visible{ outline:2px solid var(--accent-2); outline-offset:4px; }


:root{
  --bg: #070b12;
  --panel: #0e1624;
  --accent: #ca1744df;
;
  --text: #e6eef5;
}

.proofwall{
  background: var(--bg);
  padding: 28px 16px 40px;
  color: var(--text);
}
.pw-head{
  text-align: center;
  max-width: 940px;
  margin: 0 auto 18px;
}
.pw-title{
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 20px;
}
.pw-title::before{
  content:"";
  display:block;
  width: 140px;
  height: 2px;
  background: var(--accent);
  margin: 8px auto 10px;
  border-radius: 2px;
}
.pw-sub{
  margin: 0 0 8px;
  color: #9fb0c4;
  font-size: 12px;
}
.pw-cta-hint{
  margin: 0 0 10px;
  font-size: 13px;
}
.pw-cta-hint .u{ text-decoration: underline; text-underline-offset: 3px; }

/* Mur de preuves – grille fluide */
.pw-masonry{
  max-width: 1200px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;             /* base row height */
  gap: 16px;
}
@media (max-width: 980px){
  .pw-masonry{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}
@media (max-width: 620px){
  .pw-masonry{ grid-template-columns: 1fr; grid-auto-rows: 180px; }
}

/* Modifiers pour varier les hauteurs/largeurs */
.pw-item{ position: relative; overflow: hidden; border-radius: 14px; background: var(--panel); opacity: 0; animation: fade-slide-up var(--anim-medium) var(--ease-out) forwards; }
.pw-item:nth-child(1){ animation-delay: .16s; }
.pw-item:nth-child(2){ animation-delay: .22s; }
.pw-item:nth-child(3){ animation-delay: .28s; }
.pw-item:nth-child(4){ animation-delay: .34s; }
.pw-item:nth-child(5){ animation-delay: .4s; }
.pw-item:nth-child(6){ animation-delay: .46s; }
.pw-item:nth-child(7){ animation-delay: .52s; }
.pw-item:nth-child(8){ animation-delay: .58s; }
.pw-item:nth-child(9){ animation-delay: .64s; }
.pw-item:nth-child(10){ animation-delay: .7s; }
.pw-item:nth-child(11){ animation-delay: .76s; }
.pw-item:nth-child(12){ animation-delay: .82s; }
.pw-item:nth-child(13){ animation-delay: .88s; }
.pw-item:nth-child(14){ animation-delay: .94s; }
.pw-item:nth-child(15){ animation-delay: 1s; }
.pw-item:nth-child(16){ animation-delay: 1.06s; }
.pw-item:nth-child(17){ animation-delay: 1.12s; }
.pw-item:nth-child(18){ animation-delay: 1.18s; }
.pw-item:nth-child(19){ animation-delay: 1.24s; }
.pw-item:nth-child(20){ animation-delay: 1.3s; }
.pw-item:nth-child(21){ animation-delay: 1.36s; }
.pw-item:nth-child(22){ animation-delay: 1.42s; }
.pw-item:nth-child(23){ animation-delay: 1.48s; }
.pw-item:nth-child(24){ animation-delay: 1.54s; }
.pw-item:nth-child(25){ animation-delay: 1.6s; }
.pw-item:nth-child(26){ animation-delay: 1.66s; }
.pw-item:nth-child(27){ animation-delay: 1.72s; }
.pw-item:nth-child(28){ animation-delay: 1.78s; }
.pw-item:nth-child(29){ animation-delay: 1.84s; }
.pw-item:nth-child(30){ animation-delay: 1.9s; }

.pw-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s ease;
  filter: saturate(.95) contrast(1.05);
}

/* Overlay et lueur */
.pw-item::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%);
  opacity: .0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.pw-item::after{
  content:"";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background:
    radial-gradient(50% 70% at 50% 0%, rgba(255,43,122,.22), rgba(255,43,122,0) 60%),
    radial-gradient(50% 70% at 50% 100%, rgba(75,212,255,.22), rgba(75,212,255,0) 60%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: -1;
  animation: card-glow var(--anim-glow) ease-in-out infinite;
}

/* Hover effects */
.pw-item:hover img{ transform: scale(1.08); filter: saturate(1.05) contrast(1.08); }
.pw-item:hover::before{ opacity: .25; }
.pw-item:hover::after{ opacity: 1; }

/* Focus accessible */
.pw-item:focus-visible{ outline: 2px solid #4bd4ff; outline-offset: 3px; border-radius: 14px; }


.site-footer{
  background: var(--bg);
  color: var(--text);
}
.sf-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
}
@media (max-width: 900px){
  .sf-inner{ grid-template-columns: 1fr; }
}

/* Titres */
.sf-head{
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sf-head.accent{ color: var(--accent); }

/* Adresse */
.sf-block{ margin: 0 0 18px; }
.sf-country{
  margin: 0 0 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sf-line{
  margin: 2px 0;
  font-size: 16px;
  font-style: italic;
  letter-spacing: .01em;
  color: var(--muted);
}
.sf-link{
  color: var(--muted);
  text-decoration: none;
}
.sf-link:hover{ color: var(--text); text-decoration: underline; }
.sf-link--whatsapp{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25d366;
  font-weight: 700;
}
.sf-link--whatsapp:hover{
  color: #1ebe5d;
}
.sf-link--whatsapp i{
  font-size: 18px;
  color: currentColor;
}

/* Réseaux */
.sf-social{
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 14px 0 0;
  padding: 0;
}
.sf-ico{
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 999px;
  color: #0e0f14;
  background: radial-gradient(120% 180% at 20% 0%, rgba(255,255,255,.85), rgba(255,255,255,0) 55%), var(--accent);
  box-shadow: 0 8px 18px rgba(255,43,122,.3), inset 0 -8px 16px rgba(0,0,0,.25);
  text-decoration: none;
  font-weight: 900;
}
.sf-ico--whatsapp{
  background: radial-gradient(120% 180% at 20% 0%, rgba(255,255,255,.85), rgba(255,255,255,0) 55%), linear-gradient(135deg, #25d366 0%, #0f9d58 100%);
  color: #ffffff;
  font-weight: 800;
}
.sf-ico--whatsapp i{
  font-size: 18px;
  color: inherit;
}
.sf-ico--whatsapp:hover{
  filter: brightness(1.05);
}

/* Navigation */
.sf-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.sf-menu a{
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 15px;
}
.sf-menu a:hover{
  color: var(--accent);
}

/* Barre légale */
.sf-legal{
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 16px;
}
.sf-legal__inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sf-legal__menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}
.sf-legal__menu a{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.sf-legal__menu a:hover{ color: var(--text); }
.sf-copy{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-repeat,
.assist-block,
.testi-head,
.tg-head,
.proofwall{
  animation: fade-slide-up var(--anim-slow) var(--ease-out) both;
}

/* Styles pour les vidéos dans les cartes de témoignages */
.tg-media video{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transform: scale(1);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s;
  filter: saturate(.95) contrast(1.05);
  display: block;
  background: var(--panel);
}

.tg-card:hover video{
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.08);
}

/* Modal popup pour les vidéos */
.video-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--anim-fast) ease, visibility var(--anim-fast) ease;
  pointer-events: none;
}

.video-modal.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.video-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.video-modal__container{
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  z-index: 1;
  transform: scale(0.9);
  transition: transform var(--anim-fast) ease;
}

.video-modal.is-open .video-modal__container{
  transform: scale(1);
}

.video-modal__close{
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--anim-fast) ease, transform var(--anim-fast) ease;
  z-index: 2;
}

.video-modal__close:hover{
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.video-modal__close:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.video-modal__content{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.video-modal__player{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px){
  .video-modal__container{
    width: 95%;
    max-height: 85vh;
  }
  
  .video-modal__close{
    top: -35px;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
}

/* Modal popup pour les images */
.image-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--anim-fast) ease, visibility var(--anim-fast) ease;
  pointer-events: none;
}

.image-modal.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.image-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.image-modal__container{
  position: relative;
  width: 90%;
  max-width: 1400px;
  max-height: 90vh;
  z-index: 1;
  transform: scale(0.9);
  transition: transform var(--anim-fast) ease;
}

.image-modal.is-open .image-modal__container{
  transform: scale(1);
}

.image-modal__close{
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--anim-fast) ease, transform var(--anim-fast) ease;
  z-index: 2;
}

.image-modal__close:hover{
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.image-modal__close:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.image-modal__content{
  position: relative;
  width: 100%;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 90vh;
}

.image-modal__img{
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px){
  .image-modal__container{
    width: 95%;
    max-height: 85vh;
  }
  
  .image-modal__close{
    top: -35px;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  
  .image-modal__content{
    max-height: 85vh;
  }
  
  .image-modal__img{
    max-height: 85vh;
  }
}

