/* ============================================================
   DR. ANDREA CELONA — PSICOLOGO DEL BUSINESS
   Style v5 — Ispirato agli screenshot forniti
   Palette: Bianco / Blu (#1a3a6b, #2563eb) / Grigio chiaro
   Font: Playfair Display (serif) + Inter (sans)
   ============================================================ */

:root {
  --blue-dark:    #0f2a5c;
  --blue-main:    #1a3a6b;
  --blue-mid:     #2563eb;
  --blue-light:   #3b82f6;
  --blue-pale:    #eff6ff;
  --white:        #ffffff;
  --gray-50:      #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-200:     #e2e8f0;
  --gray-400:     #94a3b8;
  --gray-600:     #1e293b;
  --gray-800:     #1e293b;
  --text:         #1e293b;
  --text-light:   #1e293b;
  --red:          #ef4444;
  --green:        #22c55e;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --shadow:       0 2px 12px rgba(15,42,92,0.08);
  --shadow-md:    0 4px 24px rgba(15,42,92,0.12);
  --shadow-lg:    0 8px 40px rgba(15,42,92,0.16);
  --font-serif:   'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-sans:    'SF Pro Text', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --section-pad:  120px 0;
  --section-pad-sm: 88px 0;
  --title-to-content: 56px;
  --card-gap: 24px;
  --card-pad: 36px 32px;
  --container:    1120px;
  --primary:      #2563eb;
  --primary-dark: #1d4ed8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; scroll-padding-top: 80px; touch-action: pan-y; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  letter-spacing: -0.022em;
  -webkit-overflow-scrolling: touch;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   KEYFRAME ANIMATIONS — Apple-style
   ============================================================ */

/* Hero slide up */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Shimmer effect sui bottoni */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.28) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-shimmer:hover::after {
  opacity: 1;
  animation: shimmer 0.7s ease forwards;
}

/* Glow pulse sui numeri proof */
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 0px rgba(37,99,235,0); }
  50%       { text-shadow: 0 0 16px rgba(37,99,235,0.35); }
}
.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Floating badge animation */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.hero-badge-float {
  animation: floatBadge 4s ease-in-out infinite;
}

/* Gradient animated background per sezioni dark */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.section-dark {
  background-size: 200% 200% !important;
  animation: gradientShift 12s ease infinite;
}

/* Underline animato sui link navbar */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--blue-mid);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(.25,.46,.45,.94);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Reveal line — divisore animato tra sezioni */
@keyframes lineExpand {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-mid), transparent);
  transform: scaleX(0);
  transform-origin: center;
}
.section-divider.visible {
  animation: lineExpand 1s cubic-bezier(.25,.46,.45,.94) forwards;
}

/* Proof bar number pop */
@keyframes numberPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.proof-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-main);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

/* Card tilt on hover — micro-interazione premium */
.passaggio-card,
.falso-card,
.testi-card,
.why-card {
  will-change: transform;
}

