   :root{
  --electric-blue:#0066FF;
  --vivid-green:#00E676;
  --power-red:#FF2D2D;

  --white:#fff;
  --text:#eaeaea;
  --line:rgba(255,255,255,.12);

  --radius:16px;
  --shadow:0 18px 60px rgba(0,0,0,.35);
}

/* ===== Header modern ===== */
.site-header{
  position:fixed;
  top:0; left:0;
  width:100%;
  z-index:100;
  padding:14px 18px;
  background:transparent;
  border-bottom:1px solid transparent;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.site-header.scrolled{
  background: rgba(0,0,0,.78);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}

.header-inner{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand-logo{
  height: 110px;
  width:auto;
  display:block;
}

/* Desktop nav */
.nav-links{
  display:flex;
  gap:6px;
  align-items:center;
}

.nav-link{
  color:var(--white);
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
  font-weight:500;
  letter-spacing:.2px;
  position:relative;
  transition: background .18s ease, transform .18s ease;
}

.nav-link:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

/* subtle underline glow */
.nav-link::after{
  content:"";
  position:absolute;
  left:14px; right:14px;
  bottom:6px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, transparent, rgba(0,230,118,.8), transparent);
  opacity:0;
  transition: opacity .2s ease;
}
.nav-link:hover::after{ opacity:1; }

/* Actions */
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:700;
  border-radius:999px;
  padding:11px 18px;
  transition: transform .16s ease, filter .16s ease, background .16s ease, border-color .16s ease;
  user-select:none;
  white-space:nowrap;
}

.btn:active{ transform: scale(.98); }

.btn-primary{
  background: var(--electric-blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0,102,255,.25);
}

.btn-primary:hover{
  filter: brightness(1.05);
}

.btn-ghost{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
}

.btn-ghost:hover{
  background: rgba(255,255,255,.16);
}

.header-cta{}

/* Icon buttons */
.icon-btn{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: background .18s ease, transform .18s ease;
}

.icon-btn:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

/* Hide burger on desktop */
.burger{ display:none; }

/* ===== Overlay ===== */
.menu-overlay{
  position:fixed;
  inset:0;
  z-index:120;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  opacity:0;
  transition: opacity .25s ease;
}

.menu-overlay.show{
  opacity:1;
}

/* ===== Mobile Drawer ===== */
.mobile-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(92vw, 380px);
  z-index:130;
  background: rgba(10,10,10,.92);
  border-left:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform .28s ease;
  padding: 16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.mobile-drawer.open{
  transform: translateX(0%);
}

.drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.drawer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.drawer-logo{
  height:30px;
  width:auto;
}

.drawer-badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,230,118,.35);
  color: var(--vivid-green);
  background: rgba(0,230,118,.10);
}

.drawer-links{
  margin-top:4px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.drawer-link{
  color: var(--white);
  text-decoration:none;
  padding:14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.drawer-link:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  transform: translateX(2px);
}

.drawer-cta{
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.btn-full{
  width:100%;
  padding:14px 16px;
  border-radius: 14px;
}

.drawer-foot{
  margin: 6px 2px 0;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .nav-links{ display:none; }
  .burger{ display:inline-flex; }
  .header-cta{ display:none; } /* CTA disparaît sur mobile */
}

@media (max-width: 520px){
  .site-header{ padding: 12px 14px; }
  .icon-btn{ width:42px; height:42px; border-radius: 14px; }
}



/* ===== RESET MINI ===== */
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

  /* ===== HEADER ===== */
 

  /* ===== HERO ===== */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;            /* plein écran */
    overflow: hidden;
    padding: 0 24px;
  }

  .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;        /* responsive cover */
    z-index: 0;
  }

  /* overlay clair (comme ton ancien hero "clair") */
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.62); /* ajuste si tu veux +/moins de vidéo */
    z-index: 1;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding-top: 96px;         /* laisse la place du header fixed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.7);
    color: #111;
    font-size: 14px;
  }
  .pill__strong { font-weight: 700; }
  .pill__divider {
    width: 1px;
    height: 18px;
    background: rgba(0,0,0,0.15);
    display: inline-block;
  }
  .pill__rating { font-weight: 700; }

  .hero__title {
    margin: 16px 0 0;
    color: #111;
    font-weight: 800;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    max-width: 820px;
  }

  .hero__desc {
    margin-top: 16px;
    color: #52525b;
    font-size: 16px;
    line-height: 1.6;
    max-width: 620px;
  }

  .hero__actions {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  /* ===== BUTTONS ===== */
  .btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform .12s ease, opacity .12s ease, background .12s ease;
    text-align: center;
    white-space: nowrap;
  }
  .btn:active { transform: scale(0.98); }

  .btn-primary {
    background: #f97316;
    color: #fff;
    border-color: rgba(249,115,22,0.35);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.35);
  }
  .btn-primary:hover { opacity: 0.92; }

  .btn-ghost {
    background: rgba(255,255,255,0.55);
    color: #4b5563;
    border-color: rgba(255,255,255,0.9);
  }
  .btn-ghost:hover { opacity: 0.9; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .burger { display: inline-flex; }
  }

  @media (max-width: 768px) {
    .site-header { padding: 12px 16px; }
    .hero { padding: 0 16px; }
    .hero__content { padding-top: 86px; }
    .btn { width: 100%; max-width: 420px; }
  }

  /* =========================
   PALETTE COULEURS
========================= */
:root {
  --electric-blue: #0066FF;
  --vivid-green: #00E676;
  --power-red: #FF2D2D;
  --dark-text: #111;
  --light-text: #ffffff;
}

/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Urbanist', sans-serif;
}

/* =========================
   HEADER
========================= */


/* Liens du menu */
.site-header a {
  color: white;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}
