/* ============================================================
   neuroTactic — CSS Global
   Tokens issus de la charte graphique officielle
============================================================ */

/* ---- TOKENS ---- */
:root {
  /* Couleurs officielles (charte PDF) */
  --nt-azur:        #1A9DD9;
  --nt-saphir:      #2D2E83;

  /* Fonds dark */
  --nt-black:       #07070E;
  --nt-dark-1:      #0D0D18;
  --nt-dark-2:      #111120;
  --nt-dark-3:      #18182C;
  --nt-dark-4:      #1E1E34;

  /* Textes */
  --nt-white:       #FFFFFF;
  --nt-grey-100:    #EEEEF5;
  --nt-grey-300:    #9999B8;
  --nt-grey-500:    #55556A;

  /* Dérivés */
  --nt-gradient:    linear-gradient(135deg, #1A9DD9 0%, #2D2E83 100%);
  --nt-gradient-r:  linear-gradient(135deg, #2D2E83 0%, #1A9DD9 100%);
  --nt-azur-glow:   rgba(26,157,217,0.18);
  --nt-saphir-glow: rgba(45,46,131,0.35);

  /* Typographie — Century Gothic */
  --nt-font: 'Century Gothic', 'AppleGothic', 'Gill Sans', 'Trebuchet MS', sans-serif;

  /* Espacements */
  --nt-space-xs:  4px;
  --nt-space-sm:  8px;
  --nt-space-md:  16px;
  --nt-space-lg:  24px;
  --nt-space-xl:  40px;
  --nt-space-2xl: 64px;
  --nt-space-3xl: 96px;

  /* Radius */
  --nt-radius:    10px;
  --nt-radius-lg: 18px;
  --nt-radius-xl: 28px;

  /* Bordures */
  --nt-border:      1px solid rgba(255,255,255,0.06);
  --nt-border-azur: 1px solid rgba(26,157,217,0.25);

  /* Transitions */
  --nt-trans:      0.28s cubic-bezier(0.4,0,0.2,1);
  --nt-trans-slow: 0.55s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--nt-font);
  background: var(--nt-black);
  color: var(--nt-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--nt-font); }

/* ---- CURSEUR CUSTOM ---- */
#nt-cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--nt-azur);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 9999;
  will-change: transform;
  /* mix-blend-mode retiré : crée un layer GPU composite qui absorbe les clics dans Chrome */
  /* transform: translate(-50%,-50%) géré via gsap.set xPercent/yPercent */
}
#nt-cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(26,157,217,0.5);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 9998;
  will-change: transform;
  /* transition retirée : GSAP gère l'animation, le double pilotage créait un conflit Chrome */
  /* transform: translate(-50%,-50%) géré via gsap.set xPercent/yPercent */
}

/* ---- BARRE DE PROGRESSION SCROLL ---- */
#nt-scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--nt-gradient); z-index: 10000;
  transform-origin: left; transform: scaleX(0);
  width: 100%;
}

/* ============================================================
   HEADER
============================================================ */
.nt-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 var(--nt-space-xl);
  transition: background var(--nt-trans), box-shadow var(--nt-trans), padding var(--nt-trans);
}
.nt-header--scrolled {
  background: rgba(7,7,14,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
  padding: 0 var(--nt-space-xl);
}
.nt-header__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nt-header__logo img { height: 36px; width: auto; max-width: 180px; }
.nt-header__actions { display: flex; align-items: center; gap: var(--nt-space-md); }

/* Nav */
.nt-nav__list {
  display: flex; align-items: center; gap: 32px;
}
.nt-nav__link {
  font-size: 13px; font-weight: 600;
  color: var(--nt-grey-300); letter-spacing: .05em;
  position: relative; transition: color var(--nt-trans);
  cursor: none;
}
.nt-nav__link::after {
  content: ''; position: absolute;
  bottom: -5px; left: 0; width: 0; height: 1.5px;
  background: var(--nt-azur);
  transition: width var(--nt-trans);
}
.nt-nav__link:hover,
.nt-nav__link--on,
.current-menu-item .nt-nav__link { color: var(--nt-white); }
.nt-nav__link:hover::after,
.nt-nav__link--on::after,
.current-menu-item .nt-nav__link::after { width: 100%; }

/* Burger mobile */
.nt-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 6px;
}
.nt-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--nt-grey-300);
  transition: transform var(--nt-trans), opacity var(--nt-trans), background var(--nt-trans);
}
.nt-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--nt-azur); }
.nt-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nt-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--nt-azur); }

