/* ============================================================
   NEOLUXIS - HOME « GRAVITÉ ZÉRO » (inspiration antigravity)
   Design system préfixe .av-  -  chargé après refonte.css
   Ne touche à aucune classe existante (nlx-*).
   ============================================================ */

/* ─────────────────────────── BASE ────────────────────────── */

.av-home {
  position: relative;
  background: var(--nlx-void);
  color: var(--nlx-white);
  font-family: var(--font-body);
  overflow-x: clip;
}

/* Grain global très subtil (inset:0 - une couche sur-dimensionnée
   coûte 4x la mémoire GPU et fait chuter les frames au scroll) */
.av-home::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.av-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 639px) { .av-container { padding: 0 22px; } }

/* Label de section : « 01 · Expertises » */
.av-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--nlx-violet);
  margin-bottom: 22px;
}
.av-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nlx-purple));
}
.av-label__idx { color: var(--nlx-subtle); letter-spacing: 0.2em; }

.av-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}
.av-title .grd {
  background: var(--nlx-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.av-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--nlx-muted);
  max-width: 56ch;
}

.av-section { padding: 75px 0; position: relative; }
@media (max-width: 767px) { .av-section { padding: 50px 0; } }

/* ─────────────────────── BOUTONS ─────────────────────────── */

.av-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              background 0.35s, border-color 0.35s, color 0.35s;
  will-change: transform;
}
.av-btn--primary {
  background: var(--nlx-gradient);
  color: #140a02;
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.35);
}
.av-btn--primary:hover {
  box-shadow: 0 12px 48px rgba(234, 88, 12, 0.55);
  color: #140a02;
}
.av-btn--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--nlx-white);
  background: rgba(255, 255, 255, 0.02);
}
.av-btn--ghost:hover {
  border-color: var(--nlx-border-hi);
  background: rgba(234, 88, 12, 0.07);
  color: var(--nlx-white);
}
.av-btn--lg { padding: 20px 44px; font-size: 15px; }
.av-btn svg { transition: transform 0.35s var(--ease-out); }
.av-btn:hover svg { transform: translate(2px, -2px); }

/* ══════════════════════════ HERO ══════════════════════════ */

.av-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
  isolation: isolate;
}

/* Canvas étoiles */
.av-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* Soleil / horizon orange - signature antigravity */
.av-sun {
  position: absolute;
  left: 50%;
  bottom: -42vh;
  width: 130vmin;
  height: 130vmin;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%,
      rgba(251, 191, 36, 0.32) 0%,
      rgba(249, 115, 22, 0.22) 22%,
      rgba(234, 88, 12, 0.12) 42%,
      rgba(234, 88, 12, 0.04) 58%,
      transparent 70%);
  /* Statique : ni filter, ni will-change, ni animation au scroll -
     un élément peint une fois ne coûte rien pendant le défilement */
}
.av-sun::before {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(251, 146, 60, 0.22);
  mask-image: linear-gradient(to bottom, black 40%, transparent 62%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 62%);
}
.av-sun::after {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(251, 146, 60, 0.1);
  mask-image: linear-gradient(to bottom, black 35%, transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom, black 35%, transparent 60%);
}

/* Ligne d'horizon */
.av-hero__horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34vh;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, var(--nlx-void) 6%, transparent);
}

.av-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.av-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nlx-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 22px;
  border-radius: 100px;
  margin-bottom: 42px;
}
.av-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nlx-violet);
  color: var(--nlx-violet);
  animation: pulseDot 2.4s ease infinite;
}

