/* ============================================================
   HelloLeads V2 - Stylesheet
   Scoped to body.hlv2-page - n'affecte pas Divi ni le reste du site
   ============================================================ */

/* -- Variables ---------------------------------------------- */
body.hlv2-page {
  --hlv2-accent:      #0FAD7D;
  --hlv2-accent-dark: #0D9E72;
  --hlv2-accent-glow: rgba(15,173,125,0.4);
  --hlv2-bg:          #F9F9F8;
  --hlv2-bg-dark:     #111110;
  --hlv2-bg-darker:   #0D0D0C;
  --hlv2-text:        #111110;
  --hlv2-text-mid:    #52525B;
  --hlv2-text-light:  #6B7280;
  --hlv2-text-muted:  #A1A1AA;
  --hlv2-border:      #E8E8E6;
  --hlv2-white:       #FFFFFF;
  --hlv2-font:        'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --hlv2-radius:      16px;
  --hlv2-radius-sm:   8px;
  --hlv2-shadow:      0 1px 4px rgba(0,0,0,0.04);
  --hlv2-shadow-md:   0 8px 32px rgba(0,0,0,0.09);
}

/* -- Reset (scoped) ---------------------------------------- */
body.hlv2-page,
.hlv2-wrapper *,
.hlv2-wrapper *::before,
.hlv2-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.hlv2-page {
  font-family: var(--hlv2-font);
  background: var(--hlv2-bg);
  color: var(--hlv2-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

html:has(body.hlv2-page) {
  scroll-behavior: smooth;
}

.hlv2-wrapper img,
.hlv2-wrapper svg {
  display: block;
  max-width: 100%;
}

.hlv2-wrapper button {
  font-family: var(--hlv2-font);
  cursor: pointer;
}

.hlv2-wrapper a {
  color: inherit;
  text-decoration: none;
}

/* -- Container --------------------------------------------- */
.hlv2-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* -- Scroll Reveal ----------------------------------------- */
.hlv2-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.hlv2-reveal.hlv2-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Animations -------------------------------------------- */
@keyframes hlv2-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes hlv2-float-badge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes hlv2-glow-pulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50%       { opacity: 0.55; transform: translateX(-50%) scale(1.12); }
}
@keyframes hlv2-dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hlv2-reveal, .hlv2-reveal.hlv2-visible {
    opacity: 1; transform: none; transition: none;
  }
  .hlv2-wrapper * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* -- Grids ------------------------------------------------- */
.hlv2-stats-grid {
  display: flex;
}
.hlv2-stat-item {
  flex: 1;
}
.hlv2-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hlv2-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hlv2-five-col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.hlv2-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: center;
}
.hlv2-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.hlv2-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.1fr;
  gap: 48px;
}

/* -- Header ------------------------------------------------ */
.hlv2-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}
.hlv2-header.hlv2-scrolled {
  background: rgba(249,249,248,0.95);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: rgba(0,0,0,0.07);
}
.hlv2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.hlv2-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
img.hlv2-logo-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}
.hlv2-logo-text {
  font-family: var(--hlv2-font);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.025em;
  color: var(--hlv2-text);
}
.hlv2-logo-text span {
  color: var(--hlv2-accent);
}
.hlv2-logo--dark .hlv2-logo-text {
  color: #fff;
}

.hlv2-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.hlv2-nav a {
  font-family: var(--hlv2-font);
  font-size: 14px;
  font-weight: 500;
  color: #52525B;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.hlv2-nav a:hover {
  color: var(--hlv2-text);
  background: rgba(0,0,0,0.04);
}
.hlv2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hlv2-accent);
  color: #fff !important;
  font-family: var(--hlv2-font);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--hlv2-radius-sm);
  text-decoration: none !important;
  transition: all 0.15s;
  white-space: nowrap;
  box-shadow: 0 2px 12px var(--hlv2-accent-glow);
  border: none;
}
.hlv2-btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.hlv2-btn-primary--lg {
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  box-shadow: 0 0 48px var(--hlv2-accent-glow);
}
.hlv2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--hlv2-white);
  color: var(--hlv2-text) !important;
  border: 1.5px solid var(--hlv2-border);
  font-family: var(--hlv2-font);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none !important;
  transition: all 0.15s;
}
.hlv2-btn-outline:hover {
  border-color: #CACAC6;
  background: var(--hlv2-bg);
}
.hlv2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8) !important;
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--hlv2-font);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.15s;
}
.hlv2-btn-ghost:hover {
  background: rgba(255,255,255,0.12);
}

/* Mobile menu */
.hlv2-mobile-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--hlv2-border);
  border-radius: 7px;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.hlv2-mobile-btn span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--hlv2-text);
  border-radius: 2px;
}
.hlv2-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--hlv2-border);
  padding: 16px 24px 24px;
}
.hlv2-mobile-menu.hlv2-open {
  display: block;
}
.hlv2-mobile-menu a {
  display: block;
  font-family: var(--hlv2-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--hlv2-text);
  padding: 13px 0;
  border-bottom: 1px solid #F4F4F2;
}
.hlv2-mobile-menu .hlv2-mobile-cta {
  display: block;
  margin-top: 16px;
  background: var(--hlv2-accent);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: var(--hlv2-radius-sm);
  text-align: center;
  border-bottom: none;
}

/* -- Hero -------------------------------------------------- */
.hlv2-hero {
  padding-top: 132px;
  padding-bottom: 88px;
  background: var(--hlv2-bg);
  position: relative;
  overflow: hidden;
}
.hlv2-hero-dot-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, #E0E0DC 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.hlv2-hero-glow {
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; padding-bottom: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,173,125,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hlv2-hero-inner {
  display: flex;
  align-items: center;
  gap: clamp(40px,5vw,80px);
  position: relative;
}
.hlv2-hero-left {
  flex: 0 0 auto;
  width: 52%;
  max-width: 580px;
}
.hlv2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  background: rgba(15,173,125,0.07);
  border: 1px solid rgba(15,173,125,0.15);
  border-radius: 99px;
  padding: 5px 14px 5px 10px;
}
.hlv2-hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hlv2-accent);
  animation: hlv2-dot-pulse 2s ease-in-out infinite;
}
.hlv2-hero-badge-text {
  font-family: var(--hlv2-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--hlv2-accent);
  letter-spacing: 0.01em;
}
.hlv2-hero h1 {
  font-family: var(--hlv2-font);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--hlv2-text);
  margin-bottom: 10px;
}
.hlv2-hero-tagline {
  font-family: var(--hlv2-font);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--hlv2-text-light);
  margin-bottom: 24px;
}
.hlv2-hero-desc {
  font-family: var(--hlv2-font);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  line-height: 1.68;
  color: var(--hlv2-text-mid);
  margin-bottom: 36px;
  max-width: 480px;
}
.hlv2-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}
.hlv2-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hlv2-avatar-stack {
  display: flex;
}
.hlv2-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--hlv2-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--hlv2-font);
  margin-left: -8px;
}
.hlv2-avatar:first-child { margin-left: 0; }
.hlv2-social-text {
  font-size: 13px;
  color: var(--hlv2-text-light);
  font-family: var(--hlv2-font);
}
.hlv2-hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
  padding-right: 28px;
}
.hlv2-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hlv2-mockup-float {
  animation: hlv2-float 6s ease-in-out infinite;
  will-change: transform;
}