/* Menu mobile */
.nt-mobile-menu {
  display: none; flex-direction: column; padding: var(--nt-space-xl);
  background: var(--nt-dark-1); border-top: var(--nt-border);
  position: fixed; top: 72px; left: 0; right: 0;
  z-index: 999;
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.nt-mobile-menu[aria-hidden="false"] { display: flex; }
.nt-mobile-menu__list { display: flex; flex-direction: column; gap: var(--nt-space-lg); }
.nt-mobile-menu__list .nt-nav__link { font-size: 18px; }

/* ============================================================
   BOUTONS
============================================================ */
.nt-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--nt-font); font-weight: 700;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: none;
  border-radius: 5px; padding: 15px 28px;
  position: relative; overflow: hidden;
  transition: transform var(--nt-trans), box-shadow var(--nt-trans);
  will-change: transform;
}
/* Shine */
.nt-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-15deg);
  transition: left .5s ease;
}
.nt-btn:hover::before { left: 140%; }

.nt-btn--primary {
  background: var(--nt-azur); color: var(--nt-white);
  box-shadow: 0 4px 18px rgba(26,157,217,0.3);
}
.nt-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26,157,217,0.5); }

.nt-btn--outline {
  background: transparent; color: var(--nt-azur);
  border: 2px solid var(--nt-azur);
}
.nt-btn--outline:hover { background: rgba(26,157,217,0.08); transform: translateY(-3px); }

.nt-btn--gradient {
  background: var(--nt-gradient); color: var(--nt-white);
  box-shadow: 0 4px 20px rgba(26,157,217,0.28);
}
.nt-btn--gradient:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,157,217,0.45); }

.nt-btn--ghost {
  background: transparent; color: var(--nt-grey-100);
  border: var(--nt-border);
}
.nt-btn--ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

.nt-btn--sm { padding: 10px 20px; font-size: 11px; }
.nt-btn--lg { padding: 18px 36px; font-size: 13px; }

.nt-btn__arr { transition: transform var(--nt-trans); }
.nt-btn:hover .nt-btn__arr { transform: translateX(5px); }

/* ============================================================
   BADGES
============================================================ */
.nt-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 99px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.nt-badge--azur   { background: rgba(26,157,217,0.12); color: var(--nt-azur); border: 1px solid rgba(26,157,217,0.28); }
.nt-badge--saphir { background: rgba(45,46,131,0.25); color: #7E80D0; border: 1px solid rgba(45,46,131,0.45); }
.nt-badge--white  { background: rgba(255,255,255,0.06); color: var(--nt-grey-100); border: var(--nt-border); }
.nt-badge__dot    { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* ============================================================
   LABEL / EYEBROW
============================================================ */
.nt-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--nt-azur);
  display: flex; align-items: center; gap: 12px;
}
.nt-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1.5px; background: var(--nt-azur); flex-shrink: 0;
}

/* ============================================================
   SECTION UTILITAIRES
============================================================ */
.nt-section {
  padding: var(--nt-space-3xl) var(--nt-space-xl);
}
.nt-section--alt { background: var(--nt-dark-1); }

.nt-container {
  max-width: 1280px; margin: 0 auto;
}

.nt-section-head {
  margin-bottom: var(--nt-space-2xl);
}
.nt-section-head--center { text-align: center; }
.nt-section-head--center .nt-eyebrow { justify-content: center; }
.nt-section-head--center .nt-eyebrow::before { display: none; }

.nt-h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; line-height: 1.15; margin-top: 14px;
}
.nt-h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; line-height: 1.25;
}

.nt-gradient-text {
  background: var(--nt-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nt-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,157,217,0.3), transparent);
  margin: var(--nt-space-2xl) 0;
}