/* Immagini con reveal scale */
.problema-img,
.risultati-img,
.passaggi-hero-img {
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94), box-shadow 0.6s;
}
.problema-img:hover,
.risultati-img:hover,
.passaggi-hero-img:hover {
  transform: scale(1.015);
  box-shadow: 0 24px 72px rgba(15,42,92,0.22);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue-main); border-radius: 3px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-light  { background: #ffffff; }
.section-white  { background: #ffffff; }
.section-dark   {
  background: linear-gradient(160deg, #0a1f4e 0%, #0f2a5c 50%, #1a3a6b 100%);
  color: var(--white);
}
.section-gray   { background: #f5f5f7; }
.section-silver {
  background: linear-gradient(180deg, #f4f5f7 0%, #eaecef 100%);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.section-navy   { background: linear-gradient(160deg, #0a1f4e 0%, #0f2a5c 100%); color: var(--white); }

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(37,99,235,0.1);
  color: var(--blue-mid);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 580px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  background-size: 200% 200%;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.4), 0 1px 0 rgba(255,255,255,0.15) inset;
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-primary:hover::before,
.btn-primary:active::before {
  left: 100%;
}
.btn-primary:hover {
  background-position: 100% 100%;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(37,99,235,0.5), 0 1px 0 rgba(255,255,255,0.2) inset;
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.btn-nav {
  background: var(--blue-main);
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(37,99,235,0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.btn-nav:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

.btn-white {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  background-size: 200% 200%;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.45), 0 1px 0 rgba(255,255,255,0.15) inset;
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-white::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-white:hover::before,
.btn-white:active::before {
  left: 100%;
}
.btn-white:hover {
  background-position: 100% 100%;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(37,99,235,0.55), 0 0 0 3px rgba(37,99,235,0.2);
  color: #ffffff;
}
.btn-white:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.btn-hero {
  font-size: 1.05rem;
  padding: 16px 36px;
  box-shadow: 0 6px 28px rgba(37,99,235,0.45), 0 1px 0 rgba(255,255,255,0.15) inset;
  letter-spacing: 0.01em;
}
.btn-lg  { font-size: 1rem; padding: 15px 32px; }
.btn-xl  { font-size: 1.1rem; padding: 18px 44px; }

/* Bottone CTA premium */
.btn-cta-premium {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 35%, #0ea5e9 70%, #2563eb 100%);
  background-size: 200% 200%;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 20px 36px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(16,185,129,0.45), 0 2px 8px rgba(37,99,235,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: background-position 0.6s ease, transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
  margin-top: 8px;
}
.btn-cta-premium::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn-cta-premium:hover::before { left: 100%; }
.btn-cta-premium:hover {
  background-position: 100% 100%;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(16,185,129,0.5), 0 4px 16px rgba(37,99,235,0.3), 0 0 0 3px rgba(16,185,129,0.25);
}
.btn-cta-premium:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}
.btn-cta-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.btn-cta-icon svg { stroke: #ffffff; }
.btn-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.btn-cta-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.btn-cta-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.01em;
}
.btn-cta-arrow {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.btn-cta-premium:hover .btn-cta-arrow { transform: translateX(4px); }

@media (max-width: 640px) {
  .btn-cta-premium { width: 100%; justify-content: center; }
  .btn-cta-text { align-items: center; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s, background 0.3s;
  -webkit-transform: translateZ(0); /* forza GPU layer su iOS */
  transform: translateZ(0);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 20px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue-main); background: rgba(37,99,235,0.06); }
.nav-links a.active { color: var(--blue-main); font-weight: 600; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.nav-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 10px 12px;
  border-radius: 8px;
}
.nav-mobile a:hover { color: var(--blue-main); background: var(--blue-pale); }
.nav-mobile.open { display: flex; }
.nav-mobile-cta {
  display: block;
  margin-top: 8px;
  padding: 14px 20px !important;
  background: var(--blue-main) !important;
  color: #ffffff !important;
  text-align: center;
  font-weight: 700 !important;
  border-radius: 12px;
  font-size: 1rem !important;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3a6b 60%, #2563eb 100%);
  min-height: 100vh;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Nascondi hero mobile su desktop */
.hero-mobile-fullscreen { display: none; }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: #93c5fd;
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.hero-sub strong { color: var(--white); }

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-bullets li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  overflow: visible;
}

.hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* Hero after: visibile solo su mobile */
.hero-after { display: none; }

/* Hero photo */
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-top: -40px;
}
.hero-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
  display: block;
  padding-top: 0;
}

.hero-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.hero-badge-float strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-main);
  line-height: 1;
}
.hero-badge-float span {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}
.hero-badge-top    { top: 24px; right: 8px; }
.hero-badge-bottom { bottom: 40px; left: 8px; }

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.hero-scroll a:hover { color: var(--white); }

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  box-shadow: 0 1px 8px rgba(15,42,92,0.06);
}
.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-main);
  opacity: 0.7;
  margin-bottom: 4px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 24px;
  text-align: center;
  min-width: 0;
  flex: 1 1 auto;
}
.proof-item strong {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue-main);
  line-height: 1;
}
.proof-plus {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue-main);
  line-height: 1;
}
.proof-item span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ============================================================
   PROBLEMA
   ============================================================ */
.problema { padding: var(--section-pad); }

.problema-layout {
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px);
  gap: 72px;
  align-items: center;
  margin-top: 24px;
}
.problema-img-col { flex-shrink: 0; }
.problema-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 56px rgba(15,42,92,0.18);
  object-fit: cover;
  aspect-ratio: 3/2;
}
.problema-text p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
}
.problema-quote {
  border-left: 4px solid var(--blue-mid);
  padding: 16px 20px;
  background: var(--blue-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  color: var(--blue-dark);
  margin-top: 8px;
}
.problema-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* PASSAGGI HERO IMG */
.passaggi-intro {
  text-align: center;
  margin-bottom: 64px;
}
.passaggi-hero-img {
  width: 100%;
  max-width: 860px;
  margin: 40px auto 0;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 48px rgba(15,42,92,0.14);
  object-fit: cover;
  aspect-ratio: 16/7;
  display: block;
}

/* RISULTATI LAYOUT */
.risultati-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.risultati-content { width: 100%; max-width: 960px; }
.risultati-img-col { flex-shrink: 0; }
.risultati-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 56px rgba(0,0,0,0.3);
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ============================================================
   BIG IDEA
   ============================================================ */
.big-idea { padding: var(--section-pad); text-align: center; }
.big-idea-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}
.big-idea-box {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(147,197,253,0.35);
  border-radius: var(--radius-lg);
  padding: 40px 56px;
  max-width: 640px;
  box-shadow: 0 0 60px rgba(59,130,246,0.18), inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.big-idea-box::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: bigIdeaShimmer 4s ease-in-out infinite;
}
@keyframes bigIdeaShimmer {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}
.big-idea-truth {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.big-idea-arrow {
  font-size: 1.15rem;
  color: #93c5fd;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-block;
  padding: 10px 20px;
  background: rgba(59,130,246,0.15);
  border-radius: 50px;
  border: 1px solid rgba(147,197,253,0.3);
  animation: arrowPulse 2.5s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(147,197,253,0); }
  50% { box-shadow: 0 0 0 8px rgba(147,197,253,0.12); }
}

/* ============================================================
   FALSI TENTATIVI
   ============================================================ */
.falsi { padding: var(--section-pad); text-align: center; }
.falsi .section-title { margin-bottom: 14px; }
.falsi .section-sub { margin: 0 auto 64px; }

