/* =============================================
   ALYO – creation.css
   DA identique à style.css
   ============================================= */

/* ─── VARIABLES ─── */
:root {
  --blue:  #1F3CFF;
  --blue2: #0F2EEA;
  --green: #3BE3A1;
  --white: #FFFFFF;
  --light: #F5F7FA;
  --dark:  #0A1A5C;
  --section-px: clamp(20px, 5vw, 80px);
  --section-py: clamp(64px, 8vw, 130px);
  --container: min(1280px, calc(100% - clamp(32px, 4vw, 80px)));
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Syne', sans-serif; }
img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════
   HEADER (identique à style.css)
════════════════════════════════════════ */
header {
  position: fixed;
  top: -70px;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 70px;
  transition: top 0.5s ease;
}
header.visible { top: 0; }

@media (max-width: 860px) { header { top: 0; } }

.header-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 60, 255, 0.28);
  box-shadow: 0 12px 35px rgba(31, 60, 255, 0.12);
  pointer-events: none;
}

.logo,
.header-nav,
.header-ctas,
.burger-btn { position: relative; z-index: 1; }

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  width: clamp(140px, 20vw, 240px);
  height: 110px;
}

.logo-mark {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1E39FF;
  -webkit-mask: url("../logo/logo-white.svg") no-repeat center / contain;
  mask: url("../logo/logo-white.svg") no-repeat center / contain;
  transition: background-color 0.25s ease;
}

.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.header-nav a:not(.btn-green) {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.header-nav a:not(.btn-green):hover { opacity: 1; }

.header-nav a.nav-active {
  opacity: 1;
  color: var(--blue);
  font-weight: 600;
}

.header-ctas { display: flex; gap: 12px; align-items: center; }
.nav-mobile-ctas,
.nav-mobile-back,
.nav-mobile-socials { display: none; }

/* Bouton Retour — identique web.css */
.nav-mobile-back {
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(31, 60, 255, 0.14);
  background: rgba(31, 60, 255, 0.05);
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
}

.nav-mobile-back svg {
  width: 22px;
  height: 22px;
}

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(31, 60, 255, 0.14);
  background: rgba(31, 60, 255, 0.05);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.burger-btn:hover {
  background: rgba(31, 60, 255, 0.1);
  border-color: rgba(31, 60, 255, 0.22);
}
.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.35s ease;
}
.burger-btn.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open .burger-line:nth-child(2) { opacity: 0; width: 0; }
.burger-btn.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10, 26, 92, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.is-open { opacity: 1; pointer-events: all; }



/* ═══════════════════════════════════════
   BOUTONS
════════════════════════════════════════ */
.btn-green {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: var(--green);
  padding: 11px 22px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,227,161,0.4); }

.btn-hero {
  font-size: clamp(14px, 2vw, 16px);
  padding: 14px 32px;
}

.btn-hero-outline {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 13px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-blue {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(31,60,255,0.35); }

.btn-green-big {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  color: var(--dark);
  background: var(--green);
  padding: clamp(14px,2vw,20px) clamp(28px,4vw,48px);
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-green-big:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(59,227,161,0.45); }

.btn-cta-outline {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.38);
  padding: clamp(13px,2vw,19px) clamp(26px,4vw,46px);
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-cta-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   UTILITAIRES
════════════════════════════════════════ */
.container {
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 12px 0 18px;
}
.section-head p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(10,26,92,0.58);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}

.tag {
  display: inline-block;
  background: rgba(31,60,255,0.08);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.tag-light {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
}

.h-blue  { color: var(--blue); }
.h-green { color: var(--green); }

/* ═══════════════════════════════════════
   1. HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-pattern-text {
  position: absolute;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  letter-spacing: 4px;
  line-height: 2.4;
  user-select: none;
  animation: scrollPat 30s linear infinite;
}
.hero-pattern-text:nth-child(odd) {
  animation-direction: reverse;
  animation-duration: 25s;
}
@keyframes scrollPat {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 60px);
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(59,227,161,0.28);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 66px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 760px;
}
.hero h1 span { color: var(--green); }

.hero-content > p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.72;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll svg { width: 16px; fill: var(--dark); }

/* ═══════════════════════════════════════
   2. SERVICES
════════════════════════════════════════ */
.section-services {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(30, 57, 255, 0.08) 0, transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(59, 227, 161, 0.12) 0, transparent 30%),
    #ffffff;
}

.section-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,57,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,57,255,0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.45;
  pointer-events: none;
}