/* Browser mockup */
.hlv2-browser {
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.07);
}
.hlv2-browser-bar {
  background: #F5F5F3;
  border-bottom: 1px solid var(--hlv2-border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hlv2-browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hlv2-browser-dot--red   { background: #FC5F5A; }
.hlv2-browser-dot--yellow { background: #FDBC40; }
.hlv2-browser-dot--green  { background: #35CD4B; }
.hlv2-browser-url {
  flex: 1;
  background: #EAEAE8;
  border-radius: 5px;
  height: 22px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  margin-left: 8px;
  font-size: 10px;
  color: #A1A1AA;
  font-family: monospace;
}

/* Floating badges */
.hlv2-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.1);
}
.hlv2-badge--bottom-left {
  bottom: -18px; left: -20px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  animation: hlv2-float-badge 7s ease-in-out infinite;
}
.hlv2-badge--top-right {
  top: -18px; right: -20px;
  padding: 10px 14px;
  text-align: center;
  animation: hlv2-float-badge 8s ease-in-out infinite 1s;
}
.hlv2-badge--mid-right {
  top: 40%; right: -28px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: hlv2-float-badge 9s ease-in-out infinite 0.5s;
}

/* -- Stats ------------------------------------------------- */
.hlv2-stats {
  background: var(--hlv2-white);
  border-top: 1px solid var(--hlv2-border);
  border-bottom: 1px solid var(--hlv2-border);
  position: relative;
}
.hlv2-stats-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hlv2-accent), transparent);
}

/* -- Section commons --------------------------------------- */
.hlv2-section {
  padding: 88px 0;
}
.hlv2-section-label {
  font-family: var(--hlv2-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hlv2-text-muted);
}
.hlv2-section-label--accent {
  color: var(--hlv2-accent);
}
.hlv2-section-title {
  font-family: var(--hlv2-font);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.03em;
  color: var(--hlv2-text);
  margin-top: 12px;
  line-height: 1.1;
}
.hlv2-section-title--white {
  color: #fff;
}
.hlv2-section-desc {
  font-family: var(--hlv2-font);
  font-size: 16px;
  color: var(--hlv2-text-light);
  max-width: 480px;
  margin: 14px auto 0;
  line-height: 1.6;
}
.hlv2-section-head {
  text-align: center;
  margin-bottom: 52px;
}
.hlv2-section-head--large {
  margin-bottom: 60px;
}

/* -- Card commons ------------------------------------------ */
.hlv2-card {
  background: var(--hlv2-white);
  border: 1px solid var(--hlv2-border);
  border-radius: var(--hlv2-radius);
  box-shadow: var(--hlv2-shadow);
  transition: all 0.22s ease;
}
.hlv2-card:hover {
  box-shadow: var(--hlv2-shadow-md);
  transform: translateY(-2px);
}
.hlv2-card--bg {
  background: var(--hlv2-bg);
}
.hlv2-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(15,173,125,0.07);
  border: 1px solid rgba(15,173,125,0.15);
  border-radius: 99px;
  padding: 3px 10px;
  font-family: var(--hlv2-font);
  font-size: 10px;
  font-weight: 700;
  color: var(--hlv2-accent);
  letter-spacing: 0.04em;
}
.hlv2-icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(15,173,125,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hlv2-check-box {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(15,173,125,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* -- Problem section --------------------------------------- */
.hlv2-problem { background: var(--hlv2-bg); }
.hlv2-problem-card {
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-radius: var(--hlv2-radius);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--hlv2-shadow);
  position: relative;
  overflow: hidden;
}
.hlv2-problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(15,173,125,0.6), rgba(15,173,125,0.2));
}
.hlv2-impact-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FEF2F2;
  border-radius: 8px;
  padding: 9px 12px;
  border: 1px solid #FECACA;
  margin-top: 20px;
}
.hlv2-impact-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #EF4444;
  flex-shrink: 0;
}
.hlv2-impact-text {
  font-family: var(--hlv2-font);
  font-size: 12px;
  font-weight: 600;
  color: #B91C1C;
  line-height: 1.3;
}

/* -- Solution section -------------------------------------- */
.hlv2-solution {
  background: #111110;
  overflow: hidden;
  position: relative;
}
.hlv2-solution-dot-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hlv2-solution-glow {
  position: absolute;
  bottom: -30%; left: -5%;
  width: 50%; padding-bottom: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,173,125,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hlv2-pillar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.2s;
}
.hlv2-pillar-row:hover,
.hlv2-pillar-row--active {
  background: rgba(15,173,125,0.15);
  border-color: rgba(15,173,125,0.3);
}
.hlv2-pillar-num {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: rgba(15,173,125,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--hlv2-font);
  font-weight: 800;
  font-size: 11px;
  color: var(--hlv2-accent);
}

/* -- Services ---------------------------------------------- */
.hlv2-services { background: var(--hlv2-white); }
.hlv2-service-card {
  background: var(--hlv2-bg);
  border: 1px solid var(--hlv2-border);
  border-radius: var(--hlv2-radius);
  padding: 30px 26px;
  height: 100%;
  transition: all 0.22s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.hlv2-service-card:hover {
  background: #fff;
  border-color: var(--hlv2-accent);
  box-shadow: 0 8px 32px rgba(15,173,125,0.12);
  transform: translateY(-3px);
}
.hlv2-service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.hlv2-service-card ul {
  list-style: none;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hlv2-service-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hlv2-font);
  font-size: 12px;
  color: var(--hlv2-text-mid);
}
.hlv2-service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--hlv2-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--hlv2-accent);
}
.hlv2-service-wide {
  background: var(--hlv2-bg);
  border: 1.5px solid rgba(15,173,125,0.3);
  border-radius: var(--hlv2-radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  transition: all 0.2s;
  cursor: pointer;
  margin-top: 16px;
}
.hlv2-service-wide:hover {
  background: rgba(15,173,125,0.04);
  box-shadow: 0 6px 28px rgba(15,173,125,0.1);
}

/* -- Diagnostic -------------------------------------------- */
.hlv2-diagnostic { background: var(--hlv2-bg); }
.hlv2-diag-card {
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-radius: 14px;
  padding: 24px 18px;
  height: 100%;
  transition: all 0.2s;
}
.hlv2-diag-card:hover {
  border-color: var(--hlv2-accent);
  box-shadow: 0 8px 28px rgba(15,173,125,0.1);
  transform: translateY(-2px);
}
.hlv2-score-dots {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}
.hlv2-score-dot {
  width: 20px; height: 6px;
  border-radius: 3px;
  background: var(--hlv2-border);
}
.hlv2-score-dot--active {
  background: var(--hlv2-accent);
}
.hlv2-diag-fix {
  margin-top: 14px;
  padding: 8px 10px;
  background: rgba(15,173,125,0.05);
  border-radius: 7px;
  border: 1px solid rgba(15,173,125,0.12);
}
.hlv2-diag-cta-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid rgba(15,173,125,0.25);
  border-radius: var(--hlv2-radius);
  padding: 28px 40px;
  box-shadow: 0 8px 32px rgba(15,173,125,0.1);
  text-align: center;
  margin-top: 48px;
}

