/* ============================================================
   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:  128px 0;
  --section-pad-sm: 96px 0;
  --title-to-content: 64px;
  --card-gap: 28px;
  --card-pad: 40px 36px;
  --container:    1100px;
}

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

html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; }

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;
}

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-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(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.18rem;
  color: var(--text-light);
  margin-bottom: 56px;
  max-width: 600px;
  line-height: 1.5;
  letter-spacing: -0.012em;
  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, #ffffff 0%, #f0f4ff 100%);
  background-size: 200% 200%;
  color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.9) 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(37,99,235,0.08), 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(0,0,0,0.22);
  color: #1d4ed8;
}
.btn-white:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.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; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  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;
}
.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: 24px 0;
  box-shadow: var(--shadow);
}
.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: 2px;
  padding: 12px 20px;
  text-align: center;
  min-width: 0;
  flex: 1 1 auto;
}
.proof-item strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-main);
  line-height: 1;
}
.proof-plus {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  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, 440px);
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.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: grid;
  grid-template-columns: 1fr minmax(0, 400px);
  gap: 64px;
  align-items: center;
}
.risultati-content { min-width: 0; }
.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.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  max-width: 560px;
}
.big-idea-truth {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.big-idea-arrow {
  font-size: 1rem;
  color: #93c5fd;
  font-weight: 500;
}

/* ============================================================
   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(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.falso-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s cubic-bezier(.25,.46,.45,.94), box-shadow 0.25s;
}
.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: 32px;
  max-width: 840px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: left;
  transition: background 0.2s;
}
.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;
}

/* ============================================================
   BLEND ANIMATION — Psicologia + Management (Canvas)
   ============================================================ */

.blend-arena {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 56px auto 0;
  max-width: 960px;
}

.blend-label {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.blend-label-left  { text-align: right; transform: translateX(-20px); }
.blend-label-right { text-align: left;  transform: translateX(20px); }
.blend-arena.visible .blend-label {
  opacity: 1;
  transform: translateX(0);
}
.blend-icon  { font-size: 2rem; }
.blend-name  { font-size: 1rem; font-weight: 700; color: #ffffff; }
.blend-sub   { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.blend-canvas-wrap {
  position: relative;
  flex-shrink: 0;
}
#blendCanvas {
  display: block;
  border-radius: 20px;
  max-width: 100%;
}

.blend-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  width: 96px; height: 96px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(37,99,235,0.5);
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1), box-shadow 0.5s;
  pointer-events: none;
}
.blend-badge.show {
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 0 14px rgba(37,99,235,0.18), 0 0 0 28px rgba(37,99,235,0.07);
  animation: badgePulse 2.2s ease-in-out infinite 0.5s;
}
.blend-badge-num { font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1; }
.blend-badge-txt { font-size: 0.6rem; font-weight: 600; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 14px rgba(37,99,235,0.18), 0 0 0 28px rgba(37,99,235,0.07); }
  50%      { box-shadow: 0 0 0 20px rgba(37,99,235,0.22), 0 0 0 40px rgba(37,99,235,0.05); }
}

.blend-outcome {
  margin-top: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s 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; }

@media (max-width: 700px) {
  .blend-arena { flex-direction: column; gap: 16px; }
  .blend-label { max-width: 100%; text-align: center !important; transform: none !important; }
  .blend-label-left, .blend-label-right { align-items: center; }
  #blendCanvas { width: 300px; height: 200px; }
  .blend-badge { width: 72px; height: 72px; }
  .blend-badge-num { font-size: 1.1rem; }
}

/* ============================================================
   FUSION ANIMATION — Psicologia + Management
   ============================================================ */

/* Stage principale */
.fusion-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 64px auto 0;
  max-width: 900px;
  min-height: 220px;
  position: relative;
}

/* Pillole sinistra/destra */
.fusion-pill {
  flex: 1;
  max-width: 280px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.8s cubic-bezier(.25,.46,.45,.94),
              background 0.8s, border-color 0.8s, opacity 0.8s;
  position: relative;
  z-index: 2;
}
.fusion-pill.pill-left { transform: translateX(0); }
.fusion-pill.pill-right { transform: translateX(0); }