.av-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.7rem, 8.4vw, 7.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 34px;
  max-width: 14ch;
}
.av-hero__line {
  display: block;
  overflow: hidden;               /* masque pour la révélation */
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.av-hero__line .w { display: inline-block; white-space: pre; }
/* Le dégradé est posé sur les mots (.w) et non la ligne :
   background-clip:text ne peint pas les descendants transformés par GSAP */
.av-hero__line--grd,
.av-hero__line--grd .w {
  background: var(--nlx-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.av-hero__sub {
  font-size: clamp(15px, 1.6vw, 17.5px);
  line-height: 1.8;
  color: var(--nlx-muted);
  max-width: 62ch;
  margin: 0 0 44px;
}
.av-hero__sub strong { color: var(--nlx-light); font-weight: 600; }

.av-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

/* Stats du hero */
.av-hero__stats {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 4vw, 52px);
  flex-wrap: wrap;
  justify-content: center;
}
.av-stat { text-align: center; }
.av-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.av-stat__num .unit { font-size: 0.55em; color: var(--nlx-subtle); font-weight: 600; }
.av-stat__lbl {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
}
.av-stat + .av-stat { border-left: 1px solid rgba(255, 255, 255, 0.08); padding-left: clamp(20px, 4vw, 52px); }

/* Indice de scroll */
.av-scrollcue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
}
.av-scrollcue__line {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}
.av-scrollcue__line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--nlx-violet);
  animation: avCueDrop 2s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}
@keyframes avCueDrop {
  0%   { top: -50%; }
  100% { top: 110%; }
}

/* ════════════════ ENGAGEMENTS AGENCE DIGITALE ═════════════════ */

.av-commit-sec {
  padding: 40px 0 60px;
  position: relative;
  z-index: 2;
}

.av-commit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1023px) {
  .av-commit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .av-commit-grid { grid-template-columns: 1fr; }
}

.av-commit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(12px);
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.av-commit-card:hover {
  border-color: rgba(234, 88, 12, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(234, 88, 12, 0.08);
}

.av-commit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(234, 88, 12, 0.3);
  background: rgba(234, 88, 12, 0.09);
  color: var(--nlx-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.av-commit-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--nlx-white);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.av-commit-desc {
  font-size: 12.5px;
  color: var(--nlx-muted);
  line-height: 1.5;
  margin: 0;
}



/* ══════════════ EXPERTISES - PIN HORIZONTAL ═══════════════ */

.av-h { position: relative; }
.av-h__pin {
  position: relative;
  overflow: clip;
  padding: 90px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .av-h__pin { height: 100vh; padding: 0; } }

.av-h__head {
  max-width: 1280px;
  margin: 0 auto 54px;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 639px) { .av-h__head { padding: 0 22px; } }
.av-h__hint {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
  display: none;
}
@media (min-width: 1024px) { .av-h__hint { display: block; } }

.av-h__track {
  display: flex;
  gap: 22px;
  padding: 0 max(40px, calc((100vw - 1280px) / 2 + 40px));
  width: max-content;
  will-change: transform;
}
/* Mobile / tablette : scroll natif + snap */
@media (max-width: 1023px) {
  .av-h__track {
    width: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 22px 22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .av-h__track::-webkit-scrollbar { display: none; }
}

.av-card {
  position: relative;
  width: clamp(300px, 30vw, 420px);
  min-height: clamp(380px, 56vh, 520px);
  flex-shrink: 0;
  scroll-snap-align: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 90% 55% at 85% -10%, rgba(234, 88, 12, 0.11), transparent 60%),
    rgba(255, 255, 255, 0.022);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: clip;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.av-card:hover {
  border-color: var(--nlx-border-hi);
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), var(--nlx-glow-card);
}
.av-card__num {
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
  transition: -webkit-text-stroke 0.4s;
  pointer-events: none;
}
.av-card:hover .av-card__num { -webkit-text-stroke: 1px rgba(251, 146, 60, 0.4); }
.av-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(234, 88, 12, 0.3);
  background: rgba(234, 88, 12, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nlx-violet);
  margin-bottom: auto;
}
.av-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 26px 0 12px;
}
.av-card__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--nlx-muted);
  margin: 0 0 20px;
}
.av-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.av-card__tags li {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 100px;
}
.av-card__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--nlx-violet);
}
.av-card__go svg { transition: transform 0.35s var(--ease-out); }
.av-card:hover .av-card__go svg { transform: translate(3px, -3px); }