/* ton header (transparent au départ) */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 16px 24px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* état au scroll : devient noir */
.site-header.scrolled{
  background: rgba(0,0,0,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

/* liens */
.site-header a{
  color: white;
  text-decoration: none;
}

/* bouton CTA desktop */
.header-cta{
  padding: 10px 18px;
  border-radius: 999px;
  background: #0066FF; /* bleu électrique */
  color: white;
  font-weight: 600;
  border: 0;
}

/* burger (mobile) */
.burger{
  display: none;
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
}

/* menu desktop */
.nav-links{
  display: flex;
  gap: 14px;
  align-items: center;
}

/* menu mobile (caché par défaut) */
.mobile-menu{
  display: none;
  position: fixed;
  top: 64px; /* sous le header */
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.92);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 24px;
  z-index: 49;
}

.mobile-menu.open{
  display: block;
}

.mobile-menu a{
  display: block;
  padding: 12px 0;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ✅ Responsive */
@media (max-width: 768px){
  .nav-links{ display: none; }       /* cache menu desktop */
  .burger{ display: inline-flex; }   /* montre burger */
  .header-cta{ display: none; }      /* cache CTA sur mobile */
}



.container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-text);
  padding: 6px 12px;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--electric-blue);
}

/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0 24px;
}

/* Video full screen */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay moderne */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,102,255,0.5),
    rgba(255,45,45,0.35)
  );
  z-index: 1;
}

/* Contenu centré */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Badge */
.pill {
  background: rgba(0,230,118,0.15);
  border: 1px solid var(--vivid-green);
  color: var(--vivid-green);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

/* Titre */
.hero__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: var(--light-text);
  margin-top: 20px;
  line-height: 1.1;
  max-width: 800px;
}

/* Description */
.hero__desc {
  margin-top: 20px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  line-height: 1.6;
  font-size: 17px;
}

/* =========================
   BUTTONS
========================= */
.hero__actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* Bouton principal */
.btn-primary {
  background: var(--electric-blue);
  color: white;
  box-shadow: 0 10px 20px rgba(0,102,255,0.3);
}

.btn-primary:hover {
  background: var(--power-red);
  transform: translateY(-2px);
}

/* Bouton secondaire */
.btn-ghost {
  border: 2px solid var(--vivid-green);
  color: var(--vivid-green);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--vivid-green);
  color: #000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero__content {
    padding-top: 90px;
  }

  .btn {
    width: 100%;
    max-width: 400px;
  }
}

/* Partenaires  ===========*/

 .partners-marquee{
  padding: 80px 18px;
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(0,102,255,.06), transparent 60%),
    radial-gradient(900px 520px at 88% 40%, rgba(0,230,118,.05), transparent 55%),
    #fff;
}

.partners-head{
  text-align:center;
  max-width: 820px;
  margin: 0 auto 26px;
}

.partners-head h2{
  margin:0;
  font-weight: 900;
  letter-spacing: -0.6px;
  color:#0b0f1a;
  font-size: clamp(26px, 2.4vw, 40px);
}

.partners-head p{
  margin:10px auto 0;
  color:#5b6475;
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
}

/* Marquee container */
.marquee{
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

/* Fade edges (premium) */
.marquee::before,
.marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 70px;
  z-index: 2;
  pointer-events:none;
}

