/* ============================================================
   HOME v2 — HOMOGÉNÉISÉE avec la DA LP PAC
   Bleu nuit dégradé · Lime accents · Anton typo · Vouvoiement
   Composition :
   - HERO   = Direction C (mega-typo + numérotation N°01)
   - TRUST  = Direction A (ticker)
   - PRO/PART = Direction A (cards 01/02/03 split-screen)
   - WHY    = Direction A (mega-typo + piliers)
   - STATS  = Direction A
   - FAQ    = Direction A (lignes épurées + plus)
   ============================================================ */

* { box-sizing: border-box; }

/* ---------- App container ---------- */
.hv2 {
  min-height: 100vh;
  background: var(--neo-blue-night);
  color: var(--neo-white);
  font-family: var(--font-body);
}

/* ============================================================
   NAV — copié de la LP PAC
   ============================================================ */
.hv2 .nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 26, 45, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.hv2 .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.hv2 .nav-logo {
  height: 36px;
  width: auto;
  display: block;
}
/* .hv2 .nav-tabs / .hv2 .nav-tab : règles centralisées dans tokens.css */
.hv2 .nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hv2 .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline-strong);
  transition: all var(--t-fast) var(--ease-out);
}
.hv2 .nav-phone:hover { background: rgba(255,255,255,0.06); }

/* Buttons (LP PAC) */
.hv2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-med) var(--ease-out);
  white-space: nowrap;
}
.hv2 .btn-primary {
  background: var(--neo-lime);
  color: var(--neo-blue-night);
}
.hv2 .btn-primary:hover {
  background: var(--neo-white);
  box-shadow: var(--shadow-cta);
  transform: translateY(-1px);
}
.hv2 .btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--neo-lime);
}
.hv2 .btn-ghost:hover {
  background: rgba(204, 244, 7, 0.08);
}
.hv2 .btn-lg {
  font-size: 17px;
  padding: 18px 28px;
}
.hv2 .btn-arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease-out);
}
.hv2 .btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   HERO — Direction C, en bleu nuit
   ============================================================ */
.hv2-hero {
  position: relative;
  min-height: 92vh;
  padding: 96px 32px 112px;
  color: var(--neo-white);
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% 0%, rgba(204, 244, 7, 0.10), transparent 60%),
    linear-gradient(135deg, #050F1C 0%, #081A2D 40%, #0D3A66 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hv2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hv2-hero-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
}
.hv2-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 100%, rgba(8, 26, 45, 0.55), transparent 70%);
}
.hv2-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 80px;
}
.hv2-hero-content::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hv2-hero-content > * { position: relative; z-index: 1; }
.hv2-hero-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.hv2-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(204, 244, 7, 0.28);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neo-lime);
  background: rgba(204, 244, 7, 0.12);
}
.hv2-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neo-lime);
  box-shadow: 0 0 0 4px rgba(204, 244, 7, 0.2);
  animation: hv2pulse 2s var(--ease-out) infinite;
}
@keyframes hv2pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(204, 244, 7, 0.2); }
  50%      { box-shadow: 0 0 0 9px rgba(204, 244, 7, 0); }
}
.hv2-meta-info {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neo-lime);
}
.hv2-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7.5vw, 120px);
  line-height: 1.15;
  margin: 0;
  color: var(--neo-white);
  letter-spacing: -0.025em;
  text-transform: none;
}
.hv2-line { display: block; }
.hv2-line-italic em {
  font-style: italic;
  color: var(--neo-lime);
}
.hv2-line-tail {
  font-size: clamp(34px, 5vw, 80px);
  margin-top: 12px;
}
.hv2-line-tail em {
  font-style: italic;
  color: var(--neo-lime);
}
.hv2-hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.hv2-hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
  max-width: 520px;
}
.hv2-hero-meta-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.hv2-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
  flex-wrap: wrap;
}
.hv2-stars {
  color: var(--neo-gold);
  letter-spacing: 1.5px;
}
.hv2-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   TICKER (Direction A — chiffres clés)
   ============================================================ */
.hv2-ticker {
  background: var(--neo-blue-night);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 36px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.hv2-ticker-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: hv2-ticker-roll 50s linear infinite;
}
@keyframes hv2-ticker-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.hv2-ticker-item {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  flex-shrink: 0;
}
.hv2-ticker-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--neo-lime);
  letter-spacing: -0.01em;
}
.hv2-ticker-lbl {
  font-size: 16px;
  color: var(--fg-muted);
  white-space: nowrap;
}
.hv2-ticker-sep {
  color: var(--neo-lime);
  font-size: 16px;
  margin-left: 16px;
  opacity: 0.5;
}