/* Progression de la section horizontale */
.av-h__progress {
  max-width: 1280px;
  margin: 46px auto 0;
  padding: 0 40px;
  width: 100%;
  display: none;
}
@media (min-width: 1024px) { .av-h__progress { display: block; } }
.av-h__progress-rail {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.av-h__progress-fill {
  position: absolute;
  inset: 0;
  background: var(--nlx-gradient);
  transform-origin: left center;
  transform: scaleX(0);
}

/* ══════════════════ MANIFESTO - TEXT FILL ═════════════════ */

.av-manifesto {
  padding: 75px 0 50px;
  position: relative;
}
.av-manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 480px;
  background: radial-gradient(ellipse at 50% 0%, rgba(234, 88, 12, 0.09), transparent 65%);
  pointer-events: none;
}

.av-pillar {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 28px 64px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.av-pillar:first-of-type { border-top: 1px solid rgba(255, 255, 255, 0.07); }
@media (max-width: 899px) { .av-pillar { grid-template-columns: 1fr; gap: 16px; } }

.av-word {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10.5vw, 8.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 0;
  display: inline-grid;
}
.av-word > span { grid-area: 1 / 1; white-space: nowrap; }
.av-word__ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.14);
}
.av-word__fill {
  background: var(--nlx-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  clip-path: inset(-5% 100% -5% 0);   /* révélé au scroll par GSAP */
}
.av-pillar__meta { display: flex; flex-direction: column; gap: 14px; }
.av-pillar__idx {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--nlx-subtle);
}
.av-pillar__desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--nlx-muted);
  margin: 0;
}
.av-pillar__desc strong { color: var(--nlx-light); }

.av-manifesto__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 64px;
}
.av-manifesto__quote {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
  color: var(--nlx-light);
  max-width: 58ch;
  margin: 0;
}
.av-manifesto__quote em {
  font-style: normal;
  background: var(--nlx-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ════════════════════ STATS - BANDEAU ═════════════════════ */

.av-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 60% 120% at 50% 130%, rgba(234, 88, 12, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.012);
  padding: 74px 0;
}
.av-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 767px) { .av-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }
.av-bigstat { text-align: center; }
.av-bigstat__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  display: block;
}
.av-bigstat__num .unit { font-size: 0.45em; color: var(--nlx-subtle); }
.av-bigstat__lbl {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
}

/* ═══════════════════ PROCESS - STICKY ═════════════════════ */

.av-proc__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}
@media (max-width: 899px) { .av-proc__grid { grid-template-columns: 1fr; gap: 48px; } }

.av-proc__left { position: sticky; top: 120px; }
@media (max-width: 899px) { .av-proc__left { position: static; } }

.av-proc__steps {
  position: relative;
  padding-left: 42px;
  display: flex;
  flex-direction: column;
  gap: 58px;
}
.av-proc__rail {
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.09);
}
.av-proc__rail-fill {
  position: absolute;
  inset: 0;
  background: var(--nlx-gradient);
  transform-origin: top center;
  transform: scaleY(0);
}
.av-proc__step { position: relative; }
.av-proc__step::before {
  content: '';
  position: absolute;
  left: -38.5px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nlx-surface);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.av-proc__step.is-lit::before {
  background: var(--nlx-purple);
  border-color: var(--nlx-violet);
  box-shadow: 0 0 16px rgba(234, 88, 12, 0.7);
}
.av-proc__num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--nlx-violet);
}
.av-proc__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 10px 0 10px;
}
.av-proc__desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--nlx-muted);
  margin: 0;
  max-width: 46ch;
}

/* ═══════════════════ PORTFOLIO / WORK ═════════════════════ */

.av-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 899px) { .av-work__grid { grid-template-columns: 1fr; } }