.falsi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.falso-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.25s cubic-bezier(.25,.46,.45,.94), box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.falso-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(15,42,92,0.12); }
.falso-card-last {
  grid-column: 1 / -1;
  max-width: 260px;
  margin: 0 auto;
}
.falso-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}
.falso-x { display: none; }
.falso-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

/* ============================================================
   WHY (PERCHÉ FUNZIONA)
   ============================================================ */
.why { padding: var(--section-pad); text-align: center; }
.why .section-title { margin-bottom: 14px; }
.why .section-sub { margin: 0 auto 56px; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
  align-items: stretch;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.why-card:hover { background: rgba(255,255,255,0.1); }
.why-footer {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.why-footer-line {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.why-card ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.why-card li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
}
.why-arrow {
  font-size: 0.9rem;
  color: #93c5fd;
  font-weight: 500;
  font-style: italic;
}

/* ============================================================
   VENN DIAGRAM ANIMATION PREMIUM — Psicologia + Organizzazione
   ============================================================ */

.why-intro { text-align: center; margin-bottom: 64px; }
.why-intro .section-sub { margin: 0 auto; }

/* Wrapper Venn */
/* Immagine statica Venn per mobile */
.venn-mobile-img {
  display: none;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.venn-mobile-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.venn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  min-height: 520px;
  overflow: visible;
}

/* Canvas particelle sfondo */
.venn-particles-canvas {
  position: absolute;
  inset: -60px;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.venn-wrap.active .venn-particles-canvas { opacity: 1; }

/* I due cerchi */
.venn-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: transform 1.1s cubic-bezier(.25,.46,.45,.94), opacity 0.9s ease;
  opacity: 0;
  z-index: 1;
  overflow: visible;
}
.venn-circle.visible { opacity: 1; }

.venn-left {
  background: radial-gradient(circle at 65% 50%, rgba(59,130,246,0.28) 0%, rgba(37,99,235,0.12) 55%, transparent 80%);
  border: 1.5px solid rgba(99,165,255,0.4);
  transform: translateX(50px);
  margin-right: -50px;
}
.venn-right {
  background: radial-gradient(circle at 35% 50%, rgba(34,197,94,0.25) 0%, rgba(22,163,74,0.1) 55%, transparent 80%);
  border: 1.5px solid rgba(74,222,128,0.4);
  transform: translateX(-50px);
  margin-left: -50px;
}
.venn-left.spread  { transform: translateX(0); }
.venn-right.spread { transform: translateX(0); }

/* Glow esterno al cerchio */
.venn-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.8s ease 0.8s;
  pointer-events: none;
  z-index: -1;
}
.venn-circle.spread .venn-glow { opacity: 1; }
.venn-glow-blue  { background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, transparent 70%); }
.venn-glow-green { background: radial-gradient(circle, rgba(34,197,94,0.2) 0%, transparent 70%); }

/* Contenuto interno al cerchio */
.venn-circle-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
  position: relative;
  z-index: 2;
  width: 100%;
}
.venn-left .venn-circle-inner  { padding-right: 130px; }
.venn-right .venn-circle-inner { padding-left: 130px; }
.venn-circle.spread .venn-circle-inner { opacity: 1; transform: translateY(0); }

.venn-icon  { font-size: 3rem; filter: drop-shadow(0 0 8px rgba(255,255,255,0.3)); }
.venn-name  { font-size: 1.3rem; font-weight: 700; color: #ffffff; line-height: 1.3; letter-spacing: -0.01em; }
.venn-desc  { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.55; max-width: 180px; }

/* Zona centrale (intersezione) */
.venn-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}