.section-services .container,
.section-services .section-inner {
  position: relative;
  z-index: 2;
}

.section-services .section-head,
.section-services .section-header {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-services .tag,
.section-services .tag-label {
  background: rgba(30, 57, 255, 0.08);
  color: #1E39FF;
  border: 1px solid rgba(30, 57, 255, 0.12);
  box-shadow: 0 12px 30px rgba(30, 57, 255, 0.08);
}

.section-services .section-head h2,
.section-services .section-header h2 {
  color: #06175f;
  font-size: clamp(30px, 2.7vw, 50px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.8px;
  margin-top: 16px;
}

.section-services .section-head p,
.section-services .section-header p {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(6, 23, 95, 0.68);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,249,255,0.94) 100%);
  border-radius: 28px;
  padding: 34px 32px;
  border: 1px solid rgba(30, 57, 255, 0.10);
  box-shadow:
    0 20px 55px rgba(6, 23, 95, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(30,57,255,0.13), transparent 30%),
    linear-gradient(135deg, rgba(30,57,255,0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  background: rgba(59, 227, 161, 0.16);
  filter: blur(35px);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 57, 255, 0.22);
  box-shadow:
    0 32px 85px rgba(6, 23, 95, 0.14),
    0 0 0 1px rgba(30, 57, 255, 0.04) inset;
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #1E39FF 0%, #2f55ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--white);
  box-shadow:
    0 18px 34px rgba(30, 57, 255, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.06);
  box-shadow:
    0 22px 45px rgba(30, 57, 255, 0.34),
    0 0 0 6px rgba(30, 57, 255, 0.08);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
  margin-bottom: 11px;
  color: #06175f;
  letter-spacing: -0.25px;
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: rgba(6, 23, 95, 0.64);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 950px) {
  .section-services {
    padding: 95px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .section-services {
    padding: 80px 0;
  }

  .section-services .section-head,
  .section-services .section-header {
    margin-bottom: 42px;
  }

  .section-services .section-head h2,
  .section-services .section-header h2 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 24px;
  }
}

/* ═══════════════════════════════════════
   3. IMPACT
════════════════════════════════════════ */
.section-impact {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(59, 227, 161, 0.16) 0, transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(30, 57, 255, 0.22) 0, transparent 34%),
    linear-gradient(135deg, #0b1b68 0%, #08185b 48%, #07134a 100%);
}

.section-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.18;
  pointer-events: none;
}

.section-impact::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(59, 227, 161, 0.13);
  filter: blur(75px);
  border-radius: 999px;
  pointer-events: none;
}

.section-impact .container {
  position: relative;
  z-index: 2;
}

.impact-inner {
  display: grid;
  grid-template-columns: 0.9fr 0.95fr;
  gap: clamp(50px, 6vw, 90px);
  align-items: center;
}

/* ───────── TEXTE GAUCHE ───────── */
.impact-text {
  position: relative;
}

.impact-text::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 55px;
  width: 3px;
  height: 190px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), rgba(59,227,161,0));
  box-shadow: 0 0 28px rgba(59,227,161,0.45);
}

.impact-text .tag-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
  backdrop-filter: blur(12px);
}

.impact-text h2 {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.8px;
  color: var(--white);
  margin: 18px 0 24px;
  text-shadow: 0 28px 65px rgba(0,0,0,0.18);
}

.impact-text h2 .h-green {
  color: var(--green);
  text-shadow: 0 0 36px rgba(59,227,161,0.36);
}

.impact-text p {
  max-width: 560px;
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
}

/* ───────── GRID CARDS ───────── */
.impact-points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.impact-points::before {
  content: "";
  position: absolute;
  inset: 45px;
  background: rgba(59,227,161,0.12);
  filter: blur(70px);
  border-radius: 999px;
  pointer-events: none;
}

.impact-card {
  position: relative;
  overflow: hidden;
  height: 165px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 26px 70px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 42%),
    radial-gradient(circle at 18% 10%, rgba(59,227,161,0.18), transparent 28%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.impact-card::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(59,227,161,0.15);
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.impact-card:hover {
  transform: translateY(-9px);
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  box-shadow:
    0 38px 95px rgba(0,0,0,0.24),
    0 0 0 1px rgba(59,227,161,0.08) inset;
}

.impact-card:hover::before,
.impact-card:hover::after {
  opacity: 1;
}

.impact-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 10px;
  text-shadow: 0 0 22px rgba(59,227,161,0.32);
}

