@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ==========================================================================
   MIRCO PREGNOLATO · OPERATORE OLISTICO (L. 4/2013)
   DESIGN SYSTEM UNIVERSALE OLISTICO · 30 ANNI DI ESPERIENZA
   Palette 7 Centri Terrosa & Armonica · Effetti Visivi Wow · Tipografia Playfair + Inter
   ========================================================================== */

:root {
  --bg-main: #07090E;
  --bg-card: rgba(18, 22, 33, 0.85);
  --bg-elevated: #151A28;
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-accent: rgba(245, 184, 0, 0.35);

  --gold: #F5B800;
  --gold-light: #FFE082;
  --gold-dark: #C9971F;

  /* PALETTE 7 CENTRI ARCOBALENO · TRATTAMENTO TERROSO, MINERALE & CALMO (NO NEON) */
  --c-red: #C85A48;      /* 1. Radice: Terracotta Ancestrale */
  --c-orange: #D97736;   /* 2. Sacrale: Ambra & Corallo Caldo */
  --c-yellow: #E5A93C;   /* 3. Plesso: Oro Solare Naturale */
  --c-green: #4E9B6E;    /* 4. Cuore: Salvia & Giada Profonda */
  --c-blue: #3B82A6;     /* 5. Gola: Acqua del Delta & Ciano Minerale */
  --c-indigo: #4A55A2;   /* 6. Terzo Occhio: Zaffiro Serale */
  --c-violet: #7E57C2;   /* 7. Corona: Lavanda Mistica Desaturata */

  /* GRADIENTI ARCOBALENO ARMONICI OLISTICI */
  --grad-rainbow: linear-gradient(135deg, #7E57C2, #4A55A2 20%, #3B82A6 40%, #4E9B6E 60%, #E5A93C 80%, #D97736 100%);
  --grad-rainbow-soft: linear-gradient(135deg, rgba(126,87,194,0.18), rgba(59,130,166,0.18), rgba(78,155,110,0.18), rgba(229,169,60,0.18), rgba(217,119,54,0.18));
  --grad-gold-violet: linear-gradient(135deg, #FFE082 0%, #F5B800 45%, #7E57C2 100%);

  --text-white: #FFFFFF;
  --text-body: #CBD5E1;
  --text-muted: #94A3B8;
  --text-dark: #64748B;

  /* TIPOGRAFIA: AUTOREVOLEZZA CLASSICA (PLAYFAIR DISPLAY) + CHIAREZZA MODERNA (INTER) */
  --font-editorial: 'Playfair Display', Georgia, serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;

  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(245, 184, 0, 0.25);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-body);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

.container {
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
  box-sizing: border-box !important;
}

/* CARDS GLASSMORPHISM WCAG AAA ELEVATION PER TUTTO IL SITO */
.percorso-card, .tier-card, .service-card, .course-card, .book-card, .review-card, .card, .glass-card {
  background: rgba(14, 18, 26, 0.94) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(245, 184, 0, 0.28) !important;
  border-radius: var(--radius-md, 14px) !important;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 0, 0, 0.5) !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.percorso-card:hover, .tier-card:hover, .service-card:hover, .course-card:hover, .book-card:hover, .review-card:hover, .card:hover {
  border-color: rgba(245, 184, 0, 0.55) !important;
  box-shadow: 0 20px 42px -6px rgba(0, 0, 0, 0.85), 0 0 25px rgba(245, 184, 0, 0.2) !important;
  transform: translateY(-2px) !important;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: #06080D;
  background-image: 
    linear-gradient(180deg, rgba(6, 8, 13, 0.40) 0%, rgba(6, 8, 13, 0.15) 30%, rgba(6, 8, 13, 0.20) 70%, rgba(6, 8, 13, 0.60) 100%),
    url('bg-7chakras-universe.jpg');
  background-size: 100% 100%, cover;
  background-position: center top, center center;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat;
  color: var(--text-body);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* FILIGRANA DI SFONDO PATTERN WATERMARK MP & METODO H+ */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('watermark-pattern.svg');
  background-size: 280px 280px;
  background-repeat: repeat;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   SFONDO DINAMICO PANORAMICO DEI 7 RAGGI / 7 CHAKRA (UNIVERSALE)
   Immagine ufficiale fornita dall'utente (Albero Radice Rosso -> Leone -> Sole Oro ->
   Montagna Smeraldo -> Anime Ciano -> Ponte Indaco -> Meditatore Loto Viola)
   ========================================================================== */
.dynamic-universe-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.universe-panorama {
  position: absolute;
  top: -5%;
  left: -6%;
  width: 112%;
  height: 110%;
  background-image: url('bg-7chakras-universe.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.88;
  filter: brightness(1.06) saturate(1.22) contrast(1.06);
  will-change: transform, background-position;
  animation: universeKenBurns 90s ease-in-out infinite alternate;
  transform: translate3d(var(--mouse-shift-x, 0px), var(--mouse-shift-y, 0px), 0);
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.universe-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(6, 8, 13, 0.12) 0%, rgba(6, 8, 13, 0.42) 75%, rgba(6, 8, 13, 0.72) 100%),
              linear-gradient(180deg, rgba(6, 8, 13, 0.35) 0%, transparent 25%, transparent 75%, rgba(6, 8, 13, 0.60) 100%);
  pointer-events: none;
}

.universe-aurora {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(245, 184, 0, 0.08) 0%, rgba(56, 189, 248, 0.05) 45%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: universeAuroraGlow 12s ease-in-out infinite alternate;
}

@keyframes universeKenBurns {
  0% {
    background-position: 10% 50%;
    transform: scale(1.02) translate3d(var(--mouse-shift-x, 0px), var(--mouse-shift-y, 0px), 0);
  }
  50% {
    background-position: 50% 45%;
    transform: scale(1.08) translate3d(calc(var(--mouse-shift-x, 0px) + 1.5%), calc(var(--mouse-shift-y, 0px) - 1%), 0);
  }
  100% {
    background-position: 85% 52%;
    transform: scale(1.05) translate3d(calc(var(--mouse-shift-x, 0px) + 3%), calc(var(--mouse-shift-y, 0px) + 1%), 0);
  }
}

@keyframes universeAuroraGlow {
  0% { opacity: 0.45; }
  50% { opacity: 0.85; }
  100% { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  .universe-panorama, .universe-aurora {
    animation: none !important;
  }
}

/* CANVAS MATRIX RAIN STREAM (MP, H+, M+, P+, +, H1, H2, H3, DELTA, BIO, FE.NA.O., 81, ✦) */
#matrixRisingCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

/* ELEVAZIONE CONTENUTI SOPRA LA FILIGRANA ED IL MATRIX CANVAS */
.site-header, main, footer, .site-drawer, .site-drawer-backdrop {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   TOPBAR LEGALE UNIVERSALE (L. 4/2013)
   ========================================================================== */
.legal-topbar {
  background: #04060A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dark);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.4rem 1.25rem;
  line-height: 1.4;
  position: relative;
  z-index: 1001;
}

/* ==========================================================================
   HEADER FISSO PWA COMPATTO E NAVIGAZIONE
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-height: 74px !important;
  height: auto !important;
  padding: 8px 0 !important;
  box-sizing: border-box !important;
  background: rgba(7, 9, 14, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box !important;
}

.brand-link,
a.brand-logo,
.brand-logo,
.site-header a.brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  color: var(--text-white, #ffffff) !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 2px 0 !important;
  line-height: 1.15 !important;
  flex-shrink: 0 !important;
}

.brand-mark {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--rainbow-gold, #f5b800), #f97316) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #07090e !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  box-shadow: 0 0 14px rgba(245, 184, 0, 0.45) !important;
  flex-shrink: 0 !important;
}

.brand-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.brand-name {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.brand-subtitle,
.brand-sub {
  font-family: var(--font-sans, "Inter", sans-serif) !important;
  font-size: 0.66rem !important;
  color: var(--rainbow-gold, #f5b800) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  white-space: nowrap !important;
  line-height: 1.1 !important;
  margin: 3px 0 0 0 !important;
  padding: 0 !important;
  display: block !important;
}

/* ==========================================================================
   HEADER NAVIGAZIONE DESKTOP CON MACRO VOCI & DROPDOWN A DISCESA
   ========================================================================== */
.nav-desktop-links {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop-links {
    display: flex !important;
    align-items: center;
    gap: 16px;
  }
  .nav-macro-item {
    position: relative;
  }
  .nav-macro-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.22s ease;
    background: transparent;
    border: 1px solid transparent;
  }
  .nav-macro-btn:hover,
  .nav-macro-item:hover .nav-macro-btn {
    color: var(--rainbow-gold, #f5b800);
    background: rgba(245, 184, 0, 0.08);
    border-color: rgba(245, 184, 0, 0.3);
  }
  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 250px;
    padding: 8px;
    background: rgba(12, 16, 26, 0.98);
    border: 1px solid rgba(245, 184, 0, 0.35);
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.9), 0 0 24px rgba(245, 184, 0, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2500;
    flex-direction: column;
    gap: 4px;
  }
  .nav-macro-item:hover .nav-dropdown-menu {
    display: flex !important;
    animation: navDropdownFade 0.2s ease forwards;
  }
  .nav-sublink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #cbd5e1;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .nav-sublink:hover {
    color: #ffffff;
    background: rgba(245, 184, 0, 0.14);
    transform: translateX(4px);
  }
}

@keyframes navDropdownFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.desktop-nav {
  display: none !important;
}

/* WIDGET LIVE STATS VISITATORI & UTENTI CONNESSI */
.header-live-stats {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(11, 14, 22, 0.85);
  border: 1px solid rgba(245, 184, 0, 0.28);
  border-radius: 9999px;
  padding: 0.35rem 0.9rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(245, 184, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pulse-beacon {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
}

.pulse-beacon::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1.5px solid #10B981;
  animation: liveRadarPulse 2s infinite cubic-bezier(0.24, 0, 0.38, 1);
}

@keyframes liveRadarPulse {
  0% { transform: scale(0.9); opacity: 1; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

.stat-visitors-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.stat-icon {
  color: var(--gold-light);
  flex-shrink: 0;
}

.stat-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-txt {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.stat-dim {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.stat-txt strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* AZIONI HEADER: CTA + BURGER BUTTON */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #07090E;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
  transition: var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.45);
}

/* BURGER BUTTON UNIVERSALE (ATTIVO SEMPRE SIA SU DESKTOP CHE MOBILE) */
.site-burger-btn, .mobile-burger-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 184, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  color: var(--text-white);
  transition: all 0.25s ease;
  user-select: none;
}

.site-burger-btn:hover, .mobile-burger-btn:hover {
  background: rgba(245, 184, 0, 0.12);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(245, 184, 0, 0.25);
}

.burger-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 14px;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

/* ==========================================================================
   DRAWER OVERLAY DI NAVIGAZIONE COMPLETA (PER DESKTOP & MOBILE)
   ========================================================================== */
.site-drawer, .mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(390px, 92vw);
  height: 100vh;
  background: #080B11;
  background-image: radial-gradient(circle at 100% 0%, rgba(245, 184, 0, 0.07) 0%, transparent 60%);
  border-left: 1px solid rgba(245, 184, 0, 0.25);
  z-index: 9999;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
  overflow-y: auto;
}

.site-drawer.open, .mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.1rem;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.drawer-logo {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 6px rgba(245, 184, 0, 0.4));
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.drawer-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.drawer-close-btn:hover {
  background: rgba(245, 184, 0, 0.15);
  border-color: var(--gold);
  color: #FFFFFF;
}

/* STRIP METRICHE DENTRO IL DRAWER */
.drawer-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(245, 184, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  margin: 1.1rem 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.drawer-stats-strip strong {
  color: var(--gold-light);
}

.drawer-stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* LISTA NAVIGAZIONE NEL DRAWER */
.drawer-nav {
  margin: 0.5rem 0 1.5rem;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.drawer-links li a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.drawer-links li a:hover, .drawer-links li a.active {
  background: rgba(245, 184, 0, 0.08);
  border-left: 3px solid var(--gold);
  color: #FFFFFF;
  padding-left: 0.9rem;
}

.drawer-links .nav-main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.drawer-links .nav-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ICONE SVG ORO UNIVERSALI (SOSTITUZIONE INTEGRALE EMOJI) */
.svg-gold-icon {
  display: inline-block;
  vertical-align: middle;
  color: #F5B800;
  stroke: #F5B800;
  flex-shrink: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.svg-gold-icon.fill-gold {
  fill: #F5B800;
  stroke: none;
}

.svg-gold-icon:hover {
  filter: drop-shadow(0 0 6px rgba(245, 184, 0, 0.6));
}

.nav-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-tag.gold {
  background: rgba(245, 184, 0, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(245, 184, 0, 0.3);
}

.nav-tag.cyan {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

/* FOOTER DEL DRAWER */
.drawer-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.drawer-cta-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #07090E;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
  transition: var(--transition);
  display: block;
}

.drawer-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.45);
}

.drawer-contact-info {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.drawer-email {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.drawer-email:hover {
  text-decoration: underline;
}

.site-drawer-backdrop, .drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.site-drawer-backdrop.active, .drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   LAYOUT SEZIONI & CONTENITORI
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-py {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(245, 184, 0, 0.08);
  border: 1px solid rgba(245, 184, 0, 0.25);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ==========================================================================
   HERO SECTION DELLA PERSONA (MIRCO PREGNOLATO)
   ========================================================================== */
/* ==========================================================================
   HERO SECTION DELLA PERSONA (MIRCO PREGNOLATO) - SLIM & BALANCED
   Con Aura Conica/Radiale Arcobaleno Organico (Prompt 2: Effetti Wow Sobri)
   ========================================================================== */
.hero-wrapper {
  padding: 2.4rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 1. SFONDO HERO CON AURA ARCOBALENO SOFFUSA (CONIC/RADIAL GRADIENT ANIMATO) */
.hero-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 95vw);
  height: 480px;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(200, 90, 72, 0.08) 0deg,
    rgba(217, 119, 54, 0.09) 55deg,
    rgba(229, 169, 60, 0.11) 110deg,
    rgba(78, 155, 110, 0.09) 165deg,
    rgba(59, 130, 166, 0.10) 220deg,
    rgba(74, 85, 162, 0.09) 275deg,
    rgba(126, 87, 194, 0.08) 330deg,
    rgba(200, 90, 72, 0.08) 360deg
  );
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: rainbowAuraPulse 18s ease-in-out infinite alternate;
}

@keyframes rainbowAuraPulse {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(0.92); opacity: 0.75; }
  50% { transform: translate(-50%, -48%) rotate(180deg) scale(1.08); opacity: 0.95; }
  100% { transform: translate(-50%, -52%) rotate(360deg) scale(0.96); opacity: 0.80; }
}

/* 2. BORDO ANIMATO CON SHIMMER GRADIENTE ARCOBALENO */
.card-rainbow-shimmer {
  position: relative;
  background: rgba(18, 22, 33, 0.88);
  border-radius: var(--radius-md);
  padding: 1px;
  isolation: isolate;
}

.card-rainbow-shimmer::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    #C85A48,
    #D97736,
    #E5A93C,
    #4E9B6E,
    #3B82A6,
    #4A55A2,
    #7E57C2,
    #C85A48
  );
  z-index: -1;
  opacity: 0.45;
  animation: rainbowSpin 10s linear infinite;
  transition: opacity 0.3s ease;
}

.card-rainbow-shimmer:hover::before {
  opacity: 0.9;
}

@keyframes rainbowSpin {
  100% { transform: rotate(360deg); }
}

/* 3. TESTO CON GRADIENTE ARCOBALENO OLISTICO SATINATO */
.text-rainbow-gradient {
  background: linear-gradient(135deg, #FFE082 0%, #E5A93C 25%, #4E9B6E 50%, #38BDF8 75%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

/* 4. HOVER DINAMICO SU CARD IN BASE AI 7 CENTRI */
.method-card:nth-child(1):hover {
  border-color: var(--c-red);
  box-shadow: 0 12px 30px -5px rgba(200, 90, 72, 0.3);
}

.method-card:nth-child(2):hover {
  border-color: var(--c-blue);
  box-shadow: 0 12px 30px -5px rgba(59, 130, 166, 0.3);
}

.method-card:nth-child(3):hover {
  border-color: var(--c-green);
  box-shadow: 0 12px 30px -5px rgba(78, 155, 110, 0.3);
}

.hero-law-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-light);
  background: rgba(245, 184, 0, 0.05);
  border: 1px solid var(--border-accent);
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
  letter-spacing: 0.04em;
}

.hero-h1, .hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.85);
  line-height: 1.24;
  margin-bottom: 0.85rem;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.hero-h1 span, .hero-title span {
  background: linear-gradient(135deg, #FFF, var(--gold-light) 40%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: #E2E8F0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 19, 31, 0.88);
  border: 1px solid rgba(245, 184, 0, 0.45);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  color: #FFE082;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero-credentials-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 960px;
  margin: 0 auto 1.6rem;
}

@media (max-width: 768px) {
  .hero-credentials-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.hero-cred-item {
  background: rgba(18, 22, 33, 0.75);
  border: 1px solid rgba(245, 184, 0, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-cred-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45), 0 0 15px rgba(245, 184, 0, 0.15);
}

.hero-cred-item span, .hero-cred-item .cred-label {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-cred-item strong, .hero-cred-item .cred-val {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.hero-cta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-main-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #07090E;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.72rem 1.6rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(245, 184, 0, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-main-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 184, 0, 0.5);
}

.btn-main-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-accent);
  color: var(--text-white);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-main-secondary:hover {
  background: rgba(245, 184, 0, 0.1);
  border-color: var(--gold);
}

/* ==========================================================================
   METODO ABC-OLISTICO & ASSE CORPO-ENERGIA
   ========================================================================== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.method-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.method-letter {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.method-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}

.method-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ==========================================================================
   VALUE LADDER GRID & CARDS PRODOTTO
   ========================================================================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.offer-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.offer-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(245, 184, 0, 0.08), rgba(18, 22, 33, 0.95));
}

.offer-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.offer-h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.offer-subtitle {
  font-size: 0.88rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.offer-p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.offer-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #CBD5E1;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.offer-specs-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-specs-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.offer-price-val {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
}

.offer-price-note {
  font-size: 0.75rem;
  color: var(--text-dark);
}

.btn-card-action {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-accent);
  color: var(--gold-light);
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: block;
  transition: var(--transition);
}

.btn-card-action:hover, .btn-card-action.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #07090E;
}

/* ==========================================================================
   STRIP DEI 7 CENTRI ARCOBALENO OLISTICO (PROMPT 1 & 2: EFFETTI WOW)
   ========================================================================== */
.centers-rainbow-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .centers-rainbow-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .centers-rainbow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.center-pill {
  background: rgba(18, 22, 33, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem 0.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.center-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--center-color, var(--gold));
  opacity: 0.9;
}

.center-pill:hover {
  transform: translateY(-3px);
  border-color: var(--center-color, var(--gold));
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 0 18px var(--center-glow, rgba(245, 184, 0, 0.25));
}

.center-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--center-color, var(--gold));
  box-shadow: 0 0 8px var(--center-color, var(--gold));
}

.center-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
}

.center-sub {
  font-size: 0.68rem;
  color: var(--gold-light);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.center-benefit {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   TESTI GIUSTIFICATI IN CARDS E TABELLE (REGOLA GLOBALE SISTEMA)
   Massima pulizia editoriale e simmetria visiva dei paragrafi ed elenchi
   ========================================================================== */
.card p,
.card ul,
.card li,
.cards-grid .card p,
.cards-grid .card li,
.method-card p,
.method-desc,
.offer-card p,
.offer-p,
.offer-specs-list,
.offer-specs-list li,
.video-card p,
.video-desc,
.center-pill p,
.center-benefit,
.hero-cred-item p,
.hero-video-card-box p,
[class*="card"] p,
[class*="card"] li,
[class*="-card"] p,
[class*="-card"] li,
table,
table th,
table td,
table p,
.table,
.table th,
.table td,
.table p {
  text-align: justify !important;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ==========================================================================
   FOOTER UNIVERSALE A NORMA LEGGE 4/2013
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: #040508;
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-legal-callout {
  background: rgba(245, 184, 0, 0.05);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  font-size: 0.8rem;
  color: var(--gold-light);
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE ADATTIVO 9:16 (MOBILE TOUCH) & 16:9 (DESKTOP)
   ========================================================================== */
@media (max-width: 992px) {
  .header-inner {
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .header-live-stats {
    padding: 0.3rem 0.65rem;
    gap: 0.5rem;
  }
  .stat-visitors-badge {
    display: none; /* Su schermi piccoli diamo priorità assoluta agli utenti LIVE con pallino verde */
  }
  .stat-divider {
    display: none;
  }
  .header-cta-btn span {
    display: none; /* Mostra solo icona o abbreviato su mobile per far spazio a LIVE + Burger */
  }
  .header-cta-btn {
    padding: 0.5rem 0.75rem;
  }
  .header-cta-btn::after {
    content: 'Call';
  }
}

@media (max-width: 480px) {
  .brand-meta .brand-subtitle {
    display: none; /* Mostra solo MIRCO PREGNOLATO per massima pulizia su mobile */
  }
  .burger-label {
    display: none; /* Lascia l'icona hamburger a 3 barre dorate */
  }
  .site-burger-btn, .mobile-burger-btn {
    padding: 0.45rem 0.6rem;
  }
}

@media (max-width: 600px) {
  .hero-h1 {
    font-size: 2.1rem;
  }
  .hero-credentials-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .hero-cta-box {
    flex-direction: column;
    width: 100%;
  }
  .btn-main-primary, .btn-main-secondary {
    width: 100%;
    justify-content: center;
  }
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   3D RAINBOW CHAKRA CARDS & MAGIC OFFER DESIGN SYSTEM
   - Bordi tridimensionali marcati a gradiente arcobaleno/chakra (7 centri)
   - Box-shadow multilivello con rilievo 3D e highlight bevel
   - Micro-movimento hover con sollevamento e riflesso di luce speculare
   - Eliminazione assoluta di testi di colore blu: solo avorio/bianco e oro ad alto contrasto
   - Testi descrittivi e liste sempre giustificati
   ============================================================ */

/* 1. Base 3D Rainbow Card */
.card-3d-rainbow {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 18px;
  padding: 1.75rem;
  background: #0d131f !important;
  border: 2px solid transparent !important;
  background-clip: padding-box, border-box !important;
  background-origin: padding-box, border-box !important;
  background-image: 
    linear-gradient(180deg, rgba(15, 20, 30, 0.97), rgba(9, 12, 18, 0.99)),
    var(--card-rainbow-border, linear-gradient(135deg, #ef4444 0%, #f97316 16%, #eab308 33%, #22c55e 50%, #06b6d4 66%, #6366f1 83%, #a855f7 100%)) !important;
  box-shadow: 
    0 16px 40px -10px rgba(0, 0, 0, 0.95),
    0 0 30px rgba(234, 179, 8, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.8) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

.card-3d-rainbow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 70%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.card-3d-rainbow:hover {
  transform: translateY(-8px) scale(1.018);
  box-shadow: 
    0 26px 55px -12px rgba(0, 0, 0, 0.92),
    0 0 40px rgba(234, 179, 8, 0.32),
    0 0 60px rgba(168, 85, 247, 0.2),
    inset 0 2px 2px rgba(255, 255, 255, 0.45);
}

.card-3d-rainbow:hover::before {
  left: 170%;
}

/* 2. Badge 3D Rilievo Superiore */
.card-badge-3d {
  position: absolute;
  top: -2px;
  right: 24px;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #121008;
  background: linear-gradient(135deg, #fce08b 0%, #e7b93a 50%, #b8860b 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 0 15px rgba(231, 185, 58, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: none;
  z-index: 2;
}

.card-badge-3d.emerald {
  color: #042512;
  background: linear-gradient(135deg, #86efac 0%, #22c55e 50%, #15803d 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 0 15px rgba(34, 197, 94, 0.5);
}

.card-badge-3d.purple {
  color: #ffffff;
  background: linear-gradient(135deg, #d8b4fe 0%, #a855f7 50%, #7e22ce 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 0 15px rgba(168, 85, 247, 0.5);
}

/* 3. SKU & Metadati - NASCOSTI PER DESIGN LUXURY MINIMALE */
.card-sku-meta {
  display: none !important;
}

/* 4. Tipografia Card & REGOLE ANTI-BLU FERREE */
.card-3d-rainbow h2,
.card-3d-rainbow h3,
.card-3d-rainbow h4 {
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.card-3d-rainbow p,
.card-3d-rainbow .card-pain-point,
.card-3d-rainbow .card-transform,
.card-3d-rainbow ul,
.card-3d-rainbow li {
  color: #f1f5f9 !important; /* Bianco avorio ultra leggibile WCAG AAA */
  text-align: justify !important;
  text-justify: inter-word !important;
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
  line-height: 1.7;
}

/* Nessun elemento testuale dentro le card puo essere blu */
.card-3d-rainbow a:not(.btn-checkout-paypal):not(.btn-primary):not(.btn-main-primary) {
  color: #f6d77a !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 5. Prezzo e Confronto Valore (Price Anchoring) */
.card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 1.4rem 0 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.card-price-main {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.02em;
}

.card-price-compare {
  font-size: 1.05rem;
  color: #94a3b8 !important;
  text-decoration: line-through;
  font-weight: 500;
}

.card-price-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #22c55e !important;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  padding: 3px 8px;
  border-radius: 6px;
}

/* 6. Magic Offer Stack: Deliverables & Box Garanzia */
.magic-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.magic-deliverables li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.92rem;
}

.magic-deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-weight: 800;
  color: #f5b800;
  font-size: 1rem;
}

.magic-bonus-box {
  background: rgba(234, 179, 8, 0.06);
  border: 1px solid rgba(234, 179, 8, 0.35);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.magic-bonus-header {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f6d77a !important;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.magic-guarantee-box {
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.magic-guarantee-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ade80 !important;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 7. Pulsanti Checkout PayPal e Carta Luxury */
.btn-checkout-paypal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.72rem 1.25rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #fce08b 0%, #e7b93a 50%, #c9971f 100%);
  color: #121008 !important;
  box-shadow: 0 4px 14px -3px rgba(231, 185, 58, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-checkout-paypal span,
.btn-checkout-paypal strong,
.btn-checkout-paypal b {
  color: #121008 !important;
}

.btn-checkout-paypal::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  animation: mpShine 3.6s infinite;
}

.btn-checkout-paypal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(231, 185, 58, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.8);
  color: #000000 !important;
}

.btn-checkout-paypal:hover span {
  color: #000000 !important;
}

.btn-checkout-paypal .btn-subtext {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.85;
}

.btn-checkout-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 1rem;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f1f5f9 !important;
  transition: all 0.25s ease;
}

.btn-checkout-secondary span,
.btn-checkout-secondary strong {
  color: #f1f5f9 !important;
}

.btn-checkout-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(231, 185, 58, 0.5);
  color: #ffffff !important;
}

.btn-checkout-secondary:hover span {
  color: #ffffff !important;
}

/* Regole speciali per bottoni nei tier e card footer */
.card-3d-rainbow .card-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
}

.card-footer-actions {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.card-3d-rainbow .btn-checkout-paypal,
.card-footer-actions .btn-checkout-paypal {
  margin-bottom: 0.4rem;
  width: 100%;
  box-sizing: border-box;
}

.card-3d-rainbow .btn-checkout-secondary,
.card-footer-actions .btn-checkout-secondary {
  width: 100%;
  box-sizing: border-box;
}

.checkout-trust-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.76rem;
  color: #94a3b8 !important;
  margin-top: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-trust-mini span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 8. Giustificazione Universale Tabelle e Schede (Regola Karpathy) */
table, .comparison-table, .offers-table, table td {
  text-align: justify !important;
  text-justify: inter-word !important;
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
}

table th {
  text-align: left !important;
}

/* ============================================================
   9. LUXURY TEXT CARD SYSTEM (Struttura Corpi e Testi)
   Racchiude i testi narrativi, manifesti, bio e capitoli in card
   ad alta leggibilità con glassmorphism scuro, bordo oro sottile
   e testo perfettamente giustificato (Regola Karpathy).
   ============================================================ */
.luxury-text-card {
  position: relative;
  background: rgba(13, 19, 31, 0.90) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(245, 184, 0, 0.28) !important;
  border-radius: 22px;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 
    0 20px 50px -10px rgba(0, 0, 0, 0.85),
    0 0 35px rgba(245, 184, 0, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
  margin-bottom: 2.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.luxury-text-card:hover {
  border-color: rgba(245, 184, 0, 0.45) !important;
  box-shadow: 
    0 24px 60px -10px rgba(0, 0, 0, 0.9),
    0 0 45px rgba(245, 184, 0, 0.14),
    inset 0 1px 3px rgba(255, 255, 255, 0.22);
}

.luxury-text-card h1,
.luxury-text-card h2,
.luxury-text-card h3,
.luxury-text-card h4 {
  color: #ffffff !important;
  margin-top: 0;
  line-height: 1.25;
}

.luxury-text-card p,
.luxury-text-card li,
.luxury-text-card .text-body {
  color: #f1f5f9 !important;
  font-size: 1.02rem;
  line-height: 1.8;
  text-align: justify !important;
  text-justify: inter-word !important;
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
  margin-bottom: 1.25rem;
}

.luxury-text-card p:last-child,
.luxury-text-card li:last-child {
  margin-bottom: 0;
}

.luxury-text-card strong,
.luxury-text-card b {
  color: #ffffff !important;
  font-weight: 700;
}

.luxury-text-card .gold-accent {
  color: #f6d77a !important;
}

.luxury-text-card blockquote,
.luxury-text-card .quote-callout {
  background: rgba(245, 184, 0, 0.08);
  border-left: 4px solid #f5b800;
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
  color: #ffffff !important;
  font-weight: 600;
  text-align: justify !important;
  text-justify: inter-word !important;
}

/* ============================================================================
   ARCHITETTURA REVIEWS TRUSTPILOT INTERNO & TICKER SCORREVOLE HOMEPAGE
   ============================================================================ */
.tp-score-banner {
  background: linear-gradient(135deg, rgba(14, 18, 28, 0.95), rgba(20, 26, 40, 0.95));
  border: 1px solid rgba(245, 184, 0, 0.35);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .tp-score-banner {
    grid-template-columns: 320px 1fr;
    align-items: center;
  }
}

.tp-score-main {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .tp-score-main {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0;
    padding-right: 2rem;
  }
}

.tp-score-number {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 3.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tp-stars-row {
  display: inline-flex;
  gap: 4px;
  color: #f5b800;
  margin-bottom: 0.6rem;
}

.tp-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tp-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.tp-bar-track {
  flex: 1;
  height: 9px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.tp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f5b800, #10b981);
  border-radius: 999px;
}

.tp-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.tp-filter-btn {
  background: rgba(14, 18, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tp-filter-btn:hover,
.tp-filter-btn.active {
  background: rgba(245, 184, 0, 0.18);
  border-color: #f5b800;
  color: #f6d77a;
}

.tp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .tp-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tp-card {
  background: rgba(14, 18, 28, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 0, 0.4);
}

.tp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.tp-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.25), rgba(16, 185, 129, 0.25));
  border: 1px solid rgba(245, 184, 0, 0.4);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.tp-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #10b981;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tp-card-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.12rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.tp-card-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.65;
  text-align: justify !important;
  text-justify: inter-word !important;
  hyphens: auto;
  margin-bottom: 14px;
}

.tp-card-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: #94a3b8;
}

/* TICKER CONTINUO HOMEPAGE */
.home-ticker-section {
  padding: 2.5rem 0;
  overflow: hidden;
  background: rgba(7, 9, 14, 0.75);
  border-top: 1px solid rgba(245, 184, 0, 0.18);
  border-bottom: 1px solid rgba(245, 184, 0, 0.18);
  position: relative;
}

.ticker-track-wrap {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: scrollTicker 45s linear infinite;
}

.ticker-track-wrap:hover {
  animation-play-state: paused;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-card {
  width: 320px;
  background: rgba(14, 18, 28, 0.95);
  border: 1px solid rgba(245, 184, 0, 0.25);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ticker-card p {
  font-size: 0.84rem;
  color: #f1f5f9;
  line-height: 1.55;
  margin: 6px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* I 3 PILASTRI FISSI */
.pillar-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .pillar-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-callout-card {
  background: linear-gradient(135deg, rgba(20, 26, 40, 0.95) 0%, rgba(11, 15, 23, 0.95) 100%);
  border: 2px dashed rgba(245, 184, 0, 0.4);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  margin-top: 3rem;
}


/* ==========================================================================
   HEADER UNIVERSALE: MACRO VOCI CON MICRO VOCI SOTTO
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 74px !important;
  height: auto !important;
  padding: 8px 0 !important;
  box-sizing: border-box !important;
  background: rgba(7, 9, 14, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}

.header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.nav-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 184, 0, 0.12);
  border: 1px solid rgba(245, 184, 0, 0.35);
  color: #f6d77a;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-cart-btn:hover {
  background: rgba(245, 184, 0, 0.22);
  border-color: #f5b800;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(245, 184, 0, 0.35);
  transform: translateY(-1px);
}

.nav-desktop-links {
  display: none;
}

@media (min-width: 1024px) {
  .site-header {
    min-height: 76px !important;
  }

  .nav-desktop-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
  }

  .nav-macro-item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .nav-macro-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-macro-btn:hover,
  .nav-macro-item:hover .nav-macro-btn,
  .nav-macro-item:focus-within .nav-macro-btn {
    color: var(--rainbow-gold);
  }

  .macro-chevron {
    transition: transform 0.2s ease;
  }

  .nav-macro-item:hover .macro-chevron,
  .nav-macro-item:focus-within .macro-chevron {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 14, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 184, 0, 0.35);
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), var(--shadow-gold);
    padding: 8px 0;
    min-width: 250px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 110;
    display: flex;
    flex-direction: column;
  }

  .nav-macro-item:hover .nav-dropdown-menu,
  .nav-macro-item:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-sublink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #cbd5e1;
    font-size: 0.86rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
  }

  .nav-sublink:hover {
    background: rgba(245, 184, 0, 0.12);
    color: var(--rainbow-gold);
  }

  .nav-desktop-cta {
    padding: 9px 20px;
    min-height: 42px;
    background: linear-gradient(135deg, var(--rainbow-gold), #eab308);
    color: #07090e !important;
    font-weight: 800 !important;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(245, 184, 0, 0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile Hamburger & Overlay Menu */
.btn-hamburger {
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 102;
}

.btn-hamburger span {
  width: 22px;
  height: 2px;
  background-color: var(--rainbow-gold);
  transition: all 0.25s ease;
}

.btn-hamburger.active span:nth-child(1),
.btn-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.btn-hamburger.active span:nth-child(2),
.btn-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.btn-hamburger.active span:nth-child(3),
.btn-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay-menu {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 14, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 80px var(--space-5) 90px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-overlay-menu.open,
.mobile-overlay-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-group {
  margin-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: var(--space-3);
}

.mobile-nav-group-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--rainbow-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mobile-nav-group-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: var(--space-3);
}

.mobile-sublink {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

/* ==========================================================================
   FOOTER UNIVERSALE COMPRESSO E SEMPLIFICATO
   ========================================================================== */
.site-footer-universal {
  background: rgba(5, 7, 12, 0.98);
  border-top: 1px solid rgba(245, 184, 0, 0.28);
  padding: var(--space-8) 0 var(--space-4) 0;
  margin-top: var(--space-12);
  color: var(--text-body);
}

.footer-grid-compressed {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

@media (min-width: 640px) and (max-width: 1023px) {
  .footer-grid-compressed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid-compressed {
    grid-template-columns: 1.3fr 1.1fr 1.1fr 1fr;
    gap: var(--space-8);
  }
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rainbow-gold);
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.footer-brand-qualifica {
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-brand-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #94a3b8;
  margin-bottom: 10px;
}

.footer-badge-l4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--rainbow-gold);
  background: rgba(245, 184, 0, 0.08);
  border: 1px solid rgba(245, 184, 0, 0.25);
  padding: 3px 10px;
  border-radius: 999px;
}

.footer-col-heading {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(245, 184, 0, 0.25);
  padding-bottom: 4px;
  display: inline-block;
}

.footer-address, .footer-fiscal-data {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-gold-link {
  color: var(--rainbow-gold);
  text-decoration: none;
  font-weight: 600;
}
.footer-gold-link:hover {
  text-decoration: underline;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-links-list li a {
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: var(--rainbow-gold);
}

.footer-reviews-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--rainbow-gold);
  background: rgba(245, 184, 0, 0.1);
  border: 1px solid rgba(245, 184, 0, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.74rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-3);
}

/* ==========================================================================
   SFONDO DINAMICO PANORAMICO DEI 7 CHAKRA + MATRIX RAIN CANVAS + CIELO STELLATO
   Immagine ufficiale dei 7 Chakra (Albero Rosso -> Leone -> Sole -> Montagna -> Anime -> Ponte -> Loto)
   ========================================================================== */
.dynamic-universe-bg {
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.universe-panorama {
  position: absolute !important;
  inset: -4% !important;
  width: 108% !important;
  height: 108% !important;
  background-image: url('bg-7chakras-universe.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: brightness(1.06) saturate(1.22) contrast(1.06) !important;
  animation: universeKenBurns 90s ease-in-out infinite alternate !important;
  transform: translate3d(var(--mouse-shift-x, 0px), var(--mouse-shift-y, 0px), 0) !important;
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.universe-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at 50% 45%, rgba(6, 8, 13, 0.15) 0%, rgba(6, 8, 13, 0.45) 65%, rgba(6, 8, 13, 0.75) 100%),
              linear-gradient(180deg, rgba(6, 8, 13, 0.40) 0%, transparent 25%, transparent 75%, rgba(6, 8, 13, 0.65) 100%) !important;
  pointer-events: none !important;
}

.universe-aurora {
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse at 50% 100%, rgba(245, 184, 0, 0.08) 0%, rgba(56, 189, 248, 0.05) 45%, transparent 70%) !important;
  mix-blend-mode: screen !important;
  pointer-events: none !important;
  animation: universeAuroraGlow 12s ease-in-out infinite alternate !important;
}

#matrixRisingCanvas {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  opacity: 0.42 !important;
  mix-blend-mode: screen !important;
}

#sky {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  width: 100vw !important;
  height: 100vh !important;
  opacity: 0.70 !important;
}

#bgshow {
  display: none !important;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: #ffffff;
  opacity: 0.04;
  -webkit-mask-image: url('mp-pattern.svg'), url('mp-pattern.svg');
  -webkit-mask-size: 340px 340px, 340px 340px;
  -webkit-mask-position: 0 0, 170px 170px;
  -webkit-mask-repeat: repeat, repeat;
  mask-image: url('mp-pattern.svg'), url('mp-pattern.svg');
  mask-size: 340px 340px, 340px 340px;
  mask-position: 0 0, 170px 170px;
  mask-repeat: repeat, repeat;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: var(--rainbow-gold, #f5b800);
  opacity: 0.03;
  -webkit-mask: url('mp-pattern.svg') center/min(85vw, 900px) no-repeat;
  mask: url('mp-pattern.svg') center/min(85vw, 900px) no-repeat;
}

/* ==========================================================================
   EQUALIZED SYSTEMIC 3-CARD TIER ARCHITECTURE (PIXEL-PERFECT WCAG AAA)
   ========================================================================== */
.subcards-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  margin-top: 24px !important;
  margin-bottom: 24px !important;
  align-items: stretch !important;
}

@media (min-width: 992px) {
  .subcards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }
}

.sub-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 100% !important;
  box-sizing: border-box !important;
  background: rgba(14, 18, 28, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(245, 184, 0, 0.28) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease !important;
}

.sub-card:hover {
  border-color: #f5b800 !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75), 0 0 24px rgba(245, 184, 0, 0.22) !important;
}

.subcard-badge {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  margin-bottom: 12px !important;
}

.h-step-pill {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  display: inline-block !important;
  line-height: 1.2 !important;
  flex-shrink: 0 !important;
}

.h-step-theme {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
  text-align: right !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.subcard-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.22rem !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 12px 0 !important;
  min-height: 58px !important;
  max-height: 58px !important;
  display: flex !important;
  align-items: center !important;
}

.subcard-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  line-height: 1.58 !important;
  color: #94a3b8 !important;
  margin: 0 0 16px 0 !important;
  min-height: 122px !important;
  max-height: 122px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 5 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-align: left !important;
}

.subcard-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  min-height: 180px !important;
}

.subcard-checklist li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  line-height: 1.38 !important;
  color: #cbd5e1 !important;
  min-height: 38px !important;
}

.subcard-checklist li svg {
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  stroke: #f5b800 !important;
}

.listino-price-section {
  margin-top: auto !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.listino-price-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  gap: 6px !important;
  min-height: 40px !important;
}

.listino-price-val {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.85rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.listino-price-sub {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  color: #f5b800 !important;
  font-weight: 600 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

.listino-cadence-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.76rem !important;
  color: #94a3b8 !important;
  margin: 4px 0 8px 0 !important;
  min-height: 18px !important;
  max-height: 18px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.listino-trust-badges {
  display: flex !important;
  gap: 6px !important;
  margin-bottom: 12px !important;
  min-height: 26px !important;
}

.listino-trust-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.68rem !important;
  color: #cbd5e1 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding: 3px 6px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  white-space: nowrap !important;
  flex: 1 !important;
}

.subcard-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.subcard-actions .btn-action-primary {
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  width: 100% !important;
  text-align: center !important;
  box-sizing: border-box !important;
  padding: 0 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #f5b800 0%, #df9b00 100%) !important;
  color: #07090e !important;
  box-shadow: 0 4px 14px rgba(245, 184, 0, 0.35) !important;
  transition: all 0.2s ease !important;
}

.subcard-actions .btn-action-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.5) !important;
}

.subcard-actions .btn-action-secondary {
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  width: 100% !important;
  text-align: center !important;
  box-sizing: border-box !important;
  padding: 0 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.80rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #f1f5f9 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: all 0.2s ease !important;
}

.subcard-actions .btn-action-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #f5b800 !important;
  color: #f5b800 !important;
}