/* Badge 360 premium */
.venn-badge {
  position: relative;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.3) rotate(-20deg);
  transition: opacity 0.7s cubic-bezier(.34,1.56,.64,1), transform 0.7s cubic-bezier(.34,1.56,.64,1);
}
.venn-badge.show {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Anelli pulsanti attorno al badge */
.venn-badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.5);
  animation: none;
  opacity: 0;
}
.venn-badge.show .venn-badge-ring {
  animation: ringPulse 2.4s ease-out infinite;
  opacity: 1;
}
.venn-badge.show .venn-badge-ring-2 {
  animation: ringPulse 2.4s ease-out infinite 0.8s;
}
@keyframes ringPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Contenuto badge */
.venn-badge-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(37,99,235,0.6), 0 0 80px rgba(37,99,235,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.venn-badge-num { font-size: 1.55rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.03em; }
.venn-badge-txt { font-size: 0.58rem; font-weight: 600; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px; }

/* Outcome finale */
.blend-outcome {
  margin-top: 56px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.blend-outcome.visible { opacity: 1; transform: translateY(0); }
.blend-outcome p { font-size: 1.15rem; color: rgba(255,255,255,0.88); }
.blend-outcome strong { color: #ffffff; }

/* Mobile */
@media (max-width: 640px) {
  /* Layout verticale con sovrapposizione — badge posizionato via JS */
  .venn-wrap {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    gap: 0;
    overflow: visible;
    padding-bottom: 20px;
    position: relative; /* necessario per il posizionamento assoluto del badge via JS */
  }
  /* Cerchi circolari su mobile */
  .venn-circle {
    width: 380px;
    height: 380px;
    margin: 0 !important;
    overflow: visible;
    flex-shrink: 0;
  }
  /* Ordine verticale: Psicologia sopra, Organizzazione sotto */
  .venn-left  { order: 1; }
  .venn-right { order: 2; margin-top: -120px !important; } /* sovrapposizione ridotta */
  /* Il badge è posizionato via JS — nascosto dal flusso normale */
  .venn-center {
    position: absolute !important; /* JS sovrascrive top/left */
    width: 56px !important;
    height: 56px !important;
    z-index: 10;
  }
  .venn-badge {
    width: 56px !important;
    height: 56px !important;
  }
  #blendBadge {
    width: 56px !important;
    height: 56px !important;
    font-size: 0.55rem !important;
    padding: 4px !important;
  }
  #blendBadge .venn-center-label {
    font-size: 0.45rem !important;
    letter-spacing: 0.05em !important;
  }
  #blendBadge .venn-center-text {
    font-size: 0.85rem !important;
    line-height: 1.1 !important;
  }
  /* Annulla i transform orizzontali desktop */
  .venn-left,
  .venn-left.spread  { transform: none !important; }
  .venn-right,
  .venn-right.spread { transform: none !important; }
  /* Contenuto cerchi: centrato orizzontalmente, spostato verticalmente con padding */
  .venn-left .venn-circle-inner  { padding: 28px 20px 110px; justify-content: flex-start; align-items: center; text-align: center; }
  .venn-right .venn-circle-inner { padding: 110px 20px 28px; justify-content: flex-end; align-items: center; text-align: center; }
  .venn-icon  { font-size: 2.2rem !important; }
  .venn-name  { font-size: 1.1rem !important; }
  .venn-desc  { display: block !important; font-size: 0.88rem !important; line-height: 1.4 !important; max-width: 190px !important; }
  .venn-particles-canvas { display: none; }
  /* Testo risultato visibile su mobile */
  .blend-outcome {
    opacity: 1 !important;
    transform: none !important;
    margin-top: 24px;
    padding: 0 16px;
  }
  .blend-outcome p {
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* ============================================================
   4 PASSAGGI
   ============================================================ */
.passaggi { padding: var(--section-pad); }
.passaggi .section-title { text-align: center; margin-bottom: 56px; margin-top: 0; padding-top: 0; }
.passaggi-intro { margin-bottom: 56px; }

.passaggi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.passaggio-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s cubic-bezier(.25,.46,.45,.94), box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.passaggio-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(15,42,92,0.13); }
.passaggio-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.passaggio-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 50%;
  flex-shrink: 0;
  user-select: none;
}
.passaggio-icon { font-size: 1.5rem; flex-shrink: 0; }
.passaggio-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0;
  line-height: 1.3;
}
.passaggio-card > p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 14px;
}
.passaggio-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.passaggio-card li { font-size: 0.88rem; color: var(--text); }
.passaggio-arrow {
  font-size: 0.88rem;
  color: var(--blue-mid);
  font-weight: 500;
  font-style: italic;
}

/* ============================================================
   RISULTATI
   ============================================================ */
.risultati { padding: var(--section-pad); text-align: center; }
.risultati .section-title { margin-bottom: 48px; text-align: center; }
.risultati-content { margin: 0 auto; }

.risultati-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: center;
}
.risultato-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  text-align: center;
}
.risultato-item:hover { background: rgba(255,255,255,0.1); }
.risultato-emoji { font-size: 2rem; }
.risultato-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.risultati-cta { margin-top: 56px; }

/* ============================================================
   CHI SONO
   ============================================================ */
.chi-sono { padding: var(--section-pad); }
.chi-sono .section-title { margin-bottom: 14px; }

.chi-sono-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.chi-sono-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chi-sono-photo { width: 100%; object-fit: cover; }
.chi-sono-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.chi-sono-bio {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}
.chi-sono-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.chi-sono-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}
.chi-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
}
.chi-stat {
  text-align: center;
  padding: 20px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.chi-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-mid);
  line-height: 1;
  margin-bottom: 4px;
}
.chi-stat span {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.3;
}
.chi-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
.chi-list li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  list-style: none;
  padding: 6px 0;
  display: block;
  width: 100%;
}
.chi-list li strong {
  display: inline;
  font-weight: 700;
  color: var(--blue-main);
}

/* Chi-cards griglia premium */
.chi-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}
.chi-card {
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(26,58,107,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,58,107,0.12);
}
.chi-card-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-main);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.chi-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 4px;
}
.chi-card-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.chi-card-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .chi-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   LIBRI
   ============================================================ */
.libri { padding: var(--section-pad); }
.libri .section-title { text-align: center; margin-bottom: 56px; }

.libri-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.libro-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.libro-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.libri-grid-single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.libro-card-featured { gap: 40px; align-items: flex-start; }
.libro-img {
  width: 240px;
  border-radius: 0;
  box-shadow: none;
  display: block;
  flex-shrink: 0;
  background: transparent;
}