/* -- Method ------------------------------------------------ */
.hlv2-method { background: var(--hlv2-white); }
.hlv2-method-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.hlv2-method-timeline {
  flex-shrink: 0;
  width: 200px;
}
.hlv2-method-step {
  display: flex;
  gap: 14px;
  cursor: pointer;
  position: relative;
}
.hlv2-step-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.hlv2-step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--hlv2-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 1;
  flex-shrink: 0;
  font-family: var(--hlv2-font);
  font-weight: 800;
  font-size: 11px;
  color: var(--hlv2-text-muted);
}
.hlv2-step-circle--active {
  background: var(--hlv2-accent);
  border-color: var(--hlv2-accent);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(15,173,125,0.12);
}
.hlv2-step-line {
  width: 2px;
  height: 36px;
  background: var(--hlv2-border);
  transition: background 0.3s;
  margin-top: 0;
}
.hlv2-step-line--done {
  background: var(--hlv2-accent);
}
.hlv2-step-label {
  padding-top: 9px;
  font-family: var(--hlv2-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--hlv2-text-light);
  transition: all 0.2s;
}
.hlv2-step-label--active {
  font-weight: 700;
  color: var(--hlv2-text);
}
.hlv2-method-panel {
  flex: 1;
  min-width: 0;
  background: var(--hlv2-bg);
  border: 1px solid rgba(15,173,125,0.25);
  border-radius: 20px;
  padding: 36px;
  overflow: hidden;
  position: relative;
}
.hlv2-method-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hlv2-accent), rgba(15,173,125,0.4));
}
.hlv2-method-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--hlv2-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(15,173,125,0.4);
}
.hlv2-method-deliverable {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hlv2-method-deliverable-icon {
  width: 20px; height: 20px;
  border-radius: 5px;
  background: rgba(15,173,125,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hlv2-method-dots {
  display: flex;
  gap: 6px;
}
.hlv2-method-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: #E0E0DC;
  cursor: pointer;
  transition: all 0.25s;
}
.hlv2-method-dot--active {
  width: 20px;
  background: var(--hlv2-accent);
}
.hlv2-method-nav {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--hlv2-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.hlv2-method-nav:hover {
  border-color: var(--hlv2-accent);
}
.hlv2-method-nav--next {
  background: var(--hlv2-accent);
  border: none;
}
.hlv2-method-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* -- Case Studies ------------------------------------------ */
.hlv2-cases { background: var(--hlv2-bg); }
.hlv2-case-featured {
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  transition: box-shadow 0.2s;
  margin-bottom: 20px;
}
.hlv2-case-featured:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.hlv2-img-slot {
  background: #F0F0EE;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.hlv2-img-slot-inner {
  position: relative;
  z-index: 1;
  background: rgba(249,249,248,0.92);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 10px;
  color: #A1A1AA;
  text-align: center;
  line-height: 1.6;
  font-family: 'Courier New', monospace;
}
.hlv2-case-result {
  background: rgba(15,173,125,0.05);
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(15,173,125,0.15);
  margin-bottom: 24px;
}
.hlv2-case-small {
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-radius: var(--hlv2-radius);
  overflow: hidden;
  transition: all 0.2s;
}
.hlv2-case-small:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

/* -- Results / Why HelloLeads ------------------------------ */
.hlv2-results { background: var(--hlv2-white); }
.hlv2-why-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--hlv2-bg);
  border: 1px solid var(--hlv2-border);
  border-radius: 12px;
}
.hlv2-why-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(15,173,125,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hlv2-improvement-card {
  background: var(--hlv2-bg);
  border: 1px solid var(--hlv2-border);
  border-radius: var(--hlv2-radius);
  padding: 28px 22px;
  transition: all 0.2s;
}
.hlv2-improvement-card:hover {
  border-color: var(--hlv2-accent);
  box-shadow: 0 8px 28px rgba(15,173,125,0.1);
  transform: translateY(-2px);
}
.hlv2-improvement-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(15,173,125,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

/* -- FAQ --------------------------------------------------- */
.hlv2-faq { background: var(--hlv2-bg); }
.hlv2-faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--hlv2-border);
  transition: border-color 0.2s;
  margin-bottom: 6px;
}
.hlv2-faq-item--open {
  border-color: var(--hlv2-accent);
  box-shadow: 0 4px 20px rgba(15,173,125,0.1);
}
.hlv2-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.hlv2-faq-btn-text {
  font-family: var(--hlv2-font);
  font-weight: 600;
  font-size: 15px;
  color: var(--hlv2-text);
  line-height: 1.35;
}
.hlv2-faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #F4F4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.hlv2-faq-icon--open {
  background: var(--hlv2-accent);
}
.hlv2-faq-icon svg {
  transition: transform 0.2s;
}
.hlv2-faq-icon--open svg {
  transform: rotate(45deg);
}
.hlv2-faq-answer {
  display: none;
  padding: 0 22px 18px;
  border-top: 1px solid rgba(15,173,125,0.1);
}
.hlv2-faq-answer p {
  font-family: var(--hlv2-font);
  font-size: 14px;
  color: var(--hlv2-text-light);
  line-height: 1.68;
  margin-top: 14px;
}
.hlv2-faq-item--open .hlv2-faq-answer {
  display: block;
}

/* -- Final CTA --------------------------------------------- */
.hlv2-cta-section {
  padding: 96px 0;
  background: #111110;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hlv2-cta-dot-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hlv2-cta-glow {
  position: absolute;
  bottom: -20%; left: 50%;
  transform: translateX(-50%);
  width: 70%; padding-bottom: 40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,173,125,0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: hlv2-glow-pulse 6s ease-in-out infinite;
}
.hlv2-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15,173,125,0.12);
  border: 1px solid rgba(15,173,125,0.25);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