.impact-label {
  position: relative;
  z-index: 1;
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.08;
  letter-spacing: -0.45px;
  overflow-wrap: anywhere;
}

.impact-card p {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.66);
  line-height: 1.55;
  margin: 0;
}

/* ───────── TABLETTE ───────── */
@media (max-width: 950px) {
  .section-impact {
    padding: 100px 0;
  }

  .impact-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .impact-text {
    text-align: center;
  }

  .impact-text::before {
    display: none;
  }

  .impact-text p {
    margin: 0 auto;
  }
}

/* ───────── MOBILE ───────── */
@media (max-width: 650px) {
  .section-impact {
    padding: 82px 0;
  }

  .impact-text h2 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .impact-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .impact-card {
    height: auto;
    min-height: 150px;
    padding: 24px 22px;
    border-radius: 22px;
  }
}

/* ═══════════════════════════════════════
   4. NOVA — SIMPLE / SOBRE / PREMIUM
════════════════════════════════════════ */

.section-nova {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(31, 60, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f8fc 0%, #eef2f8 100%);
}

.nova-bg-glow {
  display: none;
}

.nova-head {
  position: relative;
  z-index: 2;
}

.nova-head h2 {
  max-width: 820px;
  margin-inline: auto;
}

.nova-head p {
  max-width: 560px;
  margin-inline: auto;
}

/* Layout plus compact */
.nova-showcase {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: clamp(42px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

/* Carte principale */
.nova-main-card {
  position: relative;
  min-height: 455px;
  border-radius: 28px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 24px 60px rgba(10, 26, 92, 0.13);
  isolation: isolate;
}

.nova-main-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: inherit;
  z-index: 4;
  pointer-events: none;
}

.nova-main-visual {
  position: absolute;
  inset: 0;
}

.nova-main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.nova-main-card:hover .nova-main-visual img {
  transform: scale(1.045);
  filter: brightness(0.9);
}

.nova-main-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.42) 48%, rgba(0,0,0,0.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.58) 100%);
}

.nova-main-content {
  position: absolute;
  left: clamp(24px, 4vw, 42px);
  bottom: clamp(24px, 4vw, 42px);
  z-index: 3;
  max-width: 390px;
}

.nova-main-content span,
.nova-info-card > span,
.nova-img-content span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nova-main-content span,
.nova-img-content span {
  color: #121212;
  background: #d9af30;
}

.nova-main-content h3 {
  margin: 15px 0 10px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: #fff;
}

.nova-main-content p {
  margin: 0;
  max-width: 350px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.74);
}

.nova-main-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.28s ease, background 0.28s ease;
}

.nova-main-content a:hover {
  transform: translateY(-3px);
  background: #d9af30;
}

/* Colonne droite */
.nova-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.nova-info-card {
  position: relative;
  min-height: 135px;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(31, 60, 255, 0.08);
  box-shadow: 0 18px 42px rgba(10, 26, 92, 0.07);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.nova-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 60, 255, 0.16);
  box-shadow: 0 24px 55px rgba(10, 26, 92, 0.11);
}

.nova-info-card > span {
  color: var(--blue);
  background: rgba(31, 60, 255, 0.08);
}

.nova-info-card h4 {
  margin: 13px 0 8px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #071653;
}

.nova-info-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(10, 26, 92, 0.62);
}