/* Grille data background */
.nt-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,157,217,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,157,217,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: nt-grid-move 22s linear infinite;
}
@keyframes nt-grid-move {
  0%   { background-position: 0 0; }
  100% { background-position: 44px 44px; }
}

/* Glow radial */
.nt-glow {
  position: absolute; pointer-events: none;
  background: radial-gradient(ellipse, var(--nt-azur-glow) 0%, transparent 68%);
}
.nt-glow--top-center {
  top: -30%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 450px;
}
.nt-glow--bottom-right {
  bottom: -20%; right: 5%;
  width: 400px; height: 350px;
  background: radial-gradient(ellipse, var(--nt-saphir-glow) 0%, transparent 68%);
}

/* ============================================================
   STAT CARDS
============================================================ */
.nt-stat {
  background: var(--nt-dark-2); border: var(--nt-border);
  border-radius: var(--nt-radius-lg); padding: 36px 28px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform var(--nt-trans), box-shadow var(--nt-trans), border-color var(--nt-trans);
  will-change: transform;
}
.nt-stat::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--nt-gradient);
}
.nt-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26,157,217,0.15);
  border-color: rgba(26,157,217,0.2);
}
.nt-stat__num {
  font-size: clamp(42px, 5vw, 58px); font-weight: 700; line-height: 1;
  background: var(--nt-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nt-stat__label {
  font-size: 11px; color: var(--nt-grey-300);
  text-transform: uppercase; letter-spacing: .12em; margin-top: 10px;
}

/* ============================================================
   SERVICE CARDS
============================================================ */
.nt-svc {
  background: var(--nt-dark-2); border: var(--nt-border);
  border-radius: var(--nt-radius-lg); padding: 36px;
  position: relative; overflow: hidden;
  transition: transform var(--nt-trans-slow), box-shadow var(--nt-trans-slow), border-color var(--nt-trans);
  will-change: transform;
}
.nt-svc::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--nt-gradient); opacity: 0;
  transition: opacity var(--nt-trans);
}
.nt-svc:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(26,157,217,0.08);
  border-color: rgba(26,157,217,0.2);
}
.nt-svc:hover::after { opacity: 1; }
.nt-svc__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(26,157,217,0.1); border: var(--nt-border-azur);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
}
.nt-svc__title { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.nt-svc__desc  { font-size: 15px; color: var(--nt-grey-300); line-height: 1.75; }
.nt-svc__cta {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--nt-azur); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  margin-top: 24px; cursor: none;
  transition: gap var(--nt-trans);
}
.nt-svc__cta:hover { gap: 14px; }

/* ============================================================
   PLAYER CARDS
============================================================ */
.nt-players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.nt-player {
  background: var(--nt-dark-2); border: var(--nt-border);
  border-radius: var(--nt-radius); padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: all var(--nt-trans); position: relative; overflow: hidden;
}
.nt-player::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--nt-gradient); opacity: 0;
  transition: opacity var(--nt-trans);
}
.nt-player:hover { border-color: rgba(26,157,217,0.2); background: var(--nt-dark-3); transform: translateX(6px); }
.nt-player:hover::before { opacity: 1; }
.nt-player__av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--nt-gradient); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; overflow: hidden;
}
.nt-player__av img { width: 100%; height: 100%; object-fit: cover; }
.nt-player__info { display: flex; flex-direction: column; gap: 2px; }
.nt-player__name { font-size: 15px; font-weight: 700; }
.nt-player__pos  { font-size: 11px; color: var(--nt-grey-500); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.nt-player__meta { display: flex; gap: 10px; align-items: center; margin-top: 4px; flex-wrap: wrap; }
.nt-player__club { font-size: 12px; color: var(--nt-grey-300); }
.nt-player__age  { font-size: 11px; color: var(--nt-grey-500); border-left: 1px solid var(--nt-dark-4); padding-left: 10px; }
.nt-player__tm   { font-size: 11px; color: var(--nt-azur); text-decoration: none; margin-top: 4px; opacity: 0.7; transition: opacity .2s; display: inline-block; }
.nt-player__tm:hover { opacity: 1; }

/* ============================================================
   BLOG CARDS
============================================================ */
.nt-article {
  background: var(--nt-dark-2); border: var(--nt-border);
  border-radius: var(--nt-radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--nt-trans-slow), box-shadow var(--nt-trans-slow), border-color var(--nt-trans);
  will-change: transform;
}
.nt-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border-color: rgba(26,157,217,0.15);
}
.nt-article__img {
  height: 200px; position: relative; overflow: hidden;
  background: var(--nt-dark-3);
}
.nt-article__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(0.4,0,0.2,1);
}
.nt-article:hover .nt-article__img img { transform: scale(1.06); }
.nt-article__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--nt-dark-2) 0%, transparent 55%);
}
.nt-article__cat { position: absolute; top: 14px; left: 14px; z-index: 1; }
.nt-article__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.nt-article__meta { font-size: 11px; color: var(--nt-grey-500); margin-bottom: 12px; display: flex; gap: 10px; }
.nt-article__title { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.nt-article__excerpt { font-size: 14px; color: var(--nt-grey-300); line-height: 1.65; flex: 1; }
.nt-article__footer {
  padding: 14px 22px; border-top: var(--nt-border);
  display: flex; justify-content: space-between; align-items: center;
}
.nt-article__read {
  font-size: 11px; font-weight: 700; color: var(--nt-azur);
  text-transform: uppercase; letter-spacing: .1em; cursor: none;
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--nt-trans);
}
.nt-article__read:hover { gap: 11px; }