.libro-cover { flex-shrink: 0; }
.libro-mockup {
  width: 100px;
  height: 140px;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.25);
}
.libro-spine {
  width: 16px;
  background: linear-gradient(180deg, #0f2a5c, #2563eb);
  flex-shrink: 0;
}
.libro-front {
  flex: 1;
  background: linear-gradient(135deg, #1a3a6b, #2563eb);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.libro-mockup-2 .libro-front {
  background: linear-gradient(135deg, #0f2a5c, #1a3a6b);
}
.libro-autore {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.libro-front h3 {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.libro-sub {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.libro-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.libro-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.libro-content ul { display: flex; flex-direction: column; gap: 6px; }
.libro-content li { font-size: 0.88rem; color: var(--text); }

/* ============================================================
   TESTIMONIANZE
   ============================================================ */
.testimonianze { padding: var(--section-pad); }
.testimonianze .section-title { text-align: center; margin-bottom: 48px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Card premium */
.testi-card {
  background: var(--white);
  border: 1px solid rgba(15,42,92,0.07);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 2px 16px rgba(15,42,92,0.07), 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.25,.46,.45,.94), box-shadow 0.3s ease;
  height: 100%;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(15,42,92,0.14), 0 4px 12px rgba(0,0,0,0.06);
}

/* Foto grande in cima */
.testi-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e8f0fe 0%, #dbeafe 100%);
}
.testi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.testi-card:hover .testi-photo img { transform: scale(1.04); }

/* Corpo card */
.testi-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* Header card: avatar tondo grande + nome/ruolo */
.testi-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}
.testi-avatar-top {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 3px solid #e8f0fe;
  box-shadow: 0 4px 14px rgba(15,42,92,0.15);
}
.testi-header-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.testi-header-info span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Stelle + virgolette */
.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testi-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testi-quote {
  font-size: 3rem;
  line-height: 1;
  color: #dbeafe;
  font-family: Georgia, serif;
  margin-top: -8px;
}

/* Testo recensione */
.testi-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  margin: 0;
}

/* Riquadro argentato testo recensione */
.testi-insight {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
  padding: 16px 18px;
  border-left: 3px solid #94a3b8;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
  flex: 1;
}

/* Autore in basso */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,42,92,0.07);
}
.testi-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15,42,92,0.15);
  border: 2px solid #e8f0fe;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================================
   CTA PRINCIPALE
   ============================================================ */
.cta-main {
  padding: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Anelli decorativi di sfondo */
.cta-main::before,
.cta-main::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-main::before {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  animation: ctaPulse 6s ease-in-out infinite;
}
.cta-main::after {
  width: 500px; height: 500px;
  bottom: -180px; right: -180px;
  background: radial-gradient(circle, rgba(34,197,94,0.10) 0%, transparent 70%);
  animation: ctaPulse 8s ease-in-out infinite reverse;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.15); opacity: 1; }
}

.cta-main .section-title { margin-bottom: 14px; position: relative; z-index: 1; }
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 48px;
  text-align: left;
  position: relative;
  z-index: 1;
  align-items: stretch;
}
.cta-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  /* Reveal animato allo scroll */
  opacity: 0;
  transform: translateY(28px);
  height: 100%;
}
.cta-feature.revealed {
  opacity: 1;
  transform: translateY(0);
}
.cta-feature:hover {
  background: rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(99,165,255,0.25);
  transform: translateY(-4px);
}
.cta-feat-icon { font-size: 1.6rem; flex-shrink: 0; }
.cta-feature strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-feature p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.cta-arrow {
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.9) !important;
  font-style: italic;
  margin-top: 4px;
}
.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* CTA su sfondo bianco */
.section-white .cta-sub,
.cta-sub-light {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.section-white .cta-feature {
  background: #f8fafc;
  border: 1px solid rgba(37,99,235,0.12);
}
.section-white .cta-feature:hover {
  background: #eff6ff;
  box-shadow: 0 8px 32px rgba(37,99,235,0.12), 0 0 0 1px rgba(37,99,235,0.2);
  transform: translateY(-4px);
}
.section-white .cta-feature strong {
  color: var(--blue-dark);
}
.section-white .cta-feature p,
.section-white .cta-arrow {
  color: var(--text) !important;
}
/* Forza testi scuri anche su hover in sezione bianca */
.section-white .cta-feature:hover strong,
.section-white .cta-feature:hover p,
.section-white .cta-feature:hover .cta-arrow {
  color: var(--text) !important;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-pad); }
.faq .section-title { text-align: center; margin-bottom: 48px; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 0;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.15s;
  font-family: var(--font-sans);
}
.faq-q:hover { background: var(--blue-pale); }
.faq-q span { flex-shrink: 0; font-size: 0.75rem; color: var(--blue-mid); transition: transform 0.3s; }
.faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.04em;
  margin-right: 14px;
  flex-shrink: 0;
}
.faq-q.open span { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 16px 28px 28px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
}
.faq-a.open { display: block; }

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta { padding: 88px 0; text-align: center; }
.footer-cta .section-title { margin-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #f0f2f5;
  color: #1e293b;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  align-items: start;
}
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
}
.footer-social a:hover { transform: translateY(-3px); opacity: 0.9; }
.footer-social svg { width: 18px; height: 18px; }
.social-fb  { background: #1877f2; color: #fff; }
.social-yt  { background: #ff0000; color: #fff; }
.social-ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }

.footer-nav h4, .footer-contact h4, .footer-legal h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f2a5c;
  margin-bottom: 16px;
}
.footer-nav ul, .footer-contact ul, .footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav li, .footer-contact li, .footer-legal li {
  font-size: 0.85rem;
  color: #334155;
}
.footer-nav a, .footer-contact a, .footer-legal a {
  color: #334155;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-contact a:hover, .footer-legal a:hover {
  color: #0f2a5c;
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  color: #64748b;
  letter-spacing: 0.01em;
}