.marquee::before{
  left:0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.marquee::after{
  right:0;
  background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}

/* Track animation */
.marquee__track{
  display:flex;
  align-items:center;
  gap: 18px;
  width: max-content;
  animation: marquee 18s linear infinite;
}

@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause au hover */
.marquee:hover .marquee__track{
  animation-play-state: paused;
}

/* Logo cards */
.marquee__item{
  width: 240px;
  height: 90px;
  display:flex;
  align-items:center;
  justify-content:center;

  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 25px rgba(15,23,42,.05);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.marquee__item img{
  max-width: 70%;
  max-height: 55px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05) opacity(.85);
  transition: filter .18s ease, transform .18s ease;
}

.marquee__item:hover{
  transform: translateY(-3px);
  border-color: rgba(0,102,255,.25);
  box-shadow:
    0 18px 55px rgba(0,102,255,.10),
    0 12px 30px rgba(15,23,42,.08);
}

.marquee__item:hover img{
  filter: grayscale(0) contrast(1.05) opacity(1);
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px){
  .partners-marquee{ padding: 60px 14px; }
  .marquee::before, .marquee::after{ width: 40px; }
  .marquee__item{ width: 180px; height: 76px; }
  .marquee__item img{ max-height: 45px; }
}


 /* Section stats - clean premium */
.stats{
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}

.stats__item{
  padding: 26px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 10px 25px rgba(0,0,0,0.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

/* Hover élégant */
.stats__item:hover{
  transform: translateY(-4px);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.12),
    0 10px 25px rgba(0,0,0,0.08);
}

/* Item 1 - Bleu électrique */
.stats__item:nth-child(1){
  border-color: rgba(0,102,255,0.25);
}
.stats__item:nth-child(1):hover{
  border-color: rgba(0,102,255,0.45);
  background: rgba(0,102,255,0.08);
  box-shadow:
    0 18px 45px rgba(0,102,255,0.18),
    0 10px 25px rgba(0,0,0,0.08);
}
.stats__item:nth-child(1) h3{
  color: #0066FF;
}

/* Item 2 - Vert vif */
.stats__item:nth-child(2){
  border-color: rgba(0,230,118,0.25);
}
.stats__item:nth-child(2):hover{
  border-color: rgba(0,230,118,0.45);
  background: rgba(0,230,118,0.08);
  box-shadow:
    0 18px 45px rgba(0,230,118,0.18),
    0 10px 25px rgba(0,0,0,0.08);
}
.stats__item:nth-child(2) h3{
  color: #00E676;
}

/* Item 3 - Rouge power */
.stats__item:nth-child(3){
  border-color: rgba(255,45,45,0.25);
}
.stats__item:nth-child(3):hover{
  border-color: rgba(255,45,45,0.45);
  background: rgba(255,45,45,0.08);
  box-shadow:
    0 18px 45px rgba(255,45,45,0.18),
    0 10px 25px rgba(0,0,0,0.08);
}
.stats__item:nth-child(3) h3{
  color: #FF2D2D;
}

/* Item 4 - Orange/Gold */
.stats__item:nth-child(4){
  border-color: rgba(255,165,0,0.25);
}
.stats__item:nth-child(4):hover{
  border-color: rgba(255,165,0,0.45);
  background: rgba(255,165,0,0.08);
  box-shadow:
    0 18px 45px rgba(255,165,0,0.18),
    0 10px 25px rgba(0,0,0,0.08);
}
.stats__item:nth-child(4) h3{
  color: #FFA500;
}

/* Texte description */
.stats__item p{
  font-size: 15px;
  line-height: 1.4;
  color: #5b6475;
}

/* Responsive: moins de padding sur petit écran */
@media (max-width: 480px){
  .stats__item{
    padding: 22px 14px;
    border-radius: 16px;
  }
}

/*Services section - clean premium */
  :root {
    --blue: #0066FF;
    --green: #00E676;
    --red: #FF2D2D;

    --bg: #ffffff;
    --ink: #0b0f1a;
    --muted: #5b6475;
    --line: rgba(15, 23, 42, .10);
    --card: #ffffff;
    --shadow: 0 18px 60px rgba(15, 23, 42, .10);
    --radius: 18px;
  }

  .services {
    background:
      radial-gradient(900px 520px at 12% 12%, rgba(0, 102, 255, .08), transparent 60%),
      radial-gradient(900px 520px at 88% 35%, rgba(0, 230, 118, .07), transparent 55%),
      var(--bg);
    padding: 90px 18px;
  }

  .services__wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  .services__head {
    text-align: left;
    max-width: 780px;
  }

  .services__pill {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, .18);
    background: rgba(0, 102, 255, .06);
    color: var(--blue);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .4px;
  }

  .services__title {
    margin: 14px 0 0;
    font-weight: 900;
    letter-spacing: -0.6px;
    color: var(--ink);
    font-size: clamp(28px, 2.7vw, 44px);
    line-height: 1.12;
  }

  .services__subtitle {
    margin-top: 12px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
  }

  .services__grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  /* Base card */
  .svc {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(15, 23, 42, .05);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
    position: relative;
  }

  .svc::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    opacity: 0;
    transition: opacity .22s ease;
    pointer-events: none;
  }

  .svc:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
  }

  /* Card 1 - Bleu électrique */
  .svc:nth-child(1) {
    border-color: rgba(0, 102, 255, .25);
  }

  .svc:nth-child(1)::before {
    background: linear-gradient(135deg, rgba(0, 102, 255, .08), transparent);
  }

  .svc:nth-child(1):hover {
    border-color: rgba(0, 102, 255, .45);
    box-shadow: 0 20px 60px rgba(0, 102, 255, .18), var(--shadow);
  }

  .svc:nth-child(1):hover::before {
    opacity: 1;
  }

  /* Card 2 - Vert vif */
  .svc:nth-child(2) {
    border-color: rgba(0, 230, 118, .25);
  }

  .svc:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(0, 230, 118, .08), transparent);
  }

  .svc:nth-child(2):hover {
    border-color: rgba(0, 230, 118, .45);
    box-shadow: 0 20px 60px rgba(0, 230, 118, .18), var(--shadow);
  }

  .svc:nth-child(2):hover::before {
    opacity: 1;
  }

  /* Card 3 - Rouge power */
  .svc:nth-child(3) {
    border-color: rgba(255, 45, 45, .25);
  }

  .svc:nth-child(3)::before {
    background: linear-gradient(135deg, rgba(255, 45, 45, .08), transparent);
  }

  .svc:nth-child(3):hover {
    border-color: rgba(255, 45, 45, .45);
    box-shadow: 0 20px 60px rgba(255, 45, 45, .18), var(--shadow);
  }

  .svc:nth-child(3):hover::before {
    opacity: 1;
  }

  /* Card 4 - Violet/Magenta */
  .svc:nth-child(4) {
    border-color: rgba(168, 85, 247, .25);
  }

  .svc:nth-child(4)::before {
    background: linear-gradient(135deg, rgba(168, 85, 247, .08), transparent);
  }

  .svc:nth-child(4):hover {
    border-color: rgba(168, 85, 247, .45);
    box-shadow: 0 20px 60px rgba(168, 85, 247, .18), var(--shadow);
  }

  .svc:nth-child(4):hover::before {
    opacity: 1;
  }

  /* Card 5 - Cyan */
  .svc:nth-child(5) {
    border-color: rgba(34, 211, 238, .25);
  }

  .svc:nth-child(5)::before {
    background: linear-gradient(135deg, rgba(34, 211, 238, .08), transparent);
  }

  .svc:nth-child(5):hover {
    border-color: rgba(34, 211, 238, .45);
    box-shadow: 0 20px 60px rgba(34, 211, 238, .18), var(--shadow);
  }

  .svc:nth-child(5):hover::before {
    opacity: 1;
  }

  /* Card 6 - Orange/Amber */
  .svc:nth-child(6) {
    border-color: rgba(251, 146, 60, .25);
  }

  .svc:nth-child(6)::before {
    background: linear-gradient(135deg, rgba(251, 146, 60, .08), transparent);
  }

  .svc:nth-child(6):hover {
    border-color: rgba(251, 146, 60, .45);
    box-shadow: 0 20px 60px rgba(251, 146, 60, .18), var(--shadow);
  }

  .svc:nth-child(6):hover::before {
    opacity: 1;
  }

  /* Media section */
  .svc__media {
    height: 180px;
    background: linear-gradient(135deg, #f5f6fa, #eef2ff);
    position: relative;
    overflow: hidden;
  }

  .svc:nth-child(1) .svc__media {
    background: linear-gradient(135deg, rgba(0, 102, 255, .12), rgba(0, 102, 255, .05));
  }

  .svc:nth-child(2) .svc__media {
    background: linear-gradient(135deg, rgba(0, 230, 118, .12), rgba(0, 230, 118, .05));
  }

  .svc:nth-child(3) .svc__media {
    background: linear-gradient(135deg, rgba(255, 45, 45, .12), rgba(255, 45, 45, .05));
  }

  .svc:nth-child(4) .svc__media {
    background: linear-gradient(135deg, rgba(168, 85, 247, .12), rgba(168, 85, 247, .05));
  }

  .svc:nth-child(5) .svc__media {
    background: linear-gradient(135deg, rgba(34, 211, 238, .12), rgba(34, 211, 238, .05));
  }

  .svc:nth-child(6) .svc__media {
    background: linear-gradient(135deg, rgba(251, 146, 60, .12), rgba(251, 146, 60, .05));
  }

  .svc__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .22s ease;
  }

  .svc:hover .svc__media img {
    transform: scale(1.05);
  }

  .svc__body {
    padding: 18px 16px 18px;
  }

  .svc__tag {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .3px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(15, 23, 42, .03);
    color: var(--ink);
  }

  .tag-blue {
    border-color: rgba(0, 102, 255, .22);
    color: var(--blue);
    background: rgba(0, 102, 255, .07);
  }

  .tag-green {
    border-color: rgba(0, 230, 118, .25);
    color: #0b7a3d;
    background: rgba(0, 230, 118, .08);
  }

  .tag-red {
    border-color: rgba(255, 45, 45, .22);
    color: #b01313;
    background: rgba(255, 45, 45, .08);
  }

  .tag-purple {
    border-color: rgba(168, 85, 247, .22);
    color: #7c3aed;
    background: rgba(168, 85, 247, .08);
  }

  .tag-cyan {
    border-color: rgba(34, 211, 238, .22);
    color: #0891b2;
    background: rgba(34, 211, 238, .08);
  }

  .tag-orange {
    border-color: rgba(251, 146, 60, .22);
    color: #c2410c;
    background: rgba(251, 146, 60, .08);
  }

  .svc__h3 {
    margin: 14px 0 0;
    color: var(--ink);
    font-weight: 850;
    font-size: 16px;
    letter-spacing: -0.2px;
  }

  .svc__p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
  }

  .svc__link {
    margin-top: 14px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    font-size: 13.5px;
    position: relative;
    transition: gap .18s ease;
  }

  .svc__link span {
    color: var(--blue);
    font-weight: 900;
    transition: transform .18s ease;
  }

  .svc:nth-child(1) .svc__link span {
    color: #0066FF;
  }

  .svc:nth-child(2) .svc__link span {
    color: #00E676;
  }

  .svc:nth-child(3) .svc__link span {
    color: #FF2D2D;
  }

  .svc:nth-child(4) .svc__link span {
    color: #a855f7;
  }

  .svc:nth-child(5) .svc__link span {
    color: #22d3ee;
  }

  .svc:nth-child(6) .svc__link span {
    color: #fb923c;
  }

  .svc:hover .svc__link span {
    transform: translateX(4px);
  }

  .services__cta {
    margin-top: 24px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(0, 102, 255, .05), rgba(0, 230, 118, .05));
    box-shadow: 0 12px 35px rgba(15, 23, 42, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .services__ctaText h3 {
    margin: 0;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -0.3px;
    font-size: 16px;
  }

  .services__ctaText p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
  }

  .btnMain {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    padding: 12px 20px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--green));
    box-shadow: 0 18px 45px rgba(0, 102, 255, .20);
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .btnMain:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px rgba(0, 230, 118, .22);
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .services__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 720px) {
    .services {
      padding: 70px 14px;
    }

    .services__grid {
      grid-template-columns: 1fr;
    }

    .svc__media {
      height: 170px;
    }

    .services__cta {
      flex-direction: column;
      align-items: stretch;
    }

    .btnMain {
      width: 100%;
    }
  }
  