.av-wcard {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  padding: 34px 32px 28px;
  overflow: clip;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.av-wcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% -10%, rgba(234, 88, 12, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.av-wcard:hover { border-color: var(--nlx-border-hi); transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,0.45); }
.av-wcard:hover::before { opacity: 1; }

.av-wcard__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.av-wcard__badge {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nlx-violet);
  border: 1px solid rgba(234, 88, 12, 0.3);
  background: rgba(234, 88, 12, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
}
.av-wcard__icon { color: var(--nlx-subtle); }
.av-wcard__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.av-wcard__client { font-size: 12.5px; color: var(--nlx-subtle); margin: -8px 0 0; }

.av-wcard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.av-wcard__stat { text-align: center; padding: 14px 6px; }
.av-wcard__stat + .av-wcard__stat { border-left: 1px solid rgba(255, 255, 255, 0.07); }
.av-wcard__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--nlx-violet);
}
.av-wcard__stat-lbl {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
  margin-top: 4px;
}
.av-wcard__desc { font-size: 13.5px; line-height: 1.7; color: var(--nlx-muted); margin: 0; }
.av-wcard__stack { display: flex; flex-wrap: wrap; gap: 8px; }
.av-wcard__pill {
  font-size: 11px;
  color: var(--nlx-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 5px 12px;
  border-radius: 100px;
}
.av-wcard__ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}
.av-wcard__note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--nlx-subtle);
  text-decoration: none;
}
.av-wcard__cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--nlx-violet);
  text-decoration: none;
  transition: color 0.3s;
}
.av-wcard__cta:hover { color: var(--nlx-cyan-lt); }

.av-work__foot {
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.015);
}
.av-work__modes { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.av-work__mode { display: flex; align-items: center; gap: 12px; }
.av-work__mode svg { color: var(--nlx-violet); flex-shrink: 0; }
.av-work__mode strong { display: block; font-size: 13.5px; font-family: var(--font-display); }
.av-work__mode span { display: block; font-size: 12px; color: var(--nlx-subtle); margin-top: 2px; }

/* ══════════════════ PARTNERS - MARQUEE ════════════════════ */

.av-partners { padding: 64px 0; overflow: clip; }
.av-partners__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
  margin: 0 0 34px;
}
.av-partners__track { display: flex; width: max-content; }
.av-partners__group {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
  animation: avMarq 30s linear infinite;
}
.av-partners__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  transition: color 0.3s;
}
.av-partners__name:hover { color: var(--nlx-white); }

/* ═════════════════ TESTIMONIALS - DECK ════════════════════ */

.av-testi { position: relative; }
.av-testi__deck {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  height: 380px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.av-testi__deck.is-dragging { cursor: grabbing; }
@media (max-width: 639px) { .av-testi__deck { height: 460px; } }

.av-tcard {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 90% 60% at 50% -20%, rgba(234, 88, 12, 0.1), transparent 60%),
    #14110d;
  padding: 42px 44px;
  display: flex;
  flex-direction: column;
  transition: transform 0.55s var(--ease-out), opacity 0.55s var(--ease-out);
  will-change: transform;
}
@media (max-width: 639px) { .av-tcard { padding: 30px 26px; } }

.av-tcard[data-state='0'] {
  transform: translateX(var(--swipe-dx, 0px)) rotate(calc(var(--swipe-dx, 0px) * 0.01deg));
  opacity: 1;
  z-index: 3;
}
.av-tcard[data-state='1'] {
  transform: translateY(-22px) scale(0.94);
  opacity: 0.5;
  z-index: 2;
}
.av-tcard[data-state='2'] {
  transform: translateY(-42px) scale(0.88);
  opacity: 0.22;
  z-index: 1;
}

.av-tcard__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--nlx-purple);
  opacity: 0.7;
}
.av-tcard__stars { color: var(--nlx-cyan-lt); letter-spacing: 4px; font-size: 13px; margin: 14px 0 18px; }
.av-tcard__text {
  font-size: clamp(14.5px, 1.6vw, 16.5px);
  line-height: 1.8;
  color: var(--nlx-light);
  margin: 0;
}
.av-tcard__author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.av-tcard__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #140a02;
  background: var(--nlx-gradient);
  flex-shrink: 0;
}
.av-tcard__name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; }
.av-tcard__role { display: block; font-size: 12px; color: var(--nlx-subtle); margin-top: 2px; }