/* -- Footer ------------------------------------------------ */
.hlv2-footer {
  background: var(--hlv2-bg-darker);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hlv2-footer-inner {
  padding: 56px 32px 36px;
}
footer.hlv2-footer .hlv2-footer-nav-link,
.hlv2-footer-nav-link {
  display: block;
  font-family: var(--hlv2-font);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.15s;
}
footer.hlv2-footer .hlv2-footer-nav-link:hover,
.hlv2-footer-nav-link:hover {
  color: var(--hlv2-accent);
}
@media (max-width: 768px) {
  .hlv2-footer-inner { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 480px) {
  .hlv2-footer-inner { padding-left: 16px; padding-right: 16px; }
}
.hlv2-footer-social {
  width: 32px; height: 32px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hlv2-font);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.15s;
}
.hlv2-footer-social:hover {
  border-color: var(--hlv2-accent);
  color: var(--hlv2-accent);
}
.hlv2-footer-cta-box {
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(15,173,125,0.07);
  border: 1px solid rgba(15,173,125,0.15);
  border-radius: 10px;
}
.hlv2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* -- Scrollbar --------------------------------------------- */
body.hlv2-page ::-webkit-scrollbar { width: 5px; }
body.hlv2-page ::-webkit-scrollbar-track { background: transparent; }
body.hlv2-page ::-webkit-scrollbar-thumb { background: #D0D0CC; border-radius: 99px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* -- Tablet ≤ 1100px -------------------------------------- */
@media (max-width: 1100px) {
  .hlv2-container { padding: 0 24px; }

  .hlv2-five-col { grid-template-columns: repeat(3, 1fr); }

  .hlv2-solution-grid,
  .hlv2-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hlv2-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .hlv2-hero-right { display: none !important; }
  .hlv2-hero-left { width: 100% !important; max-width: 100% !important; }

  .hlv2-method-layout {
    flex-direction: column;
    gap: 32px;
  }
  .hlv2-method-timeline { width: 100%; }
}

/* -- Mobile ≤ 768px ---------------------------------------- */
@media (max-width: 768px) {
  .hlv2-container { padding: 0 20px; }

  .hlv2-nav { display: none !important; }
  .hlv2-mobile-btn { display: flex !important; }
  #hlv2-header .hlv2-btn-primary { display: none !important; }

  .hlv2-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .hlv2-stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--hlv2-border);
  }
  .hlv2-stat-item:nth-child(odd)  { border-right: 1px solid var(--hlv2-border) !important; }
  .hlv2-stat-item:nth-child(3),
  .hlv2-stat-item:nth-child(4) { border-bottom: none; }

  .hlv2-two-col   { grid-template-columns: 1fr; gap: 16px; }
  .hlv2-three-col { grid-template-columns: 1fr; gap: 16px; }
  .hlv2-five-col  { grid-template-columns: 1fr 1fr; }

  .hlv2-footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .hlv2-section { padding-top: 64px !important; padding-bottom: 64px !important; }
  .hlv2-hero { padding-top: 104px !important; }

  .hlv2-case-featured { flex-direction: column; }
  .hlv2-case-img-col { width: 100% !important; min-height: 200px; }

  .hlv2-diag-cta-box { padding: 24px 20px; }
  .hlv2-method-panel { padding: 24px 20px; }
  .hlv2-service-wide { flex-direction: column; gap: 16px; }
}

/* -- Small mobile ≤ 480px ---------------------------------- */
@media (max-width: 480px) {
  .hlv2-container { padding: 0 16px; }
  .hlv2-five-col  { grid-template-columns: 1fr; }
  .hlv2-hero-ctas { flex-direction: column; }
  .hlv2-hero-ctas a { width: 100%; justify-content: center; }
}

/* Case cards - image wrapper 16:9 */
.hlv2-case-small .hlv2-case-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 12px 12px 0 0;
}
.hlv2-case-small .hlv2-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* LLC Games dashboard */
.hlv4-llc-dashboard {
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}
.hlv4-llc-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hlv4-llc-label {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #111110;
  letter-spacing: 0.08em;
}
.hlv4-llc-badge {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #0FAD7D;
  letter-spacing: 0.08em;
  background: rgba(15,173,125,0.08);
  padding: 3px 7px;
  border-radius: 4px;
}
.hlv4-llc-title {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #111110;
  letter-spacing: -0.02em;
}
.hlv4-llc-benchmark-card {
  background: #FAFAF9;
  border: 1px solid #F0F0EE;
  border-radius: 10px;
  padding: 14px;
}
.hlv4-llc-bar-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.hlv4-llc-bar-label {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #52525B;
}
.hlv4-llc-bar-label span {
  font-weight: 400;
  color: #A1A1AA;
}
.hlv4-llc-bar-value {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0FAD7D;
  white-space: nowrap;
  margin-left: 8px;
}
.hlv4-llc-bar-value--muted {
  color: #A1A1AA;
}
.hlv4-llc-bar {
  width: 100%;
  height: 6px;
  background: #F0F0EE;
  border-radius: 3px;
  overflow: hidden;
}
.hlv4-llc-bar-fill {
  height: 100%;
  background: #0FAD7D;
  border-radius: 3px;
  min-width: 2px;
}
.hlv4-llc-bar-fill--muted {
  background: #D0D0CC;
}
.hlv4-llc-multiplier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hlv4-llc-multiplier {
  background: rgba(15,173,125,0.06);
  border: 1px solid rgba(15,173,125,0.15);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.hlv4-llc-multiplier-value {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0FAD7D;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hlv4-llc-multiplier-label {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 11px;
  color: #6B7280;
  margin-top: 3px;
  line-height: 1.3;
}
.hlv4-llc-proof-box {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: rgba(15,173,125,0.05);
  border-radius: 8px;
  padding: 10px;
}
.hlv4-llc-proof-box span {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 11px;
  color: #52525B;
  line-height: 1.55;
}
.hlv4-llc-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.hlv4-llc-stat {
  background: #fff;
  border: 1px solid #F0F0EE;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.hlv4-llc-stat-value {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #111110;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hlv4-llc-stat-label {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 11px;
  color: #A1A1AA;
  margin-top: 3px;
}
@media (max-width: 768px) {
  .hlv4-llc-dashboard {
    padding: 16px;
    gap: 10px;
  }
  .hlv4-llc-multiplier-value { font-size: 18px; }
  .hlv4-llc-stat-value { font-size: 14px; }
  .hlv4-llc-stat-grid { gap: 4px; }
}

/* LLC dashboard bar animation */
.hlv4-llc-bar-fill {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hlv4-llc-bar-fill.hlv4-bar-row-2 {
  transition-delay: 150ms;
}
.hlv4-llc-bar-fill.hlv4-bar-row-3 {
  transition-delay: 300ms;
}
.hlv4-llc-dashboard.is-visible .hlv4-llc-bar-fill {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .hlv4-llc-bar-fill {
    transform: scaleX(1);
    transition: none;
  }
}

/* ======================================
   CONTACT PAGE
======================================= */
.hlv2-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.hlv2-contact-form-card {
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.hlv2-contact-form-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0FAD7D, rgba(15,173,125,0.4));
}
.hlv2-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}
.hlv2-contact-sidebar-card {
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.hlv2-contact-label {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111110;
  display: block;
  margin-bottom: 7px;
}
.hlv2-contact-input {
  width: 100%;
  padding: 13px 16px;
  background: #FAFAF9;
  border: 1.5px solid #E0E0DC;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 15px;
  color: #111110;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.hlv2-contact-input:focus {
  border-color: #0FAD7D;
}
.hlv2-contact-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.hlv2-contact-textarea {
  resize: vertical;
  min-height: 120px;
}
.hlv2-contact-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hlv2-contact-delai-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hlv2-contact-delai-btn {
  cursor: pointer;
}
.hlv2-contact-delai-btn span {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 8px;
  border: 1.5px solid #E0E0DC;
  background: #FAFAF9;
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 13px;
  color: #52525B;
  transition: all 0.15s;
  cursor: pointer;
}
.hlv2-contact-delai-btn input:checked + span {
  border-color: #0FAD7D;
  background: rgba(15,173,125,0.06);
  color: #0FAD7D;
  font-weight: 600;
}
.hlv2-contact-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hlv2-contact-step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 32px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.hlv2-contact-step-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(15,173,125,0.5);
}
.hlv2-contact-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.hlv2-contact-use-case-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #F9F9F8;
  border: 1px solid #E8E8E6;
  border-radius: 10px;
  padding: 11px 18px;
  transition: all 0.18s;
}
.hlv2-contact-use-case-chip:hover {
  background: rgba(15,173,125,0.05);
  border-color: rgba(15,173,125,0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,173,125,0.08);
}
.hlv2-contact-use-case-chip span {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111110;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hlv2-contact-form-grid { grid-template-columns: 1fr; }
  .hlv2-contact-sidebar { position: static; }
}
@media (max-width: 768px) {
  .hlv2-contact-steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .hlv2-contact-form-card { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .hlv2-contact-name-row { grid-template-columns: 1fr; }
}

/* Réalisations page */
.hlv2-rl-project-card {
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
}
.hlv2-rl-project-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .hlv2-rl-featured { grid-template-columns: 1fr !important; }
  .hlv2-rl-featured-left { border-right: none !important; border-bottom: 1px solid #E8E8E6; min-height: auto !important; padding: 24px !important; }
}

/* Diagnostic page */
.hlv2-diag-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hlv2-diag-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hlv2-diag-card-why {
  background: #F9F9F8;
  border: 1px solid #E8E8E6;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.hlv2-diag-card-why:hover {
  background: #fff;
  border-color: #0FAD7D;
  box-shadow: 0 8px 28px rgba(15,173,125,0.12);
  transform: translateY(-3px);
}
.hlv2-diag-axe-card {
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.2s;
}
.hlv2-diag-axe-card:hover {
  border-color: rgba(15,173,125,0.3);
  box-shadow: 0 8px 28px rgba(15,173,125,0.08);
  transform: translateY(-2px);
}
.hlv2-diag-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .hlv2-diag-form-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hlv2-diag-three-col { grid-template-columns: 1fr; gap: 16px; }
  .hlv2-diag-two-col { grid-template-columns: 1fr; gap: 16px; }
}