/* ============================================================
   STACK — PRO + PART en quinconce (alternance image / texte)
   ============================================================ */
.hv2-stack {
  background: var(--neo-blue-night);
  padding: 120px 32px;
  border-top: 1px solid var(--hairline);
  position: relative;
}
.hv2-stack-pro {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(204, 244, 7, 0.06), transparent 60%),
    var(--neo-blue-night);
}
.hv2-stack-part {
  background:
    radial-gradient(900px 500px at 0% 100%, rgba(13, 58, 102, 0.5), transparent 60%),
    var(--neo-blue-night);
}
.hv2-stack-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hv2-stack-inner-reverse > .hv2-stack-visual { order: 1; }
.hv2-stack-inner-reverse > .hv2-stack-text { order: 2; }
.hv2-stack-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hv2-stack-text > .hv2-split-tag { margin-bottom: 4px; }
.hv2-stack-text > .hv2-split-title { margin: 0; }
.hv2-stack-text > .hv2-split-sub { margin: 0 0 16px; }
.hv2-stack-text > .hv2-pro-list { margin: 8px 0 24px; }
.hv2-stack-text > .hv2-split-cta { align-self: flex-start; }

/* Visual / placeholder */
.hv2-stack-visual {
  position: relative;
  width: 100%;
}
.hv2-stack-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid rgba(204, 244, 7, 0.5);
  box-shadow:
    0 0 0 1px rgba(204, 244, 7, 0.10),
    0 30px 80px -30px rgba(0, 0, 0, 0.6);
  background:
    linear-gradient(135deg, rgba(13, 58, 102, 0.85), rgba(8, 26, 45, 0.95));
  display: grid;
  place-items: center;
}
.hv2-stack-visual-pro .hv2-stack-photo-frame {
  background:
    linear-gradient(135deg, rgba(13, 58, 102, 0.7), rgba(8, 26, 45, 0.95)),
    repeating-linear-gradient(45deg, rgba(204, 244, 7, 0.04) 0 2px, transparent 2px 14px);
}
.hv2-stack-visual-part .hv2-stack-photo-frame {
  background:
    linear-gradient(180deg, rgba(13, 58, 102, 0.6) 0%, rgba(8, 26, 45, 0.95) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 18px);
}
.hv2-stack-photo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204, 244, 7, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 244, 7, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hv2-stack-photo-icon {
  color: rgba(204, 244, 7, 0.55);
  position: relative;
  z-index: 1;
}
.hv2-stack-photo-label {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(8, 26, 45, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(204, 244, 7, 0.3);
  border-radius: var(--r-md);
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hv2-stack-photo-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--neo-lime);
  letter-spacing: 0.04em;
}
.hv2-stack-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hv2-stack-photo-frame-image .hv2-stack-photo-label {
  z-index: 2;
}

/* Responsive */
@media (max-width: 980px) {
  .hv2-stack { padding: 80px 24px; }
  .hv2-stack-inner { grid-template-columns: 1fr; gap: 40px; }
  .hv2-stack-inner-reverse > .hv2-stack-visual { order: 2; }
  .hv2-stack-inner-reverse > .hv2-stack-text { order: 1; }
  .hv2-stack-photo-frame { aspect-ratio: 4 / 3; }
}
.hv2-split-tag {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neo-lime);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hv2-split-tag::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--neo-lime);
}
.hv2-split-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--neo-white);
  text-transform: none;
  letter-spacing: -0.005em;
}
.hv2-split-title em {
  font-style: italic;
  color: var(--neo-lime);
}
.hv2-split-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
  max-width: 480px;
}

/* PRO — liste 01/02/03 */
.hv2-pro-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
}
.hv2-pro-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  transition: padding 200ms var(--ease-out);
}
.hv2-pro-row:last-child { border-bottom: 1px solid var(--hairline); }
.hv2-pro-row:hover { padding-left: 8px; }
.hv2-pro-code {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
  color: var(--neo-lime);
}
.hv2-pro-body { display: flex; flex-direction: column; gap: 8px; }
.hv2-pro-row-top {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hv2-pro-row-top h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  margin: 0;
  color: var(--neo-white);
  text-transform: none;
}
.hv2-pro-status {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(204, 244, 7, 0.14);
  color: var(--neo-lime);
  border: 1px solid rgba(204, 244, 7, 0.3);
}
.hv2-pro-status.is-soon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg-faint);
  border-color: var(--hairline);
}
.hv2-pro-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}
.hv2-pro-target {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-top: 4px;
}
.hv2-pro-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: grid;
  place-items: center;
  color: var(--neo-white);
  text-decoration: none;
  transition: all var(--t-fast) var(--ease-out);
  flex-shrink: 0;
}
.hv2-pro-arrow:hover {
  background: var(--neo-lime);
  border-color: var(--neo-lime);
  color: var(--neo-blue-night);
}
.hv2-split-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--neo-lime);
  color: var(--neo-white);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  background: transparent;
  transition: all var(--t-fast) var(--ease-out);
}
.hv2-split-cta:hover {
  background: rgba(204, 244, 7, 0.08);
}