/* Carte logo */
.nova-dark {
  background:
    radial-gradient(circle at top right, rgba(217, 175, 48, 0.12), transparent 38%),
    linear-gradient(145deg, #050505 0%, #121318 100%);
  border-color: rgba(255,255,255,0.08);
}

.nova-dark > span {
  color: #d9af30;
  background: rgba(217, 175, 48, 0.12);
}

.nova-dark h4 {
  color: #fff;
}

.nova-dark p {
  color: rgba(255,255,255,0.64);
}

.nova-logo-zone {
  height: 42px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.nova-logo-zone img {
  width: 128px;
  height: auto;
  opacity: 0.92;
  transition: transform 0.35s ease;
}

.nova-dark:hover .nova-logo-zone img {
  transform: translateY(-3px) scale(1.05);
}

/* Palette */
.nova-palette {
  display: flex;
  gap: 9px;
  margin-bottom: 16px;
}

.nova-swatch {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(10, 26, 92, 0.10);
  transition: transform 0.3s ease;
}

.nova-info-card:hover .nova-swatch {
  transform: translateY(-3px);
}

.nova-black { background: #0b0b0b; }
.nova-charcoal { background: #1b1b1d; }
.nova-yellow { background: #d9af30; }
.nova-offwhite {
  background: #f4f1e8;
  border: 1px solid rgba(10, 26, 92, 0.08);
}

/* Carte image produit */
.nova-img-card {
  min-height: 150px;
  padding: 0;
  background: #050505;
}

.nova-img-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.nova-img-card:hover img {
  transform: scale(1.055);
  filter: brightness(0.86);
}

.nova-img-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.68));
}

.nova-img-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.nova-img-content h4 {
  margin: 12px 0 0;
  max-width: 280px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}

/* Responsive */
@media (max-width: 1050px) {
  .nova-showcase {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .nova-main-card {
    min-height: 420px;
  }

  .nova-side {
    grid-template-columns: repeat(3, 1fr);
  }

  .nova-info-card {
    min-height: 190px;
  }

  .nova-img-card img {
    min-height: 190px;
  }
}

@media (max-width: 780px) {
  .section-nova {
    padding: 75px 0;
  }

  .nova-showcase {
    max-width: 100%;
    margin-top: 36px;
    gap: 18px;
  }

  .nova-side {
    grid-template-columns: 1fr;
  }

  .nova-main-card {
    min-height: 390px;
    border-radius: 24px;
  }

  .nova-main-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.82) 100%);
  }

  .nova-main-content {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .nova-main-content h3 {
    font-size: clamp(44px, 16vw, 64px);
  }

  .nova-info-card {
    border-radius: 22px;
    min-height: auto;
  }

  .nova-img-card {
    min-height: 220px;
  }

  .nova-img-card img {
    min-height: 220px;
  }
}

/* ═══════════════════════════════════════
   5. PROCESS
════════════════════════════════════════ */
.section-process {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.section-process .section-head h2 { color: var(--white); }
.section-process .section-head p  { color: rgba(255,255,255,0.5); }

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 160px;
}

.process-num {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 14px;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
  transition: background 0.28s ease, transform 0.28s ease;
}
.process-step:hover .process-icon {
  background: rgba(59,227,161,0.12);
  transform: translateY(-4px);
}
.process-icon svg { width: 26px; height: 26px; }

.process-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.process-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.44);
  line-height: 1.6;
}

.process-connector {
  flex-shrink: 0;
  width: clamp(20px, 4vw, 60px);
  height: 1px;
  background: linear-gradient(90deg, rgba(59,227,161,0.4) 0%, rgba(59,227,161,0.15) 100%);
  position: relative;
  top: -32px; /* align with icon center */
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(59,227,161,0.5);
  border-top: 1.5px solid rgba(59,227,161,0.5);
  transform: rotate(45deg);
}
/* ═══════════════════════════════════════
   6. TARIFS
════════════════════════════════════════ */
.section-tarifs {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--light);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
  align-items: stretch;
}

.tarif-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 36px 28px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 255, 0.96) 100%);
  border: 1px solid rgba(214, 221, 239, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 18px 44px rgba(16, 24, 40, 0.045),
    0 8px 22px rgba(31, 60, 255, 0.035);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.tarif-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0) 34%
  );
  opacity: 0.9;
}

.tarif-card:hover {
  transform: translateY(-8px);
  border-color: rgba(188, 200, 228, 1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 28px 68px rgba(16, 24, 40, 0.08),
    0 14px 30px rgba(31, 60, 255, 0.06);
}

.tarif-best {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 255, 251, 0.98) 100%);
  border-color: rgba(59, 227, 161, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.99),
    0 24px 56px rgba(31, 60, 255, 0.08),
    0 0 0 1px rgba(59, 227, 161, 0.14);
}

.tarif-best:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 227, 161, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 34px 78px rgba(31, 60, 255, 0.12),
    0 0 0 1px rgba(59, 227, 161, 0.18);
}

.tarif-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(59, 227, 161, 0.22);
}

.tarif-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.tarif-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.tarif-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 60, 255, 0.08);
  color: var(--blue);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 18px rgba(31, 60, 255, 0.06);
}

.tarif-icon-featured {
  background: rgba(31, 60, 255, 0.1);
}

.tarif-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.tarif-kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(10, 26, 92, 0.5);
  line-height: 1.2;
  text-align: center;
}

.tarif-header h3 {
  margin: 0;
  width: 100%;
  display: block;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark);
  text-align: center;
  text-wrap: balance;
}

.tarif-price-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  text-align: center;
}