/* Fix email input consistency */
.hlv2-contact-input[type="email"],
.hlv2-contact-input[type="url"],
.hlv2-contact-input[type="tel"] {
  height: auto;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* FAQ icon color via CSS */
.hlv2-faq-icon { color: #6B7280; }
.hlv2-faq-icon--open { color: #fff; }

/* Footer logo blanc */
img.hlv2-footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Service Reservation page */
.hlv2-sr-caps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hlv2-sr-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hlv2-sr-method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .hlv2-sr-caps-grid { grid-template-columns: repeat(2, 1fr); }
  .hlv2-sr-method-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hlv2-sr-caps-grid { grid-template-columns: 1fr; }
  .hlv2-sr-content-grid { grid-template-columns: 1fr; gap: 32px; }
  .hlv2-sr-method-grid { grid-template-columns: 1fr; }
}


/* └ HERO ACQUISITION 2 COLONNES └└└└└└└└└└└└└└└└└└└└└└└ */
.hlv2-acq-hero-grid {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw0, 80px);
}
.hlv2-acq-hero-left {
  flex: 0 0 auto;
  width: 50%;
  max-width: 560px;
}
.hlv2-acq-hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
  padding-right: 28px;
}
.hlv2-acq-dash-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hlv2-acq-dash-float {
  animation: hlv2-float-gentle 6s ease-in-out infinite;
  will-change: transform;
}
.hlv2-acq-badge-tr {
  position: absolute;
  top: -18px;
  right: -18px;
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.1);
  animation: hlv2-float-badge 8s ease-in-out infinite 1;
  z-index: 2;
}
.hlv2-acq-badge-bl {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.1);
  animation: hlv2-float-badge 7s ease-in-out infinite;
  z-index: 2;
}
.hlv2-acq-badge-mr {
  position: absolute;
  top: 45%;
  right: -24px;
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 12px;
  padding: 9px 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 7px;
  animation: hlv2-float-badge 9s ease-in-out infinite 0.5s;
  z-index: 2;
}
@keyframes hlv2-float-gentle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes hlv2-float-badge {
  0%, 100% { transform: translateY(0px); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}
@media (max-width: 860px) {
  .hlv2-acq-hero-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .hlv2-acq-hero-left {
    width: 100%;
    max-width: 100%;
  }
  .hlv2-acq-hero-right {
    width: 100%;
    padding-right: 0;
    padding-top: 48px;
    justify-content: center;
  }
  .hlv2-acq-dash-wrapper {
    max-width: 100%;
  }
  .hlv2-acq-badge-tr,
  .hlv2-acq-badge-bl,
  .hlv2-acq-badge-mr {
    display: none;
  }
}

/* -- Automatisation page hero 2-col ------------------- */
.hlv2-aut-hero-grid {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}
.hlv2-aut-hero-left {
  flex: 0 0 auto;
  width: 50%;
  max-width: 560px;
}
.hlv2-aut-hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
  padding-right: 28px;
}
.hlv2-aut-dash-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hlv2-aut-dash-float {
  animation: hlv2-float-gentle 6s ease-in-out infinite;
  will-change: transform;
}
.hlv2-aut-badge-tr {
  position: absolute;
  top: -18px;
  right: -18px;
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.1);
  animation: hlv2-float-badge 8s ease-in-out infinite 1s;
  z-index: 2;
}
.hlv2-aut-badge-bl {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.1);
  animation: hlv2-float-badge 7s ease-in-out infinite;
  z-index: 2;
}
.hlv2-aut-badge-mr {
  position: absolute;
  top: 45%;
  right: -24px;
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 12px;
  padding: 9px 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 7px;
  animation: hlv2-float-badge 9s ease-in-out infinite 0.5s;
  z-index: 2;
}
@media (max-width: 860px) {
  .hlv2-aut-hero-grid { flex-direction: column; align-items: flex-start; }
  .hlv2-aut-hero-left { width: 100%; max-width: 100%; }
  .hlv2-aut-hero-right { width: 100%; padding-right: 0; padding-top: 48px; justify-content: center; }
  .hlv2-aut-dash-wrapper { max-width: 100%; }
  .hlv2-aut-badge-tr, .hlv2-aut-badge-bl, .hlv2-aut-badge-mr { display: none; }
}

/* -- Réservation page hero 2-col ----------------------- */
.hlv2-res-hero-grid {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
}
.hlv2-res-hero-left {
  flex: 0 0 auto;
  width: 52%;
  max-width: 580px;
}
.hlv2-res-hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
  padding-right: 28px;
}
.hlv2-res-dash-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hlv2-res-dash-float {
  animation: hlv2-float-gentle 6s ease-in-out infinite;
  will-change: transform;
}
.hlv2-res-badge-tr {
  position: absolute; top: -18px; right: -18px;
  background: #fff; border: 1px solid #E8E8E6;
  border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.1);
  animation: hlv2-float-badge 8s ease-in-out infinite 1s;
  z-index: 2;
}
.hlv2-res-badge-bl {
  position: absolute; bottom: -18px; left: -22px;
  background: #fff; border: 1px solid #E8E8E6;
  border-radius: 12px; padding: 10px 13px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.1);
  animation: hlv2-float-badge 7s ease-in-out infinite;
  z-index: 2;
}
@media (max-width: 860px) {
  .hlv2-res-hero-grid { flex-direction: column; align-items: flex-start; }
  .hlv2-res-hero-left { width: 100%; max-width: 100%; }
  .hlv2-res-hero-right { width: 100%; padding-right: 0; padding-top: 40px; justify-content: center; }
  .hlv2-res-dash-wrapper { max-width: 100%; }
  .hlv2-res-badge-tr, .hlv2-res-badge-bl { display: none; }
}