/* PART — card produit phare */
.hv2-part-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hv2-part-head { display: flex; flex-direction: column; gap: 6px; }
.hv2-part-product {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neo-lime);
}
.hv2-part-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 0.98;
  margin: 0;
  color: var(--neo-white);
  text-transform: none;
}
.hv2-part-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0;
}
.hv2-part-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hv2-part-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--neo-white);
}
.hv2-part-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--neo-lime);
  color: var(--neo-blue-night);
  flex-shrink: 0;
}
.hv2-part-note {
  font-size: 13px;
  color: var(--fg-faint);
  margin: 0;
}

/* ============================================================
   POURQUOI — Direction A (mega-typo + piliers)
   ============================================================ */
.hv2-why {
  background: var(--neo-blue-night);
  padding: 120px 32px;
  border-top: 1px solid var(--hairline);
}
.hv2-why-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.hv2-why-head { margin-bottom: 64px; max-width: 900px; }
.hv2-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neo-lime);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hv2-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--neo-lime);
  display: inline-block;
}
.hv2-why-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.15;
  margin: 0;
  color: var(--neo-white);
  letter-spacing: -0.01em;
  text-transform: none;
  text-wrap: balance;
}
.hv2-why-title em {
  font-style: italic;
  color: var(--neo-lime);
}
.hv2-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.hv2-pillar {
  padding: 40px 32px 0 0;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hv2-pillar:last-child {
  border-right: none;
  padding-right: 0;
}
.hv2-pillar:not(:first-child) { padding-left: 32px; }
.hv2-pillar-n {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.85;
  color: var(--neo-lime);
}
.hv2-pillar-rule {
  width: 48px;
  height: 1px;
  background: var(--hairline-strong);
}
.hv2-pillar h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
  color: var(--neo-white);
  text-transform: none;
}
.hv2-pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* ============================================================
   STATS — Direction A
   ============================================================ */
.hv2-stats {
  background: var(--neo-blue-night);
  padding: 64px 32px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.hv2-stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hv2-stat {
  padding: 24px 32px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hv2-stat:first-child { padding-left: 0; }
.hv2-stat:last-child { border-right: none; padding-right: 0; }
.hv2-stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.95;
  color: var(--neo-lime);
  letter-spacing: -0.02em;
}
.hv2-stat-num.is-multi {
  font-size: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}
.hv2-stat-lbl {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ============================================================
   FAQ — Direction A
   ============================================================ */
.hv2-faq {
  background: var(--neo-blue-night);
  padding: 120px 32px;
}
.hv2-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hv2-faq-head { margin-bottom: 56px; }
.hv2-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.hv2-faq-item {
  border-bottom: 1px solid var(--hairline);
}
.hv2-faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font: inherit;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  color: var(--neo-white);
  text-align: left;
  transition: padding 180ms var(--ease-out);
  text-transform: none;
}
.hv2-faq-q:hover { padding-left: 8px; color: var(--neo-lime); }
.hv2-faq-q-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--neo-white);
  line-height: 1;
  flex-shrink: 0;
  transition: all var(--t-med) var(--ease-out);
}
.hv2-faq-q-icon svg { display: block; }
.hv2-faq-item.is-open .hv2-faq-q-icon {
  transform: rotate(45deg);
  background: var(--neo-lime);
  border-color: var(--neo-lime);
  color: var(--neo-blue-night);
}
.hv2-faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms var(--ease-out);
}
.hv2-faq-item.is-open .hv2-faq-a-wrap { grid-template-rows: 1fr; }
.hv2-faq-a {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.hv2-faq-item.is-open .hv2-faq-a { padding: 0 0 28px; max-width: 820px; }

/* ============================================================
   DÉCOUVRIR NEO ENERGIE — accès À propos
   ============================================================ */
.hv2-discover {
  background: var(--neo-blue-night);
  padding: 120px 32px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.hv2-discover-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
}
.hv2-discover-text { display: flex; flex-direction: column; }
.hv2-discover-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: var(--neo-white);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hv2-discover-accent { color: var(--neo-lime); }
.hv2-discover-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hv2-discover-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--neo-white);
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
.hv2-discover-cta:hover,
.hv2-discover-cta:focus-visible {
  background: var(--neo-lime);
  border-color: var(--neo-lime);
  color: var(--neo-blue-night);
  outline: none;
}
.hv2-discover-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hv2-discover-stat {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  align-items: center;
  gap: 40px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(204, 244, 7, 0.35);
  border-radius: 16px;
}
.hv2-discover-stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--neo-lime);
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.hv2-discover-stat-lbl {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 980px) {
  .hv2-discover { padding: 80px 24px; }
  .hv2-discover-inner { grid-template-columns: 1fr; gap: 48px; }
  .hv2-discover-stat {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 22px;
    text-align: left;
  }
  .hv2-discover-stat-num { font-size: 56px; }
}