/* ============================================================
   PROCESS STEPS
============================================================ */
.nt-step {
  display: flex; gap: 24px; padding: 28px;
  background: var(--nt-dark-2); border: var(--nt-border);
  border-radius: var(--nt-radius-lg); align-items: flex-start;
  transition: transform var(--nt-trans), border-color var(--nt-trans);
}
.nt-step:hover { transform: translateX(6px); border-color: rgba(26,157,217,0.2); }
.nt-step__num {
  font-size: 48px; font-weight: 700; line-height: 1; flex-shrink: 0;
  background: var(--nt-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; width: 56px;
}
.nt-step__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.nt-step__desc  { font-size: 15px; color: var(--nt-grey-300); line-height: 1.7; }

/* ============================================================
   FORMULAIRE CONTACT
============================================================ */
.nt-contact-tabs {
  display: flex; gap: 0; margin-bottom: 36px;
  border: var(--nt-border); border-radius: var(--nt-radius); overflow: hidden;
  width: fit-content;
}
.nt-tab {
  padding: 13px 28px; font-family: var(--nt-font);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: var(--nt-grey-500); border: none; cursor: none;
  transition: all var(--nt-trans); position: relative;
}
.nt-tab::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--nt-gradient); opacity: 0;
  transition: opacity var(--nt-trans);
}
.nt-tab--on { color: var(--nt-white); background: rgba(26,157,217,0.08); }
.nt-tab--on::after { opacity: 1; }

.nt-form-panel { display: none; }
.nt-form-panel--on { display: block; animation: nt-fade-up .3s ease both; }

@keyframes nt-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nt-frow { display: grid; gap: 18px; margin-bottom: 18px; }
.nt-frow-2 { grid-template-columns: 1fr 1fr; }
.nt-frow-1 { grid-template-columns: 1fr; }
.nt-fgroup { display: flex; flex-direction: column; gap: 8px; }
.nt-flabel {
  font-size: 10px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--nt-grey-300);
}
.nt-finput, .nt-fselect, .nt-ftextarea {
  background: var(--nt-dark-3); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--nt-radius); padding: 14px 16px;
  font-family: var(--nt-font); font-size: 15px; color: var(--nt-white);
  outline: none; width: 100%;
  transition: border-color var(--nt-trans), box-shadow var(--nt-trans);
}
.nt-finput::placeholder, .nt-ftextarea::placeholder { color: var(--nt-grey-500); }
.nt-finput:focus, .nt-fselect:focus, .nt-ftextarea:focus {
  border-color: var(--nt-azur);
  box-shadow: 0 0 0 3px rgba(26,157,217,0.14);
}
.nt-fselect { appearance: none; cursor: none; }
.nt-fselect-wrap { position: relative; }
.nt-fselect-wrap::after {
  content: '›'; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: var(--nt-grey-500); pointer-events: none; font-size: 18px;
}
.nt-ftextarea { resize: vertical; min-height: 110px; }