/* ============================================================
   /diagnostic-digital/ - hero 2 colonnes
   ============================================================ */
.hlv2-diag-hero-grid {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}
.hlv2-diag-hero-left {
  width: 52%;
  max-width: 580px;
  flex-shrink: 0;
}
.hlv2-diag-hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}
.hlv2-diag-dash-wrapper {
  position: relative;
  max-width: 480px;
  width: 100%;
}
.hlv2-diag-dash-float {
  animation: hlv2-float-gentle 5s ease-in-out infinite;
}
.hlv2-diag-badge-tr {
  position: absolute;
  top: -18px;
  right: -20px;
  background: #fff;
  border: 1px solid #E4E4E0;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 2;
  animation: hlv2-float-badge 4s ease-in-out infinite;
}
.hlv2-diag-badge-bl {
  position: absolute;
  bottom: -18px;
  left: -20px;
  background: #fff;
  border: 1px solid #E4E4E0;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 2;
  animation: hlv2-float-badge 4.5s ease-in-out infinite;
  animation-delay: 0.6s;
}
.hlv2-diag-badge-mr {
  position: absolute;
  top: 44%;
  right: -28px;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #FEE2E2;
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 4px 14px rgba(239,68,68,0.12);
  z-index: 2;
  animation: hlv2-float-badge 3.8s ease-in-out infinite;
  animation-delay: 1.1s;
}
@media (max-width: 860px) {
  .hlv2-diag-hero-grid {
    flex-direction: column;
    gap: 48px;
  }
  .hlv2-diag-hero-left {
    width: 100%;
    max-width: 100%;
  }
  .hlv2-diag-hero-right {
    width: 100%;
    justify-content: center;
  }
  .hlv2-diag-dash-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }
  .hlv2-diag-badge-tr,
  .hlv2-diag-badge-bl,
  .hlv2-diag-badge-mr {
    display: none;
  }
}

/* ===============================================================
   VITRINE & E-COMMERCE SHARED STYLES  (.hlv2-sv-*, .hlv2-ec-*)
   =============================================================== */

/* Guard: absorbs a stray escaped-newline token that leaks from upstream diagnostic CSS written with literal backslash-n; keeps the next selector clean. Do not remove. */
.hlv2-sv-nleak-guard { }

/* Hero layout */
.hlv2-sv-hero {
  padding: 132px 0 96px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hlv2-sv-hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  padding-bottom: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, #0FAD7D14 0%, transparent 70%);
  pointer-events: none;
}
.hlv2-sv-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hlv2-sv-hero-left { max-width: 560px; }
.hlv2-sv-hero-right { position: relative; }
.hlv2-sv-hero-mockup-wrap { position: relative; }

/* Hero badges */
.hlv2-sv-badge-bl,
.hlv2-sv-badge-tr {
  position: absolute;
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  z-index: 10;
  animation: hlv2-float-badge 4s ease-in-out infinite;
}
.hlv2-sv-badge-bl { bottom: -16px; left: -20px; }
.hlv2-sv-badge-tr { top: -16px; right: -16px; animation-delay: 2s; }