/*Faq section - clean premium */

   :root{
    --blue:#0066FF;
    --green:#00E676;
    --red:#FF2D2D;

    --bg:#ffffff;
    --ink:#0b0f1a;
    --muted:#5b6475;
    --line:rgba(15,23,42,.10);
    --card:rgba(255,255,255,.92);
    --shadow:0 18px 60px rgba(15,23,42,.10);
    --radius:18px;
  }

  .faq{
    background:
      radial-gradient(900px 520px at 12% 10%, rgba(0,102,255,.06), transparent 60%),
      radial-gradient(900px 520px at 88% 35%, rgba(0,230,118,.05), transparent 55%),
      var(--bg);
    padding: 90px 18px;
    border-top: 1px solid rgba(15,23,42,.06);
    border-bottom: 1px solid rgba(15,23,42,.06);
  }

  .faq__wrap{
    max-width: 1200px;
    margin: 0 auto;
  }

  .faq__head{
    text-align: center;
    max-width: 780px;
    margin: 0 auto 26px;
  }

  .faq__icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin: 0 auto 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 14px 35px rgba(0,102,255,.18);
  }

  .faq__title{
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.6px;
    color: var(--ink);
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 1.15;
  }

  .faq__subtitle{
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 60ch;
  }

  .faq__grid{
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 14px;
    align-items: start;
  }

  /* ===== FAQ LIST ===== */
  .faq__list{
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(10px);
    overflow: hidden;
  }

  .faq-item{
    border-top: 1px solid rgba(15,23,42,.08);
    background: transparent;
  }
  .faq-item:first-child{ border-top: none; }

  .faq-item__summary{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px;
    cursor: pointer;
    user-select: none;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.2px;
  }

  /* hide default marker */
  .faq-item__summary::-webkit-details-marker{ display:none; }

  .faq-item__chev{
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    flex: 0 0 auto;
  }

  .faq-item[open] .faq-item__chev{
    transform: rotate(180deg);
    background: rgba(0,102,255,.06);
    border-color: rgba(0,102,255,.18);
  }

  .faq-item__content{
    padding: 0 18px 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14.5px;
  }

  /* Hover premium */
  .faq-item:hover{
    background: rgba(0,102,255,.03);
  }

  /* ===== CTA CARD ===== */
  .faq__cta{
    position: sticky;
    top: 96px;
  }

  .ctaCard{
    border-radius: var(--radius);
    border: 1px solid rgba(15,23,42,.10);
    background: linear-gradient(135deg, rgba(0,102,255,.92), rgba(0,230,118,.86));
    box-shadow: 0 22px 55px rgba(0,102,255,.18);
    color: #fff;
    padding: 18px;
  }

  .ctaCard__pill{
    display:inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .3px;
  }

  .ctaCard__title{
    margin: 12px 0 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }

  .ctaCard__text{
    margin: 10px 0 0;
    color: rgba(255,255,255,.92);
    line-height: 1.6;
    font-size: 14.5px;
  }

  .ctaCard__actions{
    margin-top: 14px;
    display: grid;
    gap: 10px;
  }

  .ctaCard__foot{
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.20);
    font-size: 12.5px;
    color: rgba(255,255,255,.88);
  }

  /* Buttons */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration:none;
    font-weight: 900;
    transition: transform .16s ease, filter .16s ease, background .16s ease;
    user-select:none;
  }
  .btn:active{ transform: scale(.98); }
  .btn-ghost{
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
  }
  .btn-ghost:hover{ background: rgba(255,255,255,.18); }

  /* Responsive */
  @media (max-width: 980px){
    .faq__grid{
      grid-template-columns: 1fr;
    }
    .faq__cta{
      position: relative;
      top: auto;
    }
  }

  @media (max-width: 520px){
    .faq{
      padding: 70px 14px;
    }
    .faq-item__summary{
      padding: 16px 14px;
      font-size: 15px;
    }
    .faq-item__content{
      padding: 0 14px 16px;
    }
    .ctaCard{
      padding: 16px;
    }
  }