/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-mid);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-image { max-width: 400px; margin: 0 auto; }
  .hero-bullets li { text-align: left; }
  .hero-badge-top { right: 0; }
  .hero-badge-bottom { left: 0; }
  .problema-layout { grid-template-columns: 1fr; }
  .problema-photo { max-width: 480px; margin: 0 auto; }
  .chi-sono-grid { grid-template-columns: 1fr; }
  .chi-sono-photo-col { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px 0; }
  .hide-mobile { display: none !important; }
  .proof-bar { display: none !important; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  /* HERO MOBILE: foto fullscreen con overlay testo in basso */
  .hero {
    background: none;
    min-height: auto;
    padding: 0;
  }
  .hero::after { display: none; }
  /* Nascondi hero desktop su mobile */
  .hero-desktop-only { display: none !important; }
  /* Mostra hero mobile fullscreen */
  .hero-mobile-fullscreen {
    display: block !important;
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: clip; /* clip non blocca lo scroll come hidden su iOS */
    background: #0f2a5c;
  }
  .hero-mobile-fullscreen-img {
    position: absolute;
    top: 72px; /* spazio sotto la navbar fissa */
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 72px);
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .hero-mobile-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(15,42,92,0.35) 0%,
        rgba(15,42,92,0.45) 40%,
        rgba(10,20,50,0.82) 65%,
        rgba(10,20,50,0.97) 100%
      );
  }
  .hero-mobile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 24px 48px;
    text-align: left;
    z-index: 2;
  }
  .hero-mobile-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 12px;
  }
  .hero-mobile-title em {
    font-style: italic;
    color: #93c5fd;
  }
  .hero-mobile-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .hero-mobile-sub strong { color: #ffffff; }
  .hero-mobile-content .btn-hero {
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
    padding: 14px 16px;
    white-space: normal;
    line-height: 1.4;
    word-break: break-word;
  }
  .btn-lg, .btn-xl {
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
    padding: 14px 16px;
    white-space: normal;
    line-height: 1.4;
    word-break: break-word;
  }
  .risultati-cta .btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 14px 12px;
    white-space: normal;
    line-height: 1.4;
    text-align: center;
    word-break: break-word;
  }

  .proof-grid { gap: 0; flex-wrap: wrap; justify-content: center; }
  .proof-item { padding: 12px 10px; flex: 1 1 45%; min-width: 120px; text-align: center; }
  .proof-divider { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .passaggi-grid { grid-template-columns: 1fr; }
  .risultati-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-features { grid-template-columns: 1fr; }
  .libri-grid { grid-template-columns: 1fr; }
  .libri-grid-single { max-width: 100%; }
  .libro-card-featured { flex-direction: column; align-items: center; }
  .libro-img { width: 180px; margin: 0 auto 20px; background: transparent; box-shadow: none; border-radius: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .back-top { bottom: 20px; }
  .chi-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .chi-stat { padding: 16px 12px; }
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .big-idea-box { padding: 20px 16px; }
  .falsi-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { padding: 0; }
  .testi-text { font-size: 0.92rem; line-height: 1.6; }
  /* Immagini AI su mobile */
  .problema-layout { grid-template-columns: 1fr; gap: 32px; }
  .problema-img { border-radius: var(--radius-lg); }
  .passaggi-hero-img { border-radius: var(--radius-lg); aspect-ratio: 16/9; }
  .risultati-layout { grid-template-columns: 1fr; gap: 32px; }
  .risultati-img { aspect-ratio: 16/9; border-radius: var(--radius-lg); }
}

@media (max-width: 480px) {
  :root { --section-pad: 60px 0; }
  .section-sub { margin-bottom: 40px; }
  .passaggi .section-title { margin-bottom: 40px; }
  .falsi .section-sub { margin: 0 auto 48px; }
  .falsi-grid { grid-template-columns: 1fr 1fr; }
  .risultati-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .proof-item { flex: 1 1 45%; min-width: 110px; }
  .chi-stats { grid-template-columns: 1fr 1fr; }
  .nav-logo img { height: 36px; }
  .passaggio-card { padding: 20px 16px; }
  .cta-feature { padding: 14px 16px; }
  .falsi-card { padding: 16px 12px; }
  .falsi-card .falsi-icon { font-size: 1.6rem; }
  .falsi-card p { font-size: 0.82rem; }
  .libro-card-featured { padding: 20px 16px; }
  .libro-img { width: 160px; background: transparent; box-shadow: none; border-radius: 0; }
  .chi-sono-grid { gap: 24px; }
}

/* ============================================================
   GIORNATA TIMELINE
   ============================================================ */
.giornata-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}

.giornata-fase {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(26,58,107,0.08);
  border: 1px solid rgba(26,58,107,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.giornata-fase:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,58,107,0.14);
}

.fase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 14px;
  background: linear-gradient(135deg, var(--blue-main) 0%, var(--blue-dark) 100%);
}