.nt-service-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nt-service-check { position: relative; }
.nt-service-check input { position: absolute; opacity: 0; }
.nt-service-check label {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--nt-radius);
  background: var(--nt-dark-3); border: 1px solid rgba(255,255,255,0.09);
  font-size: 13px; cursor: none;
  transition: all var(--nt-trans);
}
.nt-service-check label:hover { border-color: rgba(26,157,217,0.3); background: var(--nt-dark-4); }
.nt-service-check input:checked + label {
  border-color: var(--nt-azur); background: rgba(26,157,217,0.08);
}
.nt-service-check__icon {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(26,157,217,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px;
}
.nt-service-check__text { font-size: 12px; font-weight: 600; line-height: 1.3; }

.nt-agent-note {
  background: rgba(26,157,217,0.07); border: var(--nt-border-azur);
  border-radius: var(--nt-radius); padding: 16px 20px;
  font-size: 14px; color: var(--nt-grey-300); line-height: 1.65;
  margin-bottom: 24px;
}
.nt-agent-note strong { color: var(--nt-azur); }

.nt-form-status { margin-top: 16px; font-size: 14px; font-weight: 600; min-height: 20px; }
.nt-form-status--ok  { color: #4ade80; }
.nt-form-status--err { color: #f87171; }

/* ============================================================
   FOOTER
============================================================ */
.nt-footer {
  background: var(--nt-dark-1);
  border-top: var(--nt-border);
  padding: var(--nt-space-2xl) var(--nt-space-xl) var(--nt-space-lg);
}
.nt-footer__inner { max-width: 1280px; margin: 0 auto; }
.nt-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: var(--nt-space-2xl); margin-bottom: var(--nt-space-xl);
}
.nt-footer__logo img { height: 36px; width: auto; display: block; margin-bottom: 16px; }
.nt-footer__tagline { font-size: 14px; color: var(--nt-grey-500); max-width: 260px; line-height: 1.6; margin-bottom: 20px; }
.nt-footer__socials { display: flex; gap: 12px; }
.nt-footer__social {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--nt-dark-2); border: var(--nt-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--nt-grey-300); cursor: none;
  transition: all var(--nt-trans);
}
.nt-footer__social:hover { border-color: rgba(26,157,217,0.3); color: var(--nt-azur); background: rgba(26,157,217,0.08); }
.nt-footer__heading {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--nt-azur); margin-bottom: 20px;
}
.nt-footer__links { display: flex; flex-direction: column; gap: 10px; }
.nt-footer__link {
  font-size: 14px; color: var(--nt-grey-300); cursor: none;
  display: flex; align-items: center; gap: 8px;
  transition: color var(--nt-trans);
}
.nt-footer__link::before { content: '—'; font-size: 10px; color: var(--nt-grey-500); flex-shrink: 0; }
.nt-footer__link:hover { color: var(--nt-azur); }
.nt-footer__bottom {
  border-top: var(--nt-border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--nt-grey-500);
}

/* ============================================================
   ANIMATIONS — GSAP gère seul les états initiaux via gsap.from()
   Aucun opacity:0 en CSS — le contenu reste visible si JS échoue
============================================================ */
.nt-reveal, .nt-reveal-left, .nt-reveal-right, .nt-stagger {
  will-change: transform, opacity;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .nt-nav { display: none; }
  .nt-burger { display: flex; }
  .nt-footer__grid { grid-template-columns: 1fr 1fr; }
  .nt-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root {
    --nt-space-xl: 24px;
    --nt-space-2xl: 48px;
    --nt-space-3xl: 72px;
  }
  .nt-frow-2 { grid-template-columns: 1fr; }
  .nt-service-checks { grid-template-columns: 1fr; }
  .nt-footer__grid { grid-template-columns: 1fr; }
  .nt-contact-tabs { width: 100%; }
  .nt-tab { flex: 1; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .nt-reveal, .nt-reveal-left, .nt-reveal-right, .nt-stagger {
    opacity: 1 !important; transform: none !important;
  }
}