/*Pricing section - clean premium */
   :root{
    --blue:#0066FF;
    --green:#00E676;
    --red:#FF2D2D;

    --bg:#ffffff;
    --ink:#0b0f1a;
    --muted:#5b6475;
    --line:rgba(15,23,42,.10);
    --card:rgba(255,255,255,.92);
    --shadow:0 18px 60px rgba(15,23,42,.10);
    --radius:18px;
  }

  .pricing{
    background:
      radial-gradient(900px 520px at 12% 10%, rgba(0,102,255,.06), transparent 60%),
      radial-gradient(900px 520px at 88% 35%, rgba(0,230,118,.05), transparent 55%),
      var(--bg);
    padding: 90px 18px;
    border-bottom: 1px solid rgba(15,23,42,.06);
  }

  .pricing__wrap{
    max-width: 1200px;
    margin: 0 auto;
  }

  .pricing__head{
    text-align: center;
    max-width: 820px;
    margin: 0 auto 26px;
  }

  .pricing__icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin: 0 auto 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 14px 35px rgba(0,102,255,.18);
  }

  .pricing__title{
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.6px;
    color: var(--ink);
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 1.15;
  }

  .pricing__subtitle{
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 65ch;
  }

  .pricing__note{
    margin: 16px auto 0;
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0,102,255,.18);
    background: rgba(0,102,255,.06);
    color: var(--blue);
    font-weight: 800;
    font-size: 12.5px;
  }

  /* Grid */
  .pricing__grid{
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
  }

  .priceCard{
    border-radius: var(--radius);
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(15,23,42,.05);
    padding: 18px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }

  .priceCard:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(0,102,255,.22);
  }

  .priceCard__top{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
  }

  .priceCard__icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 14px 35px rgba(0,102,255,.14);
  }

  .priceCard__badge{
    display:inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .3px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: var(--ink);
  }

  .tag-blue{ border-color: rgba(0,102,255,.22); color: var(--blue); background: rgba(0,102,255,.07); }
  .tag-green{ border-color: rgba(0,230,118,.25); color: #0b7a3d; background: rgba(0,230,118,.08); }
  .tag-red{ border-color: rgba(255,45,45,.22); color: #b01313; background: rgba(255,45,45,.08); }

  .priceCard__name{
    margin: 14px 0 0;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -0.2px;
    font-size: 16px;
  }

  .priceCard__desc{
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14.5px;
  }

  .priceCard__price{
    margin-top: 12px;
    display:flex;
    align-items: baseline;
    gap: 8px;
  }

  .priceCard__amount{
    font-weight: 950;
    color: var(--ink);
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .priceCard__per{
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
  }

  .priceCard__list{
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display:flex;
    flex-direction: column;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
  }

  .priceCard__list li{
    position: relative;
    padding-left: 18px;
  }

  .priceCard__list li::before{
    content:"";
    position:absolute;
    left:0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0,102,255,.35);
  }

  /* Recommended card */
  .priceCard--recommended{
    border-color: rgba(0,102,255,.22);
    box-shadow: 0 18px 55px rgba(0,102,255,.12);
  }
  .priceCard--recommended .priceCard__amount{
    background: linear-gradient(90deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Signature card */
  .priceCard--signature{
    color: #fff;
    background: linear-gradient(135deg, rgba(0,102,255,.96), rgba(255,45,45,.86));
    border-color: rgba(255,255,255,.20);
    box-shadow: 0 22px 70px rgba(0,0,0,.18);
  }
  .priceCard--signature .priceCard__name,
  .priceCard--signature .priceCard__desc,
  .priceCard--signature .priceCard__per{ color: rgba(255,255,255,.92); }
  .priceCard--signature .priceCard__amount{ color:#fff; }
  .priceCard--signature .priceCard__icon{
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: none;
  }
  .priceCard--signature .priceCard__list{ color: rgba(255,255,255,.90); }
  .priceCard--signature .priceCard__list li::before{ background: rgba(255,255,255,.55); }

  /* Options */
  .options{
    margin-top: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(10px);
    padding: 18px;
  }

  .options__top{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .options__title{
    margin: 0;
    font-weight: 950;
    color: var(--ink);
    letter-spacing: -0.3px;
    font-size: 16px;
  }

  .options__link{
    text-decoration:none;
    font-weight: 900;
    font-size: 12.5px;
    color: var(--blue);
  }
  .options__link:hover{ text-decoration: underline; }

  .options__grid{
    margin-top: 12px;
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .opt{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.92);
    padding: 12px 12px;
    color: var(--ink);
  }

  .opt span{
    color: var(--ink);
    font-weight: 800;
    font-size: 13.5px;
  }

  .opt b{
    color: var(--muted);
    font-weight: 900;
    font-size: 12.5px;
    white-space: nowrap;
  }

  /* Buttons */
  .btn{
    margin-top: 14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration:none;
    font-weight: 950;
    transition: transform .16s ease, filter .16s ease, background .16s ease;
    user-select:none;
    width: 100%;
  }
  .btn:active{ transform: scale(.98); }

  .btn-primary{
    background: var(--blue);
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,102,255,.18);
  }
  .btn-primary:hover{ filter: brightness(1.05); }

  .btn-ghost{
    background: rgba(15,23,42,.04);
    border: 1px solid rgba(15,23,42,.10);
    color: var(--ink);
  }
  .btn-ghost:hover{ background: rgba(15,23,42,.06); }

  .btn-white{
    background: #fff;
    color: var(--ink);
  }
  .btn-white:hover{ filter: brightness(0.98); }

  /* Responsive */
  @media (max-width: 1150px){
    .pricing__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  @media (max-width: 640px){
    .pricing{ padding: 70px 14px; }
    .pricing__grid{ grid-template-columns: 1fr; }
    .options__grid{ grid-template-columns: 1fr; }
    .priceCard__amount{ font-size: 24px; }
  }


     /* =========================
   ak universe — TESTIMONIALS
   Palette: Bleu électrique / Vert vif / Rouge
   ========================= */

:root{
  --ak-blue: #0066FF;
  --ak-green:#00E676;
  --ak-red:  #FF2D2D;

  --ak-ink:  #0b0f1a;
  --ak-muted:#5b6475;
  --ak-line: rgba(15,23,42,.12);
  --ak-card: rgba(255,255,255,.88);
  --ak-radius: 18px;
}

/* section background premium */
#testimonials{
  position: relative;
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(0,102,255,.10), transparent 60%),
    radial-gradient(900px 520px at 88% 35%, rgba(0,230,118,.10), transparent 55%),
    radial-gradient(900px 520px at 50% 95%, rgba(255,45,45,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,252,255,1) 100%);
}

/* head text */
#testimonials h2{
  color: var(--ak-ink);
  letter-spacing: -0.6px;
  line-height: 1.12;
}

#testimonials p{
  color: var(--ak-muted);
}

/* icon badge (top left orange dans ton HTML) -> on le “AK-ise” */
#testimonials .bg-orange-500.-rotate-15{
  background: linear-gradient(135deg, var(--ak-blue), var(--ak-green)) !important;
  border-radius: 16px;
  box-shadow:
    inset 0 6px 14px rgba(255,255,255,.25),
    0 18px 55px rgba(0,102,255,.18);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

#testimonials .bg-orange-500.-rotate-15:hover{
  transform: rotate(-10deg) translateY(-2px);
  box-shadow:
    inset 0 6px 16px rgba(255,255,255,.28),
    0 28px 85px rgba(0,230,118,.18),
    0 18px 55px rgba(0,102,255,.18);
}

/* wrapper -> grid propre */
#testimonials .flex.flex-wrap.gap-8{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  margin-top: 70px;
}