.fase-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.fase-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.fase-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fase-intro {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.fase-lista {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fase-lista span {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
  padding: 4px 0;
  border-bottom: 1px solid rgba(26,58,107,0.06);
}

.fase-lista span:last-child {
  border-bottom: none;
}

.fase-ruoli {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fase-ruolo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,58,107,0.04);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-main);
}

.fase-ruolo span {
  font-weight: 600;
}

.fase-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0;
}

.chat-bubble {
  background: #e8f5e9;
  border-radius: 12px 12px 12px 2px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: #2e7d32;
  font-style: italic;
  border-left: 3px solid #4caf50;
}

.fase-quote {
  margin-top: auto;
  padding: 12px 14px;
  background: rgba(26,58,107,0.05);
  border-left: 3px solid var(--blue-main);
  border-radius: 0 10px 10px 0;
  font-size: 0.88rem;
  color: var(--blue-main);
  font-weight: 500;
  line-height: 1.6;
}

.fase-quote-final {
  background: rgba(220,38,38,0.06);
  border-left-color: #dc2626;
  color: #991b1b;
}

/* Fase WhatsApp: sfondo leggermente verde */
.fase-whatsapp .fase-header {
  background: linear-gradient(135deg, #1a6b3a 0%, #0d3d20 100%);
}

/* Fase Sera: sfondo blu notte */
.fase-sera .fase-header {
  background: linear-gradient(135deg, #1a1a4b 0%, #0a0a2a 100%);
}

/* Ultima fase occupa 2 colonne */
.giornata-fase:last-child {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .giornata-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .giornata-fase:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .giornata-timeline {
    grid-template-columns: 1fr;
  }
  .giornata-fase:last-child {
    grid-column: span 1;
  }
}

/* ============================================================
   GIORNATA MOMENTI (stile riga con icona)
   ============================================================ */
.giornata-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto 0;
}

.giornata-momento {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  border-left: 3px solid var(--blue-main);
  background: #fff;
  margin-bottom: 12px;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 2px 12px rgba(26,58,107,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.giornata-momento:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(26,58,107,0.12);
}

.giornata-momento-last {
  border-left-color: #dc2626;
  background: #fff8f8;
}
.momento-alba {
  border-left-color: #f97316;
  background: #fff7ed;
}
.momento-alba .momento-testo strong {
  color: #c2410c;
}
.momento-giorno {
  border-left-color: #d97706;
  background: #fffbeb;
}
.momento-giorno .momento-testo strong {
  color: #92400e;
}

.momento-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.momento-testo {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.momento-testo strong {
  color: var(--blue-main);
  font-weight: 700;
}

.giornata-momento-last .momento-testo strong {
  color: #dc2626;
}

.momento-testo em {
  font-style: italic;
  color: #991b1b;
  font-weight: 600;
}

@media (max-width: 600px) {
  .giornata-momento {
    padding: 16px 18px;
    gap: 14px;
  }
  .momento-icon { font-size: 1.5rem; }
  .momento-testo { font-size: 0.97rem; }
}

/* =============================================
   EFFETTI PREMIUM SUI TITOLI (Apple-style)
   ============================================= */

/* Gradient animato sull'em del titolo hero */
.title-gradient {
  background: linear-gradient(90deg, #60a5fa 0%, #a5f3fc 40%, #ffffff 70%, #93c5fd 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradientMove 4s linear infinite;
  font-style: italic;
}

@keyframes titleGradientMove {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Shimmer sui titoli su sfondo scuro */
.title-shimmer {
  position: relative;
  display: inline-block;
}
.title-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: titleShimmerSlide 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes titleShimmerSlide {
  0%   { left: -100%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}

/* Glow pulsante per titoli CTA */
.title-glow {
  text-shadow: 0 0 0px rgba(147,197,253,0);
  animation: titleGlowPulse 3s ease-in-out infinite;
}
@keyframes titleGlowPulse {
  0%, 100% { text-shadow: 0 0 0px rgba(147,197,253,0); }
  50%       { text-shadow: 0 0 28px rgba(147,197,253,0.55), 0 0 60px rgba(96,165,250,0.2); }
}

/* Underline animato che cresce sotto il titolo */
.title-underline-anim {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.title-underline-anim::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 2px;
  transition: width 0.9s cubic-bezier(.25,.46,.45,.94);
}
.title-underline-anim.in-view::after {
  width: 80px;
}

/* Reveal slide-up per titolo hero */
.title-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: titleRevealIn 0.9s cubic-bezier(.25,.46,.45,.94) 0.2s forwards;
}
@keyframes titleRevealIn {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   EFFETTI PREMIUM SUI TESTI (Apple-style)
   ============================================= */

/* Frecce passaggi — highlight blu con transizione */
.passaggio-arrow {
  position: relative;
  padding-left: 2px;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.passaggio-card:hover .passaggio-arrow {
  color: #1d4ed8;
  letter-spacing: 0.01em;
}

/* Frecce CTA — glow sottile al hover del parent */
.cta-feature:hover .cta-arrow {
  color: #ffffff !important;
  text-shadow: 0 0 12px rgba(147,197,253,0.5);
  transition: text-shadow 0.4s ease, color 0.3s ease;
}

/* Section-sub su sfondo scuro — leggero fade-in dal basso */
.section-sub.light {
  animation: subFadeUp 0.8s cubic-bezier(.25,.46,.45,.94) 0.5s both;
}
@keyframes subFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Risultato-item — testo con underline colorato al hover */
.risultato-item {
  transition: transform 0.25s ease;
}
.risultato-item:hover {
  transform: translateX(4px);
}
.risultato-item p {
  position: relative;
  display: inline;
}

/* Momento-label (Appena ti svegli, Arrivi in azienda) — shimmer al hover */
.momento-label {
  position: relative;
  overflow: hidden;
}
.momento-label::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.giornata-momento:hover .momento-label::after {
  left: 130%;
}

/* Chi-card numero — glow al hover */
.chi-card-num {
  transition: text-shadow 0.4s ease, transform 0.3s ease;
}
.chi-card:hover .chi-card-num {
  text-shadow: 0 0 20px rgba(37,99,235,0.4);
  transform: scale(1.05);
}

/* Testi testimonianze — leggero lift */
.testi-card {
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), box-shadow 0.35s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15,42,92,0.14);
}

/* FAQ item — bordo sinistro animato all'apertura */
.faq-item.open {
  border-left: 3px solid #2563eb;
  padding-left: 12px;
  transition: border-left 0.3s ease, padding-left 0.3s ease;
}

/* ============================================================
   TIMELINE 4 PASSAGGI
   ============================================================ */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.timeline-item {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}
.timeline-item-last { margin-bottom: 0; }
.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  flex-shrink: 0;
}
.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.15), 0 4px 16px rgba(34,197,94,0.3);
  flex-shrink: 0;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.12);
  box-shadow: 0 0 0 10px rgba(34,197,94,0.2), 0 6px 24px rgba(34,197,94,0.45);
}
.timeline-dot-last {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 0 0 6px rgba(16,185,129,0.12), 0 4px 16px rgba(16,185,129,0.3);
}
.timeline-item:hover .timeline-dot-last {
  box-shadow: 0 0 0 10px rgba(16,185,129,0.15), 0 6px 24px rgba(16,185,129,0.4);
}
.timeline-num {
  color: #e2e8f0;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-serif);
}
.timeline-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(37,99,235,0.5), rgba(37,99,235,0.15));
  margin: 4px 0;
  position: relative;
}
.timeline-line::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: var(--primary);
  animation: timelineGrow 1.2s ease forwards;
  animation-play-state: paused;
}
.timeline-item.in-view .timeline-line::after {
  animation-play-state: running;
}
@keyframes timelineGrow {
  to { height: 100%; }
}
.timeline-card {
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 0 0 28px 20px;
  box-shadow: 0 2px 16px rgba(15,42,92,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.timeline-card::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-left: 1px solid rgba(37,99,235,0.1);
  border-bottom: 1px solid rgba(37,99,235,0.1);
  transform: rotate(45deg);
}
.timeline-item:hover .timeline-card {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(15,42,92,0.12);
  border-color: rgba(37,99,235,0.25);
}
.timeline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.timeline-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.timeline-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}
.timeline-card > p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.timeline-result {
  font-size: 0.93rem;
  color: var(--primary);
  font-weight: 500;
  padding: 0;
  background: none;
  border-radius: 0;
  border-left: none;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .timeline-left { width: 44px; }
  .timeline-dot { width: 40px; height: 40px; }
  .timeline-num { font-size: 1rem; }
  .timeline-card { padding: 20px 20px; margin-left: 14px; margin-bottom: 20px; }
  .timeline-card::before { left: -7px; width: 12px; height: 12px; }
  .timeline-header h3 { font-size: 1.05rem; }
}