.av-testi__dots { display: flex; justify-content: center; gap: 10px; margin-top: 38px; }
.av-testi__dot {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.av-testi__dot.is-active { background: var(--nlx-purple); width: 44px; }
.av-testi__hint {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
  margin-top: 16px;
}

/* ═══════════════════════ OFFRES ═══════════════════════════ */

.av-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 999px) { .av-offers__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.av-price {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.018);
  padding: 38px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.av-price:hover { border-color: var(--nlx-border-hi); transform: translateY(-6px); }
.av-price--featured {
  border-color: rgba(234, 88, 12, 0.5);
  background:
    radial-gradient(ellipse 100% 60% at 50% -20%, rgba(234, 88, 12, 0.14), transparent 60%),
    #14110d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), var(--nlx-glow-card);
}
@media (min-width: 1000px) { .av-price--featured { transform: translateY(-14px); } .av-price--featured:hover { transform: translateY(-20px); } }

.av-price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #140a02;
  background: var(--nlx-gradient);
  padding: 7px 18px;
  border-radius: 100px;
}
.av-price__tier {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--nlx-violet);
}
.av-price__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.av-price__divider { height: 1px; background: rgba(255, 255, 255, 0.08); margin: 24px 0; }
.av-price__features { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 13px; }
.av-price__feature { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; line-height: 1.55; color: var(--nlx-muted); }
.av-price__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.14);
  color: var(--nlx-violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.av-price .av-btn { margin-top: auto; justify-content: center; }

.av-offers__cta {
  text-align: center;
  margin-top: 74px;
  padding: 54px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 70% 120% at 50% 140%, rgba(234, 88, 12, 0.13), transparent 60%),
    rgba(255, 255, 255, 0.015);
}
.av-offers__cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.av-offers__cta-sub { font-size: 14px; color: var(--nlx-muted); max-width: 52ch; margin: 0 auto 30px; line-height: 1.7; }

/* ═════════════════════════ FAQ ════════════════════════════ */

.av-faq { max-width: 760px; margin: 84px auto 0; }
.av-faq__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  text-align: center;
}
.av-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.av-faq__item:first-of-type { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.av-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}
.av-faq__summary::-webkit-details-marker { display: none; }
.av-faq__summary:hover { color: var(--nlx-violet); }
.av-faq__icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--nlx-violet);
  flex-shrink: 0;
  line-height: 1;
}
.av-faq__body { overflow: hidden; }
.av-faq__body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--nlx-muted);
  margin: 0;
  padding: 0 4px 24px;
  max-width: 68ch;
}

/* ═════════════════════════ BLOG ═══════════════════════════ */

.av-blog__list { display: flex; flex-direction: column; }
.av-brow {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 30px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.35s, padding 0.35s var(--ease-out);
}
.av-brow:first-of-type { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.av-brow:hover { background: rgba(255, 255, 255, 0.02); padding-left: 20px; }
@media (max-width: 767px) { .av-brow { grid-template-columns: 1fr; gap: 10px; } }

.av-brow__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  transition: -webkit-text-stroke 0.35s;
}
.av-brow:hover .av-brow__num { -webkit-text-stroke: 1px rgba(251, 146, 60, 0.6); }
.av-brow__meta { display: flex; gap: 14px; align-items: center; margin-bottom: 8px; }
.av-brow__tag {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nlx-violet);
}
.av-brow__date { font-size: 11.5px; color: var(--nlx-subtle); }
.av-brow__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
}
.av-brow__arrow {
  color: var(--nlx-subtle);
  transition: transform 0.35s var(--ease-out), color 0.35s;
}
.av-brow:hover .av-brow__arrow { transform: translate(4px, -4px); color: var(--nlx-violet); }
@media (max-width: 767px) { .av-brow__arrow { display: none; } }

/* ═══════════════════════ CONTACT ══════════════════════════ */

.av-contact {
  position: relative;
  overflow: clip;
}
.av-contact::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -55vh;
  width: 140vmin;
  height: 140vmin;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%,
    rgba(251, 191, 36, 0.16) 0%,
    rgba(234, 88, 12, 0.1) 30%,
    rgba(234, 88, 12, 0.03) 55%,
    transparent 68%);
  pointer-events: none;
}

.av-contact__mega {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 70px;
}

