.elementor-31 .elementor-element.elementor-element-36f3aee{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4ed55cb *//* ══════════════════════════════════════════════════════
   TIVISTATION — Header CSS
   À coller dans : Elementor → Site Settings → Custom CSS
   OU dans : Elementor → Edit Page → Custom CSS (onglet Advanced)
   ══════════════════════════════════════════════════════ */

:root {
  --purple:   #a855f7;
  --purple-d: #7c3aed;
  --cyan:     #06b6d4;
  --bg:       #05030f;
  --surface:  rgba(255,255,255,0.04);
  --border:   rgba(255,255,255,0.08);
  --text:     #f1f5f9;
  --muted:    #94a3b8;
  --font:     'Outfit', sans-serif;
  --hh:       72px;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hh);
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}

.header.scrolled {
  background: rgba(5, 3, 15, 0.88);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,.5);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── LOGO ─────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.logo-icon {
  position: relative;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168,85,247,.15), rgba(6,182,212,.15));
  border: 1px solid rgba(168,85,247,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}
.logo:hover .logo-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 28px rgba(168,85,247,.5), 0 0 10px rgba(6,182,212,.3);
}

.logo-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 15px;
  border: 1px solid rgba(168,85,247,.55);
  animation: pulse-ring 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 0;  transform: scale(1.22); }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-brand {
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}
.logo-brand em {
  font-style: normal;
  background: linear-gradient(135deg, #a855f7, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-tag {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── NAV LINKS ────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  position: relative;
  padding: 8px 15px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: color .25s, background .25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 26px; height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a855f7, #06b6d4);
  box-shadow: 0 0 8px rgba(168,85,247,.7), 0 0 16px rgba(6,182,212,.4);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.nav-link:hover {
  color: #fff;
  background: var(--surface);
}
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-link.active {
  color: #fff;
  background: var(--surface);
}
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  box-shadow: 0 0 10px rgba(168,85,247,.9), 0 0 20px rgba(6,182,212,.5);
}

/* ── CTA BUTTON ───────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  padding: 10px 22px;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple-d) 0%, var(--purple) 50%, var(--cyan) 100%);
  background-size: 200%;
  background-position: left center;
  box-shadow: 0 4px 20px rgba(168,85,247,.4);
  transition: background-position .45s ease, transform .2s ease, box-shadow .3s ease;
}
.cta-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168,85,247,.6);
}
.cta-btn:active { transform: translateY(0); }

/* ── HAMBURGER ────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  margin-left: 12px;
  transition: background .2s;
}
.hamburger:hover { background: var(--surface); }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ──────────── */
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(var(--hh) + 10px);
  left: 14px; right: 14px;
  background: rgba(10, 5, 26, 0.97);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,.65), 0 0 0 1px rgba(168,85,247,.12);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.mobile-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav { display: flex; flex-direction: column; gap: 3px; }
.mobile-link {
  display: block;
  padding: 13px 18px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.mobile-link:hover { color: #fff; background: var(--surface); }
.mobile-cta { margin-top: 8px; justify-content: center; border-radius: 10px; }

/* ── RESPONSIVE ───────────── */
@media (max-width: 900px) {
  .nav-link { padding: 8px 11px; font-size: .86rem; }
}
@media (max-width: 768px) {
  .nav, .cta-btn { display: none; }
  .hamburger { display: flex; }
}/* End custom CSS */