/* ─── TIMELINE DOT LIT (scroll activation) ─── */
.timeline-dot {
  opacity: 0.35;
  transform: scale(0.85);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.34,1.56,.64,1), background 0.4s ease, box-shadow 0.4s ease;
}
.timeline-dot.dot-lit {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 0 8px rgba(34,197,94,0.2), 0 0 24px rgba(34,197,94,0.5);
}
.timeline-dot-last.dot-lit {
  box-shadow: 0 0 0 8px rgba(16,185,129,0.18), 0 0 24px rgba(16,185,129,0.45);
}
.timeline-line {
  opacity: 0.2;
  transition: opacity 0.6s ease 0.2s;
}
.timeline-line.line-lit {
  opacity: 1;
}
.timeline-card {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(.25,.46,.45,.94), box-shadow 0.3s ease, border-color 0.3s ease;
}
.tl-active .timeline-card {
  opacity: 1;
  transform: translateX(0);
}
.tl-active:hover .timeline-card {
  transform: translateX(6px);
}

/* ─── TIMELINE INSIGHT BOX ─── */
.timeline-insight {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.65;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 0 12px 0;
  border-left: 3px solid #94a3b8;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
  font-style: italic;
}
/* Tutti i pallini verdi uguali */
.timeline-dot-last {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.15), 0 4px 16px rgba(34,197,94,0.3) !important;
}
.timeline-dot-last.dot-lit {
  box-shadow: 0 0 0 8px rgba(34,197,94,0.2), 0 0 24px rgba(34,197,94,0.5) !important;
}