/* 3-col, 2-col, 4-col grids */
.hlv2-sv-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hlv2-sv-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hlv2-sv-four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hlv2-ec-five-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Problem cards (red accent) */
.hlv2-sv-card-why {
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 16px;
  padding: 26px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.hlv2-sv-card-why:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.hlv2-sv-card-top-red {
  height: 3px;
  width: 36px;
  background: #EF4444;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hlv2-sv-icon-box-red {
  width: 42px; height: 42px;
  background: #EF444410;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* Approach cards (green accent) */
.hlv2-sv-card-approach {
  background: #F9F9F8;
  border: 1px solid #E8E8E6;
  border-radius: 16px;
  padding: 26px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.hlv2-sv-card-approach:hover {
  box-shadow: 0 8px 32px rgba(15,173,125,0.08);
  transform: translateY(-3px);
}
.hlv2-sv-card-top-green {
  height: 3px;
  width: 36px;
  background: #0FAD7D;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hlv2-sv-icon-box-green {
  width: 42px; height: 42px;
  background: #0FAD7D12;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* Function cards */
.hlv2-sv-fn-card {
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 16px;
  padding: 26px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.hlv2-sv-fn-card:hover {
  box-shadow: 0 8px 32px rgba(15,173,125,0.08);
  transform: translateY(-3px);
}
.hlv2-sv-fn-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Process cards (dark) */
.hlv2-sv-process-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 20px;
  transition: background 0.18s, border-color 0.18s;
}
.hlv2-sv-process-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(15,173,125,0.25);
}
.hlv2-sv-process-top {
  height: 3px;
  width: 32px;
  background: #0FAD7D;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hlv2-sv-process-icon {
  width: 36px; height: 36px;
  background: #0FAD7D20;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* For-whom cards */
.hlv2-sv-forwhom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hlv2-sv-forwhom-card {
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.hlv2-sv-forwhom-card:hover {
  box-shadow: 0 6px 24px rgba(15,173,125,0.08);
  transform: translateY(-2px);
}

/* Project cards */
.hlv2-sv-proj-card {
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 20px;
  overflow: hidden;
}
.hlv2-sv-proj-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
  padding: 24px;
}
.hlv2-sv-proj-inner--rev {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.hlv2-sv-proj-inner--rev .hlv2-sv-proj-img { order: 2; }
.hlv2-sv-proj-inner--rev .hlv2-sv-proj-content { order: 1; }
.hlv2-sv-proj-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 16px;
  overflow: hidden;
}
.hlv2-sv-proj-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hlv2-sv-proj-content { padding: 12px 20px; }

/* Project tags */
.hlv2-sv-tag {
  display: inline-block;
  background: #0FAD7D10;
  border: 1px solid #0FAD7D20;
  color: #0FAD7D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 99px;
  letter-spacing: 0.04em;
}

/* Work box */
.hlv2-sv-work-box {
  background: #F9F9F8;
  border: 1px solid #E8E8E6;
  border-radius: 12px;
  padding: 18px 20px;
}
.hlv2-sv-work-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #A1A1AA;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hlv2-sv-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hlv2-sv-work-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #52525B;
}
.hlv2-sv-work-check {
  width: 18px; height: 18px;
  background: #0FAD7D12;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* FAQ */
.hlv2-sv-faq-item {
  background: #fff;
  border: 1px solid #E8E8E6;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.18s;
}
.hlv2-sv-faq-item[data-open="true"] {
  border-color: #0FAD7D30;
}
.hlv2-sv-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}
.hlv2-sv-faq-btn:hover { background: #F9F9F8; }
.hlv2-sv-faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.hlv2-sv-faq-icon--closed { background: #F0F0EE; color: #6B7280; }
.hlv2-sv-faq-icon--open   { background: #0FAD7D14; color: #0FAD7D; }
.hlv2-sv-faq-answer { padding: 0 20px 18px; }

/* Footer */
.hlv2-sv-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.hlv2-sv-footer-link {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.hlv2-sv-footer-link:hover { color: rgba(255,255,255,0.85); }
.hlv2-sv-footer-legal {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.15s;
}
.hlv2-sv-footer-legal:hover { color: rgba(255,255,255,0.5); }

/* E-commerce context cards */
.hlv2-ec-context-card {
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #E8E8E6;
  transition: box-shadow 0.18s, transform 0.18s;
}
.hlv2-ec-context-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.hlv2-ec-context-card--digital { background: #0FAD7D06; border-color: #0FAD7D20; }
.hlv2-ec-context-card--physical { background: #52525B06; border-color: #E8E8E6; }

/* ===============================================================
   RESPONSIVE - VITRINE & E-COMMERCE
   =============================================================== */
@media (max-width: 1100px) {
  .hlv2-sv-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hlv2-sv-hero-right { max-width: 520px; margin: 0 auto; }
  .hlv2-sv-badge-bl { left: 0; }
  .hlv2-sv-badge-tr { right: 0; }
  .hlv2-sv-proj-inner,
  .hlv2-sv-proj-inner--rev { grid-template-columns: 1fr; }
  .hlv2-sv-proj-inner--rev .hlv2-sv-proj-img,
  .hlv2-sv-proj-inner--rev .hlv2-sv-proj-content { order: unset; }
  .hlv2-ec-five-grid { grid-template-columns: repeat(3, 1fr); }
  .hlv2-sv-four-col { grid-template-columns: repeat(2, 1fr); }
  .hlv2-sv-footer-grid { grid-template-columns: 1fr 1fr; }
  .hlv2-sv-forwhom-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hlv2-sv-hero { padding: 104px 0 64px; }
  .hlv2-sv-three-col,
  .hlv2-sv-two-col,
  .hlv2-sv-four-col,
  .hlv2-ec-five-grid,
  .hlv2-sv-forwhom-grid { grid-template-columns: 1fr; }
  .hlv2-sv-proj-content { padding: 28px 24px; }
  .hlv2-sv-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hlv2-sv-work-grid { grid-template-columns: 1fr; }
  .hlv2-sv-badge-bl, .hlv2-sv-badge-tr { display: none; }
}

.hlv2-sv-kicker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 18px;
  min-width: max-content;
  background: #0FAD7D10;
  border: 1px solid #0FAD7D22;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #0FAD7D;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hlv2-sv-forwhom-card .hlv2-sv-icon-box-green {
  width: 46px;
  height: 46px;
  min-width: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  margin-bottom: 0;
  align-self: flex-start;
}

/* ===== BRANDING PAGE (/branding-identite-visuelle/) ===== */
.hlv2-br-hero { padding: 132px 0 88px; }
.hlv2-br-hero-left { width: 52%; max-width: 580px; }
.hlv2-br-two-col   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.hlv2-br-three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hlv2-br-four-col  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hlv2-br-whatis    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hlv2-br-footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.1fr; gap: 48px; }
.hlv2-br-articul   { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0; }
.hlv2-br-proj-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
@media (max-width: 1100px) {
  .hlv2-br-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .hlv2-br-hero-right { display: none !important; }
  .hlv2-br-hero-left  { width: 100% !important; max-width: 100% !important; }
  .hlv2-br-four-col { grid-template-columns: repeat(2, 1fr); }
  .hlv2-br-whatis   { grid-template-columns: repeat(2, 1fr); }
  .hlv2-br-articul  { grid-template-columns: 1fr; }
  .hlv2-br-articul-arrow { display: none !important; }
}
@media (max-width: 768px) {
  .hlv2-br-hero { padding: 104px 0 64px; }
  .hlv2-br-two-col, .hlv2-br-three-col, .hlv2-br-four-col, .hlv2-br-whatis { grid-template-columns: 1fr; gap: 16px; }
  .hlv2-br-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hlv2-br-proj-inner  { grid-template-columns: 1fr !important; }
  .hlv2-br-proj-content { padding: 24px 20px !important; }
}

/* Branding realisations media — adapt card to image (no crop, no forced ratio) */
.hlv2-br-case-media { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #fff; overflow: hidden; }
.hlv2-br-case-media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.hlv2-br-case-media--pizza { background: #F4F1EC; padding: 28px; min-height: 340px; }
.hlv2-br-case-media--pizza img { border-radius: 10px; box-shadow: 0 18px 44px rgba(0,0,0,0.13); }
.hlv2-br-case-media--llc { background: #F5F5F3; border: 1px solid #EDEDEA; border-radius: 14px; height: auto; }
.hlv2-br-case-media--llc img { width: 100%; height: auto; max-height: none; }
.hlv2-br-case-media--bambuddha { background: #EEEEED; height: auto; }
.hlv2-br-case-media--bambuddha img { width: 100%; height: auto; max-height: none; }
.hlv2-br-case-badge { position: absolute; top: 18px; left: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; background: rgba(15,173,125,0.12); border: 1px solid rgba(15,173,125,0.25); border-radius: 99px; padding: 5px 12px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 700; color: #0FAD7D; letter-spacing: 0.04em; }
@media (max-width: 768px) { .hlv2-br-case-media--pizza { padding: 16px; min-height: 0; } }

/* ===== Services dropdown (desktop) + mobile sublist ===== */
.hlv2-nav-item { position: relative; display: inline-flex; align-items: center; }
.hlv2-nav-trigger { display: inline-flex; align-items: center; gap: 4px; }
.hlv2-nav-caret { opacity: 0.55; transition: transform 0.2s ease; }
.hlv2-has-dropdown:hover .hlv2-nav-caret,
.hlv2-has-dropdown:focus-within .hlv2-nav-caret { transform: rotate(180deg); }
.hlv2-dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 10px; min-width: 250px; max-width: 340px;
  background: #fff; border: 1px solid #E8E8E6; border-radius: 14px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.12), 0 3px 10px rgba(0,0,0,0.05);
  padding: 8px; display: flex; flex-direction: column; gap: 1px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 300;
}
.hlv2-dropdown::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.hlv2-has-dropdown:hover .hlv2-dropdown,
.hlv2-has-dropdown:focus-within .hlv2-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.hlv2-dropdown a {
  display: block; padding: 9px 12px; border-radius: 9px;
  font-family: var(--hlv2-font); font-size: 13.5px; font-weight: 500;
  color: #52525B; text-decoration: none; white-space: nowrap; transition: background 0.14s, color 0.14s;
}
.hlv2-dropdown a:hover, .hlv2-dropdown a:focus { background: rgba(15,173,125,0.08); color: #0FAD7D; }
/* Mobile services sublist */
.hlv2-mobile-sub { padding: 2px 0 4px; }
.hlv2-mobile-sub-label {
  display: block; font-family: var(--hlv2-font); font-size: 12px; font-weight: 700;
  color: #A1A1AA; letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 0 4px;
}
.hlv2-mobile-menu .hlv2-mobile-sublink {
  display: block; font-family: var(--hlv2-font); font-size: 14.5px; font-weight: 500;
  color: #52525B; text-decoration: none; padding: 10px 0 10px 14px;
  border-bottom: none; border-left: 2px solid #EDEDEA;
}
.hlv2-mobile-menu .hlv2-mobile-sublink:hover,
.hlv2-mobile-menu .hlv2-mobile-sublink:active { color: #0FAD7D; border-left-color: #0FAD7D; }

/* ===============================================================
   LEGAL PAGES  (.hlv2-legal-*, .hlv2-toc-*)
   /mentions-legales/ /politique-de-confidentialite/
   /politique-cookies/ /conditions-generales-utilisation/
   =============================================================== */
.hlv2-legal-hero {
  padding: 132px 0 40px;
  position: relative;
  overflow: hidden;
  background: var(--hlv2-bg);
}
.hlv2-legal-hero-dot-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, #E0E0DC 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}
.hlv2-legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(15,173,125,0.07);
  border: 1px solid rgba(15,173,125,0.25);
  border-radius: 99px;
  padding: 5px 14px 5px 10px;
  font-family: var(--hlv2-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--hlv2-accent);
  letter-spacing: 0.01em;
}
.hlv2-legal-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hlv2-accent);
}
.hlv2-legal-hero h1 {
  font-family: var(--hlv2-font);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--hlv2-text);
  margin-bottom: 16px;
}
.hlv2-legal-intro {
  font-family: var(--hlv2-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--hlv2-text-mid);
  max-width: 640px;
  margin-bottom: 20px;
}
.hlv2-legal-updated-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-radius: 99px;
  padding: 7px 16px;
  font-family: var(--hlv2-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--hlv2-text-mid);
}
.hlv2-legal-updated-chip strong { color: var(--hlv2-text); font-weight: 700; }

.hlv2-legal-main { padding: 8px 0 96px; }
.hlv2-legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.hlv2-toc-card {
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: var(--hlv2-shadow-md);
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 96px - 32px);
  overflow-y: auto;
}
.hlv2-toc-title {
  font-family: var(--hlv2-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--hlv2-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hlv2-toc-card nav { display: flex; flex-direction: column; gap: 2px; }
.hlv2-toc-card nav a {
  display: block;
  font-family: var(--hlv2-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--hlv2-text-mid);
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.15s;
  border-left: 2px solid transparent;
}
.hlv2-toc-card nav a:hover { background: rgba(0,0,0,0.035); color: var(--hlv2-text); }
.hlv2-toc-card nav a.hlv2-toc-active {
  background: rgba(15,173,125,0.08);
  color: var(--hlv2-accent);
  font-weight: 700;
  border-left-color: var(--hlv2-accent);
}

.hlv2-legal-content {
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--hlv2-shadow-md);
}
.hlv2-legal-section { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid #F0F0EE; }
.hlv2-legal-section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.hlv2-legal-section h2 {
  font-family: var(--hlv2-font);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--hlv2-text);
  margin-bottom: 16px;
  scroll-margin-top: 100px;
}
.hlv2-legal-section p {
  font-family: var(--hlv2-font);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--hlv2-text-mid);
  margin-bottom: 14px;
}
.hlv2-legal-section p:last-child { margin-bottom: 0; }
.hlv2-legal-section ul { margin: 0 0 14px 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.hlv2-legal-section ul:last-child { margin-bottom: 0; }
.hlv2-legal-section li {
  font-family: var(--hlv2-font);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--hlv2-text-mid);
}
.hlv2-legal-section strong { color: var(--hlv2-text); font-weight: 700; }
.hlv2-legal-section a { color: var(--hlv2-accent); font-weight: 600; text-decoration: none; }
.hlv2-legal-section a:hover { text-decoration: underline; }
.hlv2-legal-placeholder {
  color: var(--hlv2-accent);
  background: rgba(15,173,125,0.08);
  border-radius: 5px;
  padding: 1px 6px;
  font-weight: 600;
  font-size: 0.95em;
  white-space: nowrap;
}

.hlv2-toc-mobile { display: none; }
.hlv2-toc-mobile summary {
  list-style: none;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-radius: 16px;
  padding: 14px 18px;
  font-family: var(--hlv2-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--hlv2-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.hlv2-toc-mobile summary::-webkit-details-marker { display: none; }
.hlv2-toc-chev { transition: transform 0.2s; }
.hlv2-toc-mobile[open] .hlv2-toc-chev { transform: rotate(180deg); }
.hlv2-toc-mobile-body {
  background: #fff;
  border: 1px solid var(--hlv2-border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 8px 14px 14px;
  margin-top: -34px;
  margin-bottom: 28px;
}
.hlv2-toc-mobile-body a {
  display: block;
  font-family: var(--hlv2-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--hlv2-text-mid);
  text-decoration: none;
  padding: 9px 6px;
  border-bottom: 1px solid #F4F4F2;
}
.hlv2-toc-mobile-body a:last-child { border-bottom: none; }

.hlv2-legal-contact {
  margin-top: 56px;
  background: linear-gradient(145deg, rgba(15,173,125,0.06) 0%, var(--hlv2-bg) 100%);
  border: 1px solid rgba(15,173,125,0.18);
  border-radius: 24px;
  padding: clamp(28px,4vw,48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.hlv2-legal-contact h3 {
  font-family: var(--hlv2-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--hlv2-text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.hlv2-legal-contact p {
  font-family: var(--hlv2-font);
  font-size: 15px;
  color: var(--hlv2-text-mid);
  line-height: 1.6;
  max-width: 480px;
}
.hlv2-legal-contact .hlv2-btn-primary { padding: 13px 26px; font-size: 15px; flex-shrink: 0; }

.hlv2-footer-nav-link--current { color: var(--hlv2-accent) !important; }

@media (max-width: 1000px) {
  .hlv2-legal-layout { grid-template-columns: 1fr; }
  .hlv2-toc-card { display: none; }
  .hlv2-toc-mobile { display: block; }
}
@media (max-width: 768px) {
  .hlv2-legal-hero { padding: 104px 0 28px; }
  .hlv2-legal-content { padding: 24px 20px; border-radius: 18px; }
  .hlv2-legal-contact { flex-direction: column; align-items: flex-start; }
  .hlv2-legal-contact .hlv2-btn-primary { width: 100%; justify-content: center; }
}

/* ===== Sticky sommaire fix — legal pages only (scoped via :has, does not touch Divi/child theme) ===== */
body.hlv2-page:has(.hlv2-legal-main),
.hlv2-wrapper:has(.hlv2-legal-main) {
  overflow: visible;
}
@media (max-width: 1000px) {
  .hlv2-toc-card { max-height: none; overflow-y: visible; }
}