/* ============================================================
   FOOTER — copié de la LP PAC
   ============================================================ */
.hv2-foot {
  background: #050F1B;
  padding: 80px 32px 32px;
  color: var(--fg-muted);
  border-top: 1px solid var(--hairline);
}
.hv2-foot-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hv2-foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline);
}
.hv2-foot-brand img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.hv2-foot-brand p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-faint);
  max-width: 280px;
  margin: 0;
}
.hv2-foot-col h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 18px;
}
.hv2-foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hv2-foot-col a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--t-fast) var(--ease-out);
}
.hv2-foot-col a:hover { color: var(--neo-lime); }
.hv2-foot-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hv2-stack-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 980px) {
  .hv2-hero { padding: 56px 24px 64px; min-height: 80vh; }
  .hv2-hero-bottom { grid-template-columns: 1fr; gap: 24px; }
  .hv2-stack-text { padding: 0; }
  .hv2-pro-row { grid-template-columns: 56px 1fr 36px; gap: 16px; }
  .hv2-pro-code { font-size: 36px; }
  .hv2-pro-row-top h3 { font-size: 22px; }
  .hv2-pro-arrow { width: 36px; height: 36px; }
  .hv2-why { padding: 80px 24px; }
  .hv2-pillars { grid-template-columns: 1fr; }
  .hv2-pillar {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding: 32px 0 !important;
  }
  .hv2-pillar:last-child { border-bottom: none; padding-bottom: 0 !important; }
  .hv2-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hv2-stat { padding: 24px; border-right: 1px solid var(--hairline); }
  .hv2-stat:nth-child(2) { border-right: none; }
  .hv2-stat:nth-child(3), .hv2-stat:nth-child(4) { border-top: 1px solid var(--hairline); }
  .hv2-faq { padding: 80px 24px; }
  .hv2-foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hv2-ticker-num { font-size: 40px; }
  .hv2-nav-tabs-wrap { display: none; }
  .hv2 .nav-inner { grid-template-columns: auto auto; }
  .hv2 .nav-tabs { grid-column: 1 / -1; order: 3; margin: 0; }
}
@media (max-width: 560px) {
  .hv2-hero-title { font-size: 40px; }
  .hv2-line-tail { font-size: 28px; }
  .hv2-stats-grid { grid-template-columns: 1fr; }
  .hv2-stat { border-right: none !important; border-top: 1px solid var(--hairline); padding: 24px 0; }
  .hv2-stat:first-child { border-top: none; }
  .hv2-foot-grid { grid-template-columns: 1fr; }
  .hv2-part-card { padding: 28px 20px; }
  .hv2 .nav-inner { padding: 10px 16px; gap: 12px; }
  .hv2 .nav-phone span { display: none; }
  .hv2 .nav-phone {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
  .hv2 .nav-actions { gap: 8px; }
}
@media (max-width: 380px) {
  .hv2 .nav-actions .btn-primary { font-size: 12px; padding: 10px 14px; }
}

/* ============================================================
   MOBILE TOUCH TARGETS (Home v2) — WCAG / Apple HIG (>= 44px)
   ============================================================ */
@media (max-width: 768px) {
  .hv2 .nav-tab,
  .hv2 .nav-phone,
  .hv2 .btn,
  .hv2-split-cta,
  .hv2-discover-cta,
  .hv2-faq-q,
  .hv2-pro-arrow {
    min-height: 44px;
  }
}