.tarif-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  font-family: 'Syne', sans-serif;
  font-size: clamp(54px, 5vw, 68px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -2.6px;
  color: var(--blue);
  text-align: center;
}

.tarif-price span {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  color: rgba(10, 26, 92, 0.48);
  margin-bottom: 9px;
}

.tarif-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(10, 26, 92, 0.64);
  text-align: center;
  max-width: 100%;
}

.tarif-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tarif-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.58;
  color: rgba(10, 26, 92, 0.82);
  text-align: left;
}

.tarif-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.tarif-best .tarif-list li::before {
  background: var(--green);
}

.tarif-btn {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  box-sizing: border-box;
}

.section-tarifs .btn-blue.tarif-btn,
.section-tarifs .btn-green.tarif-btn {
  width: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
  .tarifs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .section-tarifs {
    padding: 90px 0;
  }

  .tarifs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .tarif-card {
    padding: 30px 22px 22px;
    border-radius: 24px;
  }

  .tarif-header {
    gap: 14px;
    margin-bottom: 20px;
  }

  .tarif-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
  }

  .tarif-kicker {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .tarif-header h3 {
    font-size: 19px;
    max-width: 100%;
  }

  .tarif-price {
    font-size: 50px;
    letter-spacing: -2px;
  }

  .tarif-price span {
    font-size: 17px;
    margin-bottom: 7px;
  }

  .tarif-card > p,
  .tarif-list li {
    font-size: 14px;
  }

  .tarif-badge {
    top: -12px;
    font-size: 11px;
    padding: 7px 15px;
  }
}

/* ═══════════════════════════════════════
   7. CTA FINAL
════════════════════════════════════════ */
.section-cta {
  position: relative;
  background: var(--blue);
  padding: var(--section-py) var(--section-px);
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,227,161,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-content p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.03) 0%, transparent 24%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.025) 0%, transparent 22%),
    linear-gradient(180deg, #0b1c68 0%, #0a1b63 100%);
  color: rgba(255,255,255,0.58);
}
.footer-shell {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 34px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(140px, 1fr));
  gap: 48px;
  align-items: start;
}
.footer-brand { max-width: 360px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 8px;
}
.footer-logo img { width: 124px; height: auto; display: block; }

.footer-col h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.footer-col ul li { margin: 0; }
.footer-col ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-col ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.75);
  transition: width 0.25s ease;
}
.footer-col ul a:hover { color: #fff; transform: translateX(3px); }
.footer-col ul a:hover::after { width: 100%; }

.footer-divider {
  height: 1px;
  margin: 42px 0 26px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.08) 15%, rgba(255,255,255,0.08) 85%, rgba(255,255,255,0.02) 100%);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.48);
}
.footer-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.28); }
.socials { display: flex; align-items: center; gap: 12px; }
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 8px 20px rgba(0,0,0,0.14);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.social-btn svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.social-btn:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 28px rgba(0,0,0,0.2);
}
nav > a {
  position: relative;
  color: #06145f;
  font-weight: 500;
  text-decoration: none;
}

/* on garde le hover si tu veux */
nav > a:hover {
  color: #1E39FF;
}

/* actif */
nav > a.active {
  color: #06145f; /* même couleur que les autres */
  font-weight: 500;
}

/* trait */
nav > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) scaleX(0);
  width: 45%; /* un peu plus court = plus clean */
  height: 2px;
  background: #1E39FF;
  border-radius: 999px;
  transition: transform 0.25s ease;
}

/* UNIQUEMENT actif */
nav > a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* ═══════════════════════════════════════
   MOBILE NAV DRAWER (≤860px)
════════════════════════════════════════ */
@media (max-width: 860px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 90vw;
    height: 100dvh;
    background: var(--white);
    z-index: 180;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px 28px 32px;
    overflow-y: auto;
    box-shadow: -12px 0 40px rgba(10,26,92,0.12);
    transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
  }
  .header-nav.is-open { right: 0; }

  .header-nav a:not(.btn-green) {
    display: block;
    font-size: 18px;
    font-weight: 600;
    opacity: 1;
    color: var(--dark);
    padding: 13px 0;
    border-bottom: 1px solid rgba(31,60,255,0.07);
    width: 100%;
  }
  .header-nav a.nav-active { color: var(--blue); }

  .nav-mobile-back {
    display: flex;
    margin-bottom: 20px;
  }
  .nav-mobile-ctas {
    display: flex;
    margin-top: 28px;
    width: 100%;
  }
  .nav-mobile-ctas .btn-green {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 14px 24px;
  }
  .nav-mobile-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }
  .nav-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31,60,255,0.06);
    color: var(--dark);
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .nav-social-btn:hover { background: rgba(31,60,255,0.1); }
  .nav-social-btn svg { width: 18px; height: 18px; fill: currentColor; }

  .header-nav > a::after,
  .header-nav > a.active::after,
  .header-nav > a.nav-active::after {
    display: none !important;
    content: none !important;
  }

  .header-ctas { display: none; }
  .burger-btn  { display: flex; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .tarifs-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-inner { grid-template-columns: 1fr; gap: 48px; }
  .nova-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nova-card-large { grid-row: auto; }
  .nova-card-wide  { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 36px 28px; }
  .footer-brand { grid-column: 1 / -1; max-width: 420px; }
}