/* responsive */
@media (max-width: 1024px){
  #testimonials .flex.flex-wrap.gap-8{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  #testimonials .flex.flex-wrap.gap-8{
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 46px;
  }
}

/* testimonial cards base */
#testimonials .p-6.rounded-xl.max-w-80{
  max-width: 100%;
  border-radius: var(--ak-radius);
  border: 1px solid var(--ak-line);
  background: var(--ak-card);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(15,23,42,.08);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    filter .18s ease;
  position: relative;
  overflow: hidden;
}

/* top gradient bar (AK colors) */
#testimonials .p-6.rounded-xl.max-w-80::before{
  content:"";
  position:absolute;
  left:0; top:0;
  width:100%;
  height:3px;
  background: linear-gradient(90deg, var(--ak-blue), var(--ak-green), var(--ak-red));
  opacity: .9;
}

/* subtle glow blob */
#testimonials .p-6.rounded-xl.max-w-80::after{
  content:"";
  position:absolute;
  width: 240px;
  height: 240px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle at center, rgba(0,102,255,.18), transparent 60%);
  filter: blur(2px);
  opacity: .85;
  pointer-events:none;
  transition: opacity .18s ease;
}

#testimonials .p-6.rounded-xl.max-w-80:hover{
  transform: translateY(-7px);
  border-color: rgba(0,102,255,.26);
  box-shadow:
    0 26px 80px rgba(0,102,255,.14),
    0 18px 50px rgba(15,23,42,.10);
}
#testimonials .p-6.rounded-xl.max-w-80:hover::after{
  opacity: 1;
}

/* stars -> on garde mais on harmonise */
#testimonials .lucide-star{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.10));
}

/* avatar */
#testimonials img.size-10{
  border: 2px solid rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(15,23,42,.16);
}

/* featured card (celle en bg-orange-500 dans ton HTML) -> AK highlight */
#testimonials .p-6.rounded-xl.max-w-80.bg-orange-500{
  background:
    radial-gradient(900px 320px at 20% 10%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(700px 300px at 80% 70%, rgba(0,230,118,.22), transparent 55%),
    linear-gradient(135deg, rgba(0,102,255,.95), rgba(0,230,118,.80) 55%, rgba(255,45,45,.75));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    0 30px 95px rgba(0,102,255,.22),
    0 18px 55px rgba(15,23,42,.16);
}

#testimonials .p-6.rounded-xl.max-w-80.bg-orange-500::after{
  background: radial-gradient(circle at center, rgba(255,45,45,.22), transparent 60%);
}

#testimonials .p-6.rounded-xl.max-w-80.bg-orange-500:hover{
  transform: translateY(-8px);
  box-shadow:
    0 36px 120px rgba(0,230,118,.20),
    0 22px 70px rgba(0,102,255,.22),
    0 18px 55px rgba(15,23,42,.18);
}

/* text colors in featured card */
#testimonials .p-6.rounded-xl.max-w-80.bg-orange-500 p{
  color: rgba(255,255,255,.92);
}
#testimonials .p-6.rounded-xl.max-w-80.bg-orange-500 .text-xs{
  color: rgba(255,255,255,.85) !important;
}