.av-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 72px;
  position: relative;
  z-index: 2;
}
@media (max-width: 899px) { .av-contact__inner { grid-template-columns: 1fr; gap: 48px; } }

.av-contact__item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.av-contact__item-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(234, 88, 12, 0.3);
  background: rgba(234, 88, 12, 0.09);
  color: var(--nlx-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.av-contact__item strong { display: block; font-family: var(--font-display); font-size: 14.5px; margin-bottom: 3px; }
.av-contact__item span, .av-contact__item a { font-size: 13.5px; color: var(--nlx-muted); text-decoration: none; }
.av-contact__item a:hover { color: var(--nlx-violet); }

.av-contact__call {
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
}
.av-contact__call-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 0 0 8px; }
.av-contact__call-sub { font-size: 13px; color: var(--nlx-muted); margin: 0 0 20px; line-height: 1.6; }

/* Formulaire */
.av-form { display: flex; flex-direction: column; gap: 20px; }
.av-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 639px) { .av-form__row { grid-template-columns: 1fr; } }
.av-form__group { display: flex; flex-direction: column; gap: 8px; }
.av-form__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
  font-weight: 600;
}
.av-form__req { color: var(--nlx-violet); }
.av-form__input, .av-form__textarea {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--nlx-white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  width: 100%;
}
.av-form__input::placeholder, .av-form__textarea::placeholder { color: rgba(255, 255, 255, 0.22); }
.av-form__input:focus, .av-form__textarea:focus {
  border-color: var(--nlx-border-hi);
  background: rgba(234, 88, 12, 0.04);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}
.av-form__textarea { resize: vertical; min-height: 130px; }
.av-form__check { display: flex; gap: 12px; align-items: flex-start; font-size: 12.5px; color: var(--nlx-muted); line-height: 1.6; cursor: pointer; }
.av-form__check input { margin-top: 3px; accent-color: var(--nlx-purple); }
.av-form__check a { color: var(--nlx-violet); text-decoration: none; }
.av-form__error { font-size: 12px; color: #f87171; margin-top: 8px; }
.av-form__submit { justify-content: center; border: none; }

/* ══════════════ REDUCED MOTION / FALLBACKS ════════════════ */

@media (prefers-reduced-motion: reduce) {
  .av-marquee__group, .av-partners__group { animation: none; }
  .av-scrollcue__line::after { animation: none; }
  .av-hero__badge-dot { animation: none; }
  .av-word__fill { clip-path: none; }
  .av-h__track { width: auto; overflow-x: auto; padding: 0 22px 22px; }
  .av-proc__rail-fill { transform: none; }
}

/* ════════════════════════════════════════════════════════════
   ANTIGRAVITY FOOTER SYSTEM (.av-footer)
   ════════════════════════════════════════════════════════════ */

.av-footer {
  background: #060504;
  color: var(--nlx-muted);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0;
}

/* ── Top Floating Banner ── */
.av-footer__banner-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  transform: translateY(-50%);
}

.av-footer__banner {
  background: linear-gradient(135deg, rgba(20, 16, 12, 0.95), rgba(12, 10, 8, 0.98));
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px rgba(234, 88, 12, 0.08);
  backdrop-filter: blur(16px);
}

.av-footer__banner-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.15), transparent 70%);
  pointer-events: none;
}

.av-footer__banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.av-footer__banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nlx-violet);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
}

.av-footer__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nlx-violet);
  box-shadow: 0 0 10px var(--nlx-violet);
  animation: avPulse 2s infinite alternate;
}

@keyframes avPulse {
  from { opacity: 0.4; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1.2); }
}

.av-footer__banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--nlx-white);
  line-height: 1.15;
  margin: 0 0 14px;
}

.av-footer__banner-desc {
  font-size: 15px;
  color: var(--nlx-muted);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 600px;
}

.av-footer__banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ── Inner Footer ── */
.av-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 48px;
  position: relative;
  z-index: 1;
}

/* ── Giant Background Watermark ── */
.av-footer__watermark {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 19vw, 19rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.03);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