/* Stato animato: le pillole si avvicinano */
.fusion-stage.animating .pill-left { transform: translateX(40px); opacity: 0.7; }
.fusion-stage.animating .pill-right { transform: translateX(-40px); opacity: 0.7; }
.fusion-stage.fused .pill-left { transform: translateX(60px); opacity: 0; }
.fusion-stage.fused .pill-right { transform: translateX(-60px); opacity: 0; }

.pill-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.pill-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.pill-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* Centro: + che si trasforma in 360 */
.fusion-center {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fusion-plus {
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: opacity 0.4s, transform 0.4s;
  position: absolute;
}
.fusion-result {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.6s cubic-bezier(.34,1.56,.64,1), transform 0.6s cubic-bezier(.34,1.56,.64,1);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  box-shadow: 0 0 0 0 rgba(37,99,235,0.5);
}
.fusion-stage.fused .fusion-plus { opacity: 0; transform: scale(0); }
.fusion-stage.fused .fusion-result {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 0 12px rgba(37,99,235,0.15), 0 0 0 24px rgba(37,99,235,0.07);
  animation: fusionPulse 2s ease-in-out infinite 0.6s;
}
.fusion-result-icon {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.fusion-result-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

@keyframes fusionPulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(37,99,235,0.15), 0 0 0 24px rgba(37,99,235,0.07); }
  50%       { box-shadow: 0 0 0 18px rgba(37,99,235,0.2), 0 0 0 36px rgba(37,99,235,0.05); }
}

/* Outcome finale */
.fusion-outcome {
  margin-top: 48px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fusion-outcome.visible {
  opacity: 1;
  transform: translateY(0);
}
.fusion-outcome-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(255,255,255,0));
  margin: 0 auto 16px;
}
.fusion-outcome-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}

/* Mobile */
@media (max-width: 600px) {
  .fusion-stage { flex-direction: column; gap: 16px; min-height: auto; }
  .fusion-pill { max-width: 100%; }
  .fusion-stage.animating .pill-left { transform: translateY(20px); }
  .fusion-stage.animating .pill-right { transform: translateY(-20px); }
  .fusion-stage.fused .pill-left { transform: translateY(30px); }
  .fusion-stage.fused .pill-right { transform: translateY(-30px); }
  .fusion-center { margin: 8px auto; }
}
}

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

.passaggi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.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;
}
.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; }

.risultati-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.risultato-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.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: 64px; }

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

.chi-sono-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  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-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: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.chi-stat { text-align: center; }
.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: 16px;
  margin-top: 8px;
}
.chi-card {
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 2px 12px rgba(26,58,107,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.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: 32px;
}
.libro-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  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: 200px;
  border-radius: 8px;
  box-shadow: 8px 8px 24px rgba(0,0,0,0.25);
  display: block;
  flex-shrink: 0;
}

.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: 56px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testi-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}
.testi-author img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(15,42,92,0.15);
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================================
   CTA PRINCIPALE
   ============================================================ */
.cta-main { padding: var(--section-pad); text-align: center; }
.cta-main .section-title { margin-bottom: 14px; }
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 48px;
}
.cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: left;
}
.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.12);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.cta-feat-icon { font-size: 1.5rem; flex-shrink: 0; }
.cta-feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.cta-feature p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.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;
}

/* ============================================================
   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: 10px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.95rem;
  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-q.open span { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  border-top: 1px solid var(--gray-100);
}
.faq-a.open { display: block; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #e8eaed;
  color: #1e293b;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.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.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f2a5c;
  margin-bottom: 14px;
}
.footer-nav ul, .footer-contact ul, .footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.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: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #475569;
}



/* ============================================================
   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: 88px 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: hidden;
    background: #0f2a5c;
  }
  .hero-mobile-fullscreen-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 8%;
    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: 1rem;
    padding: 16px 24px;
  }
  .btn-lg, .btn-xl { width: 100%; text-align: center; }

  .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: 160px; margin: 0 auto 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .back-top { bottom: 20px; }
  .chi-stats { grid-template-columns: 1fr 1fr; gap: 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: 20px 16px; }
  .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: 64px 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; }
  .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: 140px; }
  .chi-sono-grid { gap: 24px; }
}

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

.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: 48px 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;
}