/* button "See more" -> AK gradient */
#testimonials a.mt-20{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.2px;
  border: 1px solid rgba(0,102,255,.20) !important;
  background: rgba(255,255,255,.7) !important;
  color: var(--ak-ink) !important;
  box-shadow: 0 14px 40px rgba(15,23,42,.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

#testimonials a.mt-20::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(90deg, var(--ak-blue), var(--ak-green), var(--ak-red));
  opacity: .18;
  filter: blur(0px);
  transition: opacity .18s ease;
}

#testimonials a.mt-20:hover{
  transform: translateY(-2px);
  border-color: rgba(0,230,118,.25) !important;
  box-shadow:
    0 26px 80px rgba(0,102,255,.14),
    0 18px 50px rgba(15,23,42,.10);
  background: rgba(255,255,255,.9) !important;
}
#testimonials a.mt-20:hover::before{
  opacity: .28;
}

/* small screen padding fix */
@media (max-width: 640px){
  #testimonials .p-4.pt-20.md\\:p-20{
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
}

/* =========================
   FUTURE SECTION (VIDEO HERO)
   ak universe palette
   ========================= */

:root{
  --ak-blue:#0066FF;
  --ak-green:#00E676;
  --ak-red:#FF2D2D;

  --ak-ink:#0b0f1a;
  --ak-white:#ffffff;
}

/* Section wrapper */
.s-future{
  position: relative;
  min-height: 100vh;              /* prend toute la hauteur écran */
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 18px 90px;       /* espace pour header fixed */
  isolation: isolate;             /* garde les overlays clean */
}

/* Video background full cover */
.s-future__video-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);         /* petit zoom pour éviter bords */
  filter: saturate(1.05) contrast(1.05);
  z-index: -3;
}

/* Overlay contrast + vibe premium */
.s-future__overlay{
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 520px at 12% 20%, rgba(0,102,255,.25), transparent 60%),
    radial-gradient(900px 520px at 88% 35%, rgba(0,230,118,.22), transparent 55%),
    radial-gradient(900px 520px at 50% 95%, rgba(255,45,45,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.72) 100%);
}

/* optional subtle noise (ultra pro) */
.s-future::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: .08;
  pointer-events:none;
}

/* Content box */
.s-future__content{
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
  color: var(--ak-white);
  position: relative;
  padding: 26px 16px;
}

/* Title */
.s-future__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.05;
  text-transform: uppercase;
  font-size: clamp(32px, 4.8vw, 68px);
  text-shadow: 0 14px 50px rgba(0,0,0,.55);
}

/* Accent underline glow */
.s-future__title::after{
  content:"";
  display:block;
  width: min(180px, 45vw);
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ak-blue), var(--ak-green), var(--ak-red));
  box-shadow:
    0 12px 40px rgba(0,102,255,.22),
    0 12px 40px rgba(0,230,118,.18),
    0 12px 40px rgba(255,45,45,.16);
  opacity: .95;
}

/* Subtitle */
.s-future__subtitle{
  margin: 18px auto 0;
  max-width: 72ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,.88);
  text-shadow: 0 12px 40px rgba(0,0,0,.45);
}

/* Optional: animate gentle fade-up */
.s-future__content{
  animation: akFadeUp .9s ease-out both;
}
@keyframes akFadeUp{
  from{ opacity:0; transform: translateY(18px); }
  to{ opacity:1; transform: translateY(0); }
}

/* Responsive + performance */
@media (max-width: 768px){
  .s-future{
    padding-top: 110px; /* un peu moins sur mobile */
  }
  .s-future__subtitle{
    padding: 0 6px;
  }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .s-future__content{ animation: none; }
  .s-future__video-bg{ transform:none; }
}

/* =========================
   ak universe — CONTACT
   Palette: Bleu électrique / Vert vif / Rouge
   ========================= */
 :root{
  --ak-blue:#0066FF;
  --ak-green:#00E676;
  --ak-red:#FF2D2D;

  --text:#0f172a;
  --muted:#64748b;
  --line:rgba(15,23,42,.12);
  --bg:#ffffff;
  --soft:#f6f8fb;
  --radius:18px;
}

/* SECTION */
.ak-contact{
  padding: 90px 18px;
  background:
    radial-gradient(700px 380px at 15% 15%, rgba(0,102,255,.08), transparent 55%),
    radial-gradient(700px 380px at 90% 20%, rgba(0,230,118,.07), transparent 55%),
    radial-gradient(700px 380px at 50% 90%, rgba(255,45,45,.06), transparent 60%),
    var(--soft);
}

/* WRAP */
.ak-contact__wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

/* LEFT */
.ak-contact__badge{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
}

.ak-contact__title{
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: -0.6px;
  line-height: 1.08;
  color: var(--text);
  font-weight: 900;
}

.ak-contact__lead{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 60ch;
}

.ak-contact__bullets{
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}

.ak-contact__bullet{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.08);
}

.ak-contact__bullet p{
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.ak-contact__bullet strong{
  font-weight: 900;
}

.ak-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex: 0 0 auto;
}

.ak-dot--blue{ background: var(--ak-blue); }
.ak-dot--green{ background: var(--ak-green); }
.ak-dot--red{ background: var(--ak-red); }