/* ── Status Pill Bar ── */
.av-footer__status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 26px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.av-footer__status-pill {
  display: flex;
  align-items: center;
  gap: 12px;
}

.av-footer__pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 12px #10b981;
  animation: avGreenPulse 1.8s ease-in-out infinite;
}

@keyframes avGreenPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.av-footer__status-text {
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--nlx-white);
}

.av-footer__status-right {
  display: flex;
  gap: 10px;
}

.av-footer__tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── 4-Column Grid ── */
.av-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .av-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}

@media (max-width: 639px) {
  .av-footer__grid { grid-template-columns: 1fr; gap: 36px; }
}

.av-footer__col--brand {
  padding-right: 20px;
}

.av-footer__brand-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--nlx-white);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 18px;
}

.av-footer__brand-highlight {
  color: var(--nlx-violet);
}

.av-footer__brand-sub {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nlx-subtle);
  margin-left: 4px;
}

.av-footer__brand-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--nlx-muted);
  margin-bottom: 24px;
}

.av-footer__socials {
  display: flex;
  gap: 12px;
}

.av-footer__soc-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--nlx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

.av-footer__soc-link:hover {
  border-color: var(--nlx-violet);
  background: rgba(234, 88, 12, 0.15);
  color: var(--nlx-violet);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.2);
}

.av-footer__heading {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nlx-white);
  margin: 0 0 22px;
}

.av-footer__list, .av-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.av-footer__list a {
  font-size: 13.5px;
  color: var(--nlx-muted);
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.av-footer__list a:hover {
  color: var(--nlx-white);
  transform: translateX(4px);
}

.av-footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--nlx-muted);
}

.av-footer__contact-list i {
  color: var(--nlx-violet);
  font-size: 18px;
}

.av-footer__contact-list a {
  color: var(--nlx-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.av-footer__contact-list a:hover {
  color: var(--nlx-white);
}

.av-footer__loc-city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--nlx-white);
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.av-footer__loc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nlx-violet);
}

.av-footer__loc-dot--bayonne {
  background: #38bdf8;
}

.av-footer__loc-addr {
  font-size: 12.5px;
  color: var(--nlx-subtle);
  line-height: 1.6;
  margin: 0;
}

.av-footer__hours {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: var(--nlx-subtle);
}

.av-footer__pill-link {
  margin-top: 24px;
}

.av-footer__quick-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--nlx-violet);
  border: 1px solid rgba(234, 88, 12, 0.3);
  background: rgba(234, 88, 12, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.av-footer__quick-cta:hover {
  background: var(--nlx-violet);
  color: #fff;
  border-color: var(--nlx-violet);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.3);
}

/* ── Bottom Bar ── */
.av-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.av-footer__copy {
  font-size: 12.5px;
  color: var(--nlx-subtle);
}

.av-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.av-footer__legal-links a {
  font-size: 12px;
  color: var(--nlx-subtle);
  text-decoration: none;
  transition: color 0.25s ease;
}

.av-footer__legal-links a:hover {
  color: var(--nlx-white);
}

.av-footer__sep {
  color: rgba(255, 255, 255, 0.15);
}

.av-footer__top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--nlx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.av-footer__top-btn:hover {
  background: var(--nlx-violet);
  border-color: var(--nlx-violet);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
}

/* ── Giant Antigravity Brand Typography Signature ── */
.av-footer__giant-brand {
  margin: 50px 0 30px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.av-footer__giant-text {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11.5vw, 12.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.88;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  opacity: 0.95;
}

.av-footer__giant-text--gradient {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 45%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  filter: drop-shadow(0 0 35px rgba(234, 88, 12, 0.35));
}

@media (max-width: 767px) {
  .av-footer__banner-wrap { transform: translateY(-30px); }
  .av-footer__bottom { flex-direction: column; text-align: center; gap: 16px; }
  .av-footer__status-bar { flex-direction: column; align-items: flex-start; border-radius: 18px; }
  .av-footer__giant-brand { justify-content: center; gap: 0; text-align: center; }
  .av-footer__giant-text { font-size: clamp(2.5rem, 14vw, 5rem); }
}