@media (max-width: 768px) {
  .hero h1 { letter-spacing: -1px; }
  .services-grid { grid-template-columns: 1fr; }
  .impact-points { grid-template-columns: 1fr; }
  .nova-grid {
    grid-template-columns: 1fr;
  }
  .nova-card-large { grid-row: auto; }
  .nova-card-wide  { grid-column: auto; }
  .nova-logo-slot  { min-height: 200px; }
  .process-steps {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    max-width: 100%;
    gap: 16px;
    align-items: flex-start;
  }
  .process-step h3 { margin-bottom: 4px; }
  .process-connector {
    display: none;
  }
  .tarifs-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-shell { width: calc(100% - 44px); }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns a { text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* =============================================
   PAGES JURIDIQUES
   ============================================= */
.legal-page {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  padding: clamp(112px, 13vw, 168px) var(--section-px) clamp(76px, 9vw, 128px);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.92) 0%, rgba(255, 255, 255, 1) 42%, rgba(245, 247, 250, 0.72) 100%);
}

.legal-page *,
.legal-page *::before,
.legal-page *::after {
  min-width: 0;
}

.legal-hero {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 7px 17px;
  border: 1px solid rgba(31, 60, 255, 0.12);
  border-radius: 999px;
  background: rgba(31, 60, 255, 0.07);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-hero h1 {
  color: var(--blue);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.6px;
  text-wrap: balance;
}

.legal-hero p {
  max-width: 650px;
  margin: 20px auto 0;
  color: rgba(10, 26, 92, 0.64);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-hero p:empty {
  display: none;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 20px;
  border: 1px solid rgba(59, 227, 161, 0.48);
  border-radius: 999px;
  background: rgba(59, 227, 161, 0.16);
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(59, 227, 161, 0.14);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  overflow-wrap: anywhere;
}

.legal-back:hover {
  transform: translateY(-2px);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(59, 227, 161, 0.24);
}

.legal-layout {
  width: min(1120px, 100%);
  margin: clamp(46px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.legal-summary,
.legal-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 60, 255, 0.09);
  box-shadow:
    0 20px 52px rgba(10, 26, 92, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.legal-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
}

.legal-summary h2 {
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.2px;
}

.legal-summary a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px 8px 18px;
  border-radius: 12px;
  color: rgba(10, 26, 92, 0.66);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
  overflow-wrap: anywhere;
}

.legal-summary a::before {
  content: "";
  position: absolute;
  left: 6px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--green);
}

.legal-summary a:hover {
  color: var(--blue);
  background: rgba(31, 60, 255, 0.06);
  transform: translateX(2px);
}

.legal-content {
  display: grid;
  gap: 22px;
}

.legal-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
}

.legal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.legal-card h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.8px;
  overflow-wrap: anywhere;
}

.legal-card h3 {
  margin: 28px 0 10px;
  color: var(--dark);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.3px;
  overflow-wrap: anywhere;
}

.legal-card p,
.legal-card li {
  color: rgba(10, 26, 92, 0.72);
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.legal-card strong {
  color: var(--dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .legal-page {
    padding: 104px 20px 78px;
  }

  .legal-hero {
    text-align: left;
  }

  .legal-hero h1 {
    font-size: clamp(34px, 12vw, 46px);
    letter-spacing: -1px;
  }

  .legal-back {
    width: 100%;
  }

  .legal-layout {
    margin-top: 38px;
    gap: 18px;
  }

  .legal-summary,
  .legal-card {
    border-radius: 20px;
  }

  .legal-summary {
    padding: 20px;
  }

  .legal-card {
    min-height: 180px;
    padding: 26px 20px;
  }
}