/* contact info */
.ak-contact__info{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.ak-contact__info-item{
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-weight: 600;
}

.ak-ico{ width: 20px; opacity: .85; }

.ak-contact__info a{
  color: var(--text);
  text-decoration: none;
}

.ak-contact__info a:hover{
  text-decoration: underline;
}

/* small note */
.ak-contact__note{
  margin-top: 18px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.ak-contact__pulse{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ak-green);
  box-shadow: 0 0 0 0 rgba(0,230,118,.35);
  animation: akPulse 1.6s infinite;
}

@keyframes akPulse{
  0%{ box-shadow: 0 0 0 0 rgba(0,230,118,.38); }
  70%{ box-shadow: 0 0 0 10px rgba(0,230,118,0); }
  100%{ box-shadow: 0 0 0 0 rgba(0,230,118,0); }
}

/* RIGHT CARD */
.ak-contact__right{
  position: relative;
}

.ak-form{
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 60px rgba(2,6,23,.08);
}

.ak-form__head h3{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

.ak-form__head p{
  margin: 6px 0 18px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

/* grid inputs */
.ak-form__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.ak-field{
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ak-field label{
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

.ak-field input,
.ak-field textarea,
.ak-field select{
  height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: #fff;
  color: var(--text);
  outline: none;
  font-size: 14px;
  transition: .18s ease;
}

.ak-field textarea{
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.ak-field input:focus,
.ak-field textarea:focus,
.ak-field select:focus{
  border-color: rgba(0,102,255,.55);
  box-shadow: 0 0 0 4px rgba(0,102,255,.14);
}

/* BUTTON */
.ak-form__btn{
  position: relative;
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, var(--ak-blue), var(--ak-green), var(--ak-red));
  overflow: hidden;
  transition: transform .18s ease, opacity .18s ease;
}

.ak-form__btn:hover{
  transform: translateY(-2px);
  opacity: .97;
}

.ak-form__btn-glow{
  position: absolute;
  inset: -80%;
  background: radial-gradient(circle, rgba(255,255,255,.42) 0%, transparent 55%);
  transform: translateX(-40%);
  transition: transform .45s ease;
  pointer-events: none;
}

.ak-form__btn:hover .ak-form__btn-glow{
  transform: translateX(40%);
}

/* privacy */
.ak-form__privacy{
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .ak-contact__wrap{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ak-form__grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   ak universe — FOOTER
   Palette: Bleu électrique / Vert vif / Rouge
   ========================= */

 :root{
  --ak-blue:#0066FF;
  --ak-green:#00E676;
  --ak-red:#FF2D2D;

  --text:#0f172a;
  --muted:#64748b;
  --line:rgba(15,23,42,.12);
  --bg:#ffffff;
  --soft:#f8fafc;
  --radius:14px;
}

.footer-simple{
  background: var(--bg);
  border-top: 1px solid var(--line);
  color: var(--text);
}

.footer-simple__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr 1.2fr;
  gap: 24px;
}

.footer-simple__title{
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.footer-simple__logo img{
  height: 120px;
  width: auto;
  display: block;
}

.footer-simple__desc{
  margin: 12px 0 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 46ch;
}

.footer-simple__social{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-simple__social a{
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-simple__social a:hover{
  color: var(--text);
}

/* lists */
.footer-simple__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-simple__list a{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-simple__list a:hover{
  color: var(--text);
}

/* contact */
.footer-simple__info p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-simple__info a{
  color: var(--text);
  text-decoration: none;
}

.footer-simple__info a:hover{
  text-decoration: underline;
}

.footer-simple__cta{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, var(--ak-blue), var(--ak-green), var(--ak-red));
}

/* map */
.footer-simple__map{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}

.footer-simple__map iframe{
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
}

/* bottom */
.footer-simple__bottom{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.footer-simple__legal{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-simple__legal a{
  color: var(--muted);
  text-decoration: none;
}

.footer-simple__legal a:hover{
  color: var(--text);
}

/* responsive */
@media (max-width: 1000px){
  .footer-simple__wrap{
    grid-template-columns: 1fr 1fr;
  }
  .footer-simple__mapcol{
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px){
  .footer-simple__wrap{
    grid-template-columns: 1fr;
    padding: 36px 14px;
  }
  .footer-simple__cta{
    width: 100%;
  }
}

/* SECTION */
.tiktok-univers{
  padding: 80px 18px;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(0,102,255,.12), transparent 60%),
              radial-gradient(900px 500px at 15% 35%, rgba(0,230,118,.10), transparent 55%),
              radial-gradient(900px 500px at 85% 35%, rgba(255,45,45,.10), transparent 55%),
              #f5f6f8;
}

.tu-container{
  max-width: 1200px;
  margin: 0 auto;
}

/* TITLE */
.tu-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-bottom: 36px;
}
.tu-title h2{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color:#0f172a;
}
.tu-icon{
  width:44px;
  height:44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background:#111827;
  color:#fff;
  font-weight:900;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* GRID */
.tu-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.tu-card{
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tu-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
}

/* TOP */
.tu-top{
  padding: 18px 18px 12px;
}
.tu-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}
.tu-logo{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
}
.tu-brand h3{
  font-size: 18px;
  font-weight: 900;
  color:#0f172a;
  margin:0;
}
.tu-brand p{
  margin: 2px 0 0;
  font-size: 12px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(15, 23, 42, .55);
}

/* BADGE */
.tu-badge{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color:#0f172a;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.8);
}
.tu-emoji{ font-size: 16px; }

/* Screenshot area */
.tu-shot{
  padding: 0 18px 14px;
}
.tu-shot img{
  width:100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 14px 30px rgba(0,0,0,.10);
}

/* Base bouton */
.tu-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration:none;
  color:white;
  transition: 0.3s ease;
  letter-spacing: .5px;
}

/* 🔵 AK UNIVERSE - Bleu électrique */
.tu-btn--blue{
  background: linear-gradient(135deg, #0066FF, #004CFF);
}

.tu-btn--blue:hover{
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,102,255,0.5);
}

/* 🟢 AK SHOPS - Vert vif */
.tu-btn--green{
  background: linear-gradient(135deg, #00E676, #00C853);
}

.tu-btn--green:hover{
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,230,118,0.5);
}

/* 🔴 AK RESTAURANTS - Rouge */
.tu-btn--red{
  background: linear-gradient(135deg, #FF2D2D, #D50000);
}

.tu-btn--red:hover{
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255,45,45,0.5);
}

/* Color variants (AK palette) */
.tu-badge--gold{ background: rgba(255, 203, 90, .35); }
.tu-btn--gold{ background: rgba(255, 203, 90, .40); color:#0f172a; }

.tu-badge--green{ background: rgba(0, 230, 118, .22); }
.tu-btn--green{ background: rgba(0, 230, 118, .22); color:#0f172a; }

.tu-badge--red{ background: rgba(255, 45, 45, .18); }
.tu-btn--red{ background: rgba(255, 45, 45, .18); color:#0f172a; }

/* RESPONSIVE */
@media (max-width: 1024px){
  .tu-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .tu-grid{ grid-template-columns: 1fr; }
  .tu-title h2{ font-size: 28px; }
  .tu-shot img{ height: 240px; }
}

