/**
 * MAXIMM — Main CSS (caricato async)
 * Tutto quello che NON è above-the-fold critical.
 *
 * Indice sezioni:
 *   1. AMBIENT EFFECTS — has-ambient-bg, has-cursor-light
 *   2. ANIMAZIONI REVEAL — [data-animate]
 *   3. HEADER — nav, menu, drawer, hamburger, submenu (MAXIMM)
 *   4. HERO — variants home/inner/offer + background fintech + aurora
 *   5. SECTION COMMONS — section, eyebrow, intro, cta
 *   6. TYPOGRAPHY EXTRAS — seal, text-emphasis, lists, blockquote
 *   7. CONTENT BLOCKS — data section, services, tier (3 offerte), comparison-table
 *   8. SPECIFIC LAYOUTS — split-section, for-you-grid, manifesto, stats, contacts, pre-footer
 *   9. LEADMAGNET + PORTFOLIO + PARTNERS + TESTIMONIALS
 *  10. LEAD FORM — fields, radios, validation, submit, success
 *  11. FAQ — details/summary based
 *  12. DUAL CTA + BACK-TO-TOP + ACCESSIBILITY HELPERS
 *  13. FOOTER MAXIMM — grid, headings, social, newsletter
 *  14. SIGNATURE — star bumper, easter-egg
 *  15. BLOG — filters, post-grid, post-card, sidebar
 *  16. SINGLE POST — hero, layout, toc, body typography, share
 *  17. PROTOCOLLO ★ TIMELINE — vera process flow SaaS
 *  18. SAAS PREMIUM EFFECTS — conic border, dot pattern, spotlight, bento
 *  19. SYSTEM ORBIT visual
 *  20. PAGE TRANSITION cinematica
 *  21. MAGNETIC CTA + 3D TILT + GLASS
 *  22. SINGLE-POST ARTICLE BODY EXTRAS — table, callout, reading-progress
 */

/* =============================================================================
   1. AMBIENT BACKGROUND (Metodo Lampo3 — sfumatura iniziale + cursor light)
   ============================================================================= */
.has-ambient-bg { position: relative; isolation: isolate; }
.has-ambient-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, var(--accent-glow), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, var(--accent-soft), transparent 70%);
  pointer-events: none;
}

/* Cursor-aware lighting (Metodo Lampo3 — animazione bonus) */
.has-cursor-light {
  position: relative;
  isolation: isolate;
  --cursor-x: 50%;
  --cursor-y: 50%;
}
.has-cursor-light::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle 320px at var(--cursor-x) var(--cursor-y), var(--accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity 400ms ease;
}
.has-cursor-light:hover::after { opacity: 1; }

/* =============================================================================
   2. ANIMAZIONI REVEAL — fade-up via [data-animate]
   ============================================================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out-quart), transform 600ms var(--ease-out-quart);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 100ms; }
[data-animate-delay="2"] { transition-delay: 200ms; }
[data-animate-delay="3"] { transition-delay: 300ms; }
[data-animate-delay="4"] { transition-delay: 400ms; }

/* =============================================================================
   3. HEADER MAXIMM — SaaS morph (full → pill on scroll)
   ============================================================================= */

/* ── BRAND / LOGO — crossfade desktop ↔ monogram allo scroll ───────── */
.site-header__brand {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 36px;
  flex-shrink: 0;
}
.site-header__logo--desktop,
.site-header__logo--mobile {
  display: block;
  transition:
    opacity 360ms var(--ease-out-quart),
    transform 360ms var(--ease-out-quart),
    height 360ms var(--ease-out-quart);
  will-change: transform, opacity;
}
.site-header__logo--desktop { height: 32px; width: auto; }
.site-header__logo--mobile {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  opacity: 0;
  width: 32px;
  height: 32px;
}
.site-header.is-floating .site-header__logo--desktop {
  opacity: 0;
  transform: scale(0.55) translateX(-14px);
}
.site-header.is-floating .site-header__logo--mobile {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ── NAV (desktop) ─────────────────────────────────────────────────── */
.site-header__nav {
  display: none;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .site-header__nav { display: flex; }
}
.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  align-items: center;
}
.site-header__menu .menu-item-has-children { position: relative; }
.site-header__menu .menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── MENU ITEM — link/trigger pillola hover ───────────────────────── */
.menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 200ms, background-color 240ms, padding 320ms var(--ease-out-quart), font-size 320ms var(--ease-out-quart);
  cursor: pointer;
}
.menu-item:hover {
  color: var(--silver-100);
  background-color: rgba(217, 229, 229, 0.06);
}
.menu-item.is-active {
  color: var(--silver-100);
  background-color: rgba(40, 190, 188, 0.10);
}
.menu-item.is-active::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-bright, #4FE5E2);
  box-shadow: 0 0 8px rgba(79, 229, 226, 0.7);
  transform: translateY(-50%);
  animation: nav-active-pulse 2.4s ease-in-out infinite;
}
.menu-item.is-active { padding-left: 22px; }
@keyframes nav-active-pulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50%      { opacity: 0.5; transform: translateY(-50%) scale(0.85); }
}
.menu-arrow {
  font-size: 0.7em;
  opacity: 0.6;
  transition: transform 240ms var(--ease-out-quart);
}
.menu-item-has-children:hover .menu-arrow,
.menu-trigger[aria-expanded="true"] .menu-arrow { transform: rotate(180deg); }

/* SCROLL → menu items più stretti */
.site-header.is-floating .menu-item {
  padding: 6px 9px;
  font-size: 12.5px;
  letter-spacing: 0;
}
.site-header.is-floating .menu-item.is-active { padding-left: 15px; }
.site-header.is-floating .menu-item.is-active::before {
  left: 6px;
  width: 4px;
  height: 4px;
}

/* ── SUBMENU (Offerte) — glass dropdown ───────────────────────────── */
.site-header__menu .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: rgba(0, 19, 24, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(40, 190, 188, 0.22);
  border-radius: 18px;
  padding: 10px;
  margin-top: 14px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(40, 190, 188, 0.08);
  transition: opacity 240ms var(--ease-glow), transform 240ms var(--ease-glow), visibility 240ms;
}
.site-header__menu .submenu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.site-header__menu .menu-item-has-children:hover .submenu,
.site-header__menu .menu-item-has-children:focus-within .submenu,
.site-header__menu .menu-trigger[aria-expanded="true"] + .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.site-header__menu .submenu li { display: block; }
.site-header__menu .submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text-body);
  font-size: 14.5px;
  transition: background-color 180ms, color 180ms;
}
.site-header__menu .submenu a:hover {
  background: rgba(40, 190, 188, 0.12);
  color: var(--silver-100);
}
.site-header__menu .submenu .seal {
  color: var(--accent);
  font-size: 0.9em;
}

/* ── ACTIONS — WhatsApp + CTA ──────────────────────────────────────── */
.site-header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.site-header__whatsapp {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  transition: color 200ms, border-color 200ms, filter 200ms, width 320ms var(--ease-out-quart), height 320ms var(--ease-out-quart);
}
.site-header__whatsapp:hover {
  color: var(--accent);
  border-color: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent-glow-shadow));
}
.site-header.is-floating .site-header__whatsapp {
  width: 34px;
  height: 34px;
}
.site-header.is-floating .site-header__whatsapp svg {
  width: 16px;
  height: 16px;
}

.site-header__cta {
  display: none;
  padding: 12px 22px;
  font-size: 14px;
  line-height: 1;
  border-radius: 999px;
  transition: padding 320ms var(--ease-out-quart), font-size 320ms var(--ease-out-quart);
}
@media (min-width: 1024px) { .site-header__cta { display: inline-flex; align-items: center; } }
.site-header.is-floating .site-header__cta {
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: 0;
}

/* ── HAMBURGER (mobile) ────────────────────────────────────────────── */
.site-header__hamburger {
  display: none;
  place-items: center;
  width: 40px; height: 40px;
  background: rgba(217, 229, 229, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: width 320ms, height 320ms;
}
.site-header__hamburger span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--silver-100);
  margin: 3.5px auto;
  border-radius: 1px;
  transition: transform 280ms var(--ease-glow), opacity 240ms;
}
.site-header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.site-header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1023px) {
  .site-header__hamburger { display: grid; }
  /* Su mobile il logo desktop è già nascosto, il monogram è sempre visibile */
  .site-header__brand { height: 32px; }
  .site-header__logo--desktop { display: none; }
  .site-header__logo--mobile {
    position: static;
    opacity: 1;
    transform: none;
    width: 32px;
    height: 32px;
  }
}

/* ─── MOBILE DRAWER ──────────────────────────────────────────── */
.site-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg-body);
  z-index: 99;
  padding: 96px var(--padding-x) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms var(--ease-glow), visibility 320ms;
  isolation: isolate;
  overflow-y: auto;
}
.site-drawer[data-open="true"] {
  opacity: 1;
  visibility: visible;
}
.site-drawer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-drawer__nav > ul > li > a,
.site-drawer__nav .drawer-submenu-trigger {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--silver-100);
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
  width: 100%;
}
.site-drawer .drawer-submenu {
  margin-top: 8px;
  padding-left: 16px;
  display: none;
}
.site-drawer .drawer-submenu-trigger[aria-expanded="true"] + .drawer-submenu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-drawer .drawer-submenu a {
  padding: 10px 0;
  font-size: 1.05rem;
  color: var(--text-body);
  display: flex;
  gap: 10px;
  align-items: center;
}
.site-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.site-drawer__star {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 200px;
  height: 200px;
  opacity: 0.06;
  pointer-events: none;
}
@media (min-width: 768px) { .site-drawer { display: none; } }

/* =============================================================================
   4. HERO MAXIMM — variants home/inner/offer + background atmosfera + aurora
   ============================================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(40,190,188,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(21,100,99,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #001a20 0%, var(--bg-body) 55%, #000c10 100%);
}
.hero > * { position: relative; z-index: 1; }

/* Grain noise overlay sottile (texture fintech premium, no immagine) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.74 0 0 0 0 0.74 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* Hero home variant */
.hero--home {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 100vh;
  padding-block: clamp(120px, 18vh, 180px) clamp(80px, 12vh, 120px);
  --mouse-x: 50%;
  --mouse-y: 30%;
}
.hero--home .container { max-width: 100%; padding-inline: clamp(24px, 4vw, 80px); }
.hero__content { max-width: min(1500px, 92vw); margin-inline: auto; }
.hero--home .hero__claim { margin-inline: auto; max-width: min(1400px, 88vw); }

/* Aurora mouse-reactive overlay */
.hero--home::before {
  background-image:
    radial-gradient(
      600px circle at var(--mouse-x) var(--mouse-y),
      rgba(40, 190, 188, 0.16),
      transparent 45%
    ),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.74 0 0 0 0 0.74 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: cover, 200px 200px;
  background-blend-mode: normal, overlay;
  transition: background-image 200ms ease;
}
@media (hover: none) {
  .hero--home::before {
    background-image:
      url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.74 0 0 0 0 0.74 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
}

/* Glow stella ★ sfocata centro-alto come visual hammer brand */
.hero--home::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 50%;
  width: clamp(420px, 60vw, 720px);
  height: clamp(420px, 60vw, 720px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(40,190,188,0.20) 0%, transparent 55%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: hero-glow-pulse 8s ease-in-out infinite;
}
@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero--home::after { animation: none; }
}

/* Hero inner alias for max-width override */
.hero--inner .hero__claim { margin-inline: auto; max-width: min(1400px, 88vw); }

/* Hero claim style */
.hero__claim {
  font-family: var(--font-display);
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  font-feature-settings: "ss01", "cv11";
}

/* Hero offer variant */
.hero--offer {
  background: linear-gradient(180deg, var(--bg-hero-top) 0%, var(--bg-body) 80%),
              radial-gradient(circle at 50% 35%, rgba(40,190,188,0.08), transparent 60%);
}
.hero__seal-large {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 16vw, 200px);
  line-height: 1;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 32px var(--accent-glow-shadow));
}
.hero__seal-large--1 { font-size: clamp(60px, 12vw, 160px); }
.hero__seal-large--2 { font-size: clamp(80px, 14vw, 200px); }
.hero__seal-large--3 { font-size: clamp(100px, 16vw, 240px); }

.hero__microcopy {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}
.hero__subtitle {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 8px;
}

/* =============================================================================
   5. SECTION COMMONS — section, eyebrow, intro, cta
   ============================================================================= */
.section {
  padding-block: var(--space-section);
  position: relative;
}
.section__heading { margin-bottom: 24px; }
.section__intro {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 65ch;
  margin-bottom: 48px;
}
.section__body p { margin-bottom: var(--paragraph-spacing, 1.2rem); }
.section__body p:last-child { margin-bottom: 0; }
.section__cta { margin-top: 48px; }
.section--narrative .section__body { font-size: 1.25rem; line-height: 1.7; }

.container--reading { max-width: var(--max-width-reading); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--eyebrow-size);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* =============================================================================
   6. TYPOGRAPHY EXTRAS — seal, text-emphasis, lists, blockquote
   ============================================================================= */

/* Seal inline */
.seal {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  filter: drop-shadow(0 0 4px var(--accent-glow-shadow));
}
.seal-large {
  display: inline-block;
  font-size: 3rem;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 16px var(--accent-glow-shadow));
}

/* Text emphasis — utility per paragrafi narrativi enfatici.
   Specificita' alta tramite combinazione contesto + classe → niente !important. */
.section .text-emphasis,
.section__body .text-emphasis,
p.text-emphasis {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--silver-100);
  margin-top: 32px;
}

/* List check */
.list-check { list-style: none; padding: 0; }
.list-check li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.list-check li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-size: 1rem;
  filter: drop-shadow(0 0 4px var(--accent-glow-shadow));
}

/* List x (anti-pattern, prima parte di "è per te / non è per te") */
.list-x { list-style: none; padding: 0; }
.list-x li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}
.list-x li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--state-pain);
}

/* Numbered list — SaaS upgrade con badge gradient */
.numbered-list {
  counter-reset: numlist;
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
.numbered-list li {
  counter-increment: numlist;
  position: relative;
  padding: 14px 20px 14px 64px;
  line-height: 1.55;
  font-size: 1rem;
  color: var(--text-body);
  background: linear-gradient(90deg, rgba(0, 38, 42, 0.42) 0%, rgba(0, 19, 24, 0.18) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: border-color 240ms ease, transform 240ms ease;
}
.numbered-list li:hover {
  border-color: rgba(79, 229, 226, 0.32);
  transform: translateX(4px);
}
.numbered-list li::before {
  content: "0" counter(numlist);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background:
    radial-gradient(80% 80% at 30% 30%, rgba(79, 229, 226, 0.22), rgba(40, 190, 188, 0.04));
  border: 1.5px solid rgba(79, 229, 226, 0.42);
  color: var(--accent-bright, #4FE5E2);
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.numbered-list li strong {
  color: var(--silver-100);
  font-weight: 700;
}

/* Blockquote */
.blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--silver-100);
  position: relative;
}
.blockquote::before {
  content: '"';
  position: absolute;
  left: -8px;
  top: -16px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  pointer-events: none;
}

/* =============================================================================
   7. CONTENT BLOCKS — data section, services, tier (3 offerte), comparison-table
   ============================================================================= */

/* ─── DATA SECTION ─────────────────────────────────────────── */
.section--data { text-align: center; }
.data-number {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px var(--accent-glow-shadow));
  font-variant-numeric: tabular-nums;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-block: 40px;
}
.data-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: border-color 300ms;
}
.data-card:hover { border-color: var(--border-hover); }
.data-card__value {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.data-card__label { color: var(--text-muted); font-size: 0.95rem; }
.data-source { color: var(--text-muted); font-size: 0.85rem; font-style: italic; margin-top: 16px; }

/* ─── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: border-color 300ms var(--ease-glow), transform 300ms var(--ease-glow);
  isolation: isolate;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 32px rgba(40, 190, 188, 0.08);
}
.service-card__seal {
  position: absolute;
  top: 16px; right: 16px;
  color: var(--accent);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 4px var(--accent-glow-shadow));
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--silver-100);
  padding-right: 24px;
}
.service-card p { color: var(--text-body); font-size: 1.125rem; line-height: 1.65; margin-bottom: 16px; }
.link-accent {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, filter 200ms;
}
/* =============================================================================
   URGENCY TAG override — leggero, da alert non da titolo
   ============================================================================= */
.urgency-tag {
  padding: 3px 9px !important;
  font-size: 0.66rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  background: rgba(255, 90, 114, 0.08) !important;
  border: 1px solid rgba(255, 90, 114, 0.32) !important;
  color: #ff5a72 !important;
  gap: 5px !important;
  line-height: 1.3 !important;
}
.urgency-tag::before {
  font-size: 0.55em !important;
}
.tier-card__guarantee {
  text-align: center;
}
.tier-card__guarantee small {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  line-height: 1.4;
}

/* =============================================================================
   HERO SPLIT — page-annuncio-acciaio (e altre offer): foto SX + testo DX
   ============================================================================= */
.hero--split {
  padding-block: clamp(48px, 6vw, 96px);
}
/* Override del .hero--inner .container { display: flex; column } */
.hero--inner.hero--split .container,
.hero--split .hero-split__container {
  display: grid !important;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr) !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 56px;
  text-align: left;
}
@media (max-width: 960px) {
  .hero--inner.hero--split .container,
  .hero--split .hero-split__container {
    grid-template-columns: 1fr !important;
    gap: 32px;
    text-align: center;
  }
}
@media (max-width: 960px) {
  .hero-split__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Override inner-rules sul claim/sub/cta quando split */
.hero--split .hero__claim,
.hero--split .hero__sub,
.hero--split .hero__sub--lead {
  max-width: none !important;
  margin-inline: 0 !important;
  text-align: left !important;
}
.hero--split .dual-cta,
.hero--split .hero__cta {
  justify-content: flex-start !important;
}
@media (max-width: 960px) {
  .hero--split .hero__claim,
  .hero--split .hero__sub,
  .hero--split .hero__sub--lead { text-align: center !important; }
  .hero--split .dual-cta,
  .hero--split .hero__cta { justify-content: center !important; }
}

.hero-split__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-split__plate {
  display: block;
  position: relative;
  max-width: 320px;
  width: 100%;
  isolation: isolate;
}
.hero-split__plate img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 32px 64px rgba(0, 102, 255, 0.18))
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
  animation: hero-plate-float 6s ease-in-out infinite;
  transform-origin: 50% 60%;
}
@keyframes hero-plate-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-6px) rotate(-0.4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-split__plate img { animation: none; }
}

.hero-split__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero--split .hero__claim {
  margin: 0;
  text-align: left;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1;
}
.hero--split .hero__sub {
  text-align: left;
  max-width: none;
  margin: 0;
}
.hero--split .dual-cta {
  justify-content: flex-start;
  margin-top: 8px;
}
@media (max-width: 960px) {
  .hero--split .hero__claim,
  .hero--split .hero__sub,
  .hero--split .dual-cta { text-align: center; justify-content: center; }
  .hero-split__plate img { max-width: 360px; margin-inline: auto; }
}

/* Nascondi il vecchio hero__seal-large quando split-mode (la placca lo
   contiene già visivamente) */
.hero--split .hero__seal-large { display: none; }

/* =============================================================================
   STORIA FLOW — Chi-siamo: float DX + shape-outside polygon (silhouette manuale)
   ============================================================================= */
.storia-flow {
  display: flow-root;
  max-width: 1000px;
  margin: 32px auto 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-body);
}
.storia-flow > p,
.section .storia-flow > p,
main .storia-flow > p {
  margin: 0 0 18px;
  hyphens: manual;
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
}
.storia-flow > p:last-child { margin-bottom: 0; }
.storia-flow > p strong { color: var(--silver-100); }
.storia-flow > p em {
  color: var(--accent-bright, #4FE5E2);
  font-style: italic;
  font-weight: 500;
}

.storia-flow__photo {
  position: relative;
  float: right;
  width: 340px;
  height: 510px; /* aspect 600x900 scalato a 340 → ~510 */
  margin: 0 0 16px 24px;
  /* Polygon approssimativo della silhouette "arms-crossed" di Michael:
     testa stretta in alto, spalle larghe a 18%, braccia incrociate
     fino a 100% width, busto ad arrivare al fondo */
  shape-outside: polygon(
    32% 0%,
    66% 0%,
    72% 13%,
    100% 22%,
    100% 100%,
    0% 100%,
    0% 22%,
    28% 13%
  );
  shape-margin: 18px;
}
@media (max-width: 880px) {
  .storia-flow__photo {
    float: none;
    width: 75%;
    height: auto;
    max-width: 320px;
    margin: 0 auto 24px;
    shape-outside: none;
  }
}
.storia-flow__photo img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 82%, transparent 100%);
          mask-image: linear-gradient(180deg, black 0%, black 82%, transparent 100%);
}
.storia-flow__caption {
  position: absolute;
  left: -8px;
  bottom: 22%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  background: rgba(0, 19, 24, 0.88);
  border: 1px solid rgba(79, 229, 226, 0.32);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.storia-flow__caption-tag {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright, #4FE5E2);
}
.storia-flow__caption-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--silver-100);
  letter-spacing: -0.005em;
}

@media (max-width: 720px) {
  .storia-flow__photo {
    float: none;
    width: 75%;
    max-width: 320px;
    margin: 0 auto 24px;
    shape-outside: none;
  }
  .storia-flow__caption {
    left: 8px;
    bottom: 18px;
  }
}

/* =============================================================================
   MX-STAR — stella 4-punte brand inline (sostituisce ★ Unicode)
   ============================================================================= */

/* PROTOCOL NAME — wordmark del Protocollo ✦ MAXIMM */
.protocol-name {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright, #4FE5E2);
  white-space: nowrap;
}
.protocol-name .glyph-star {
  color: var(--accent-bright, #4FE5E2);
}

/* Glyph star inserito al posto di ★ Unicode (5-punte) */
.glyph-star {
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  vertical-align: -0.08em;
  color: var(--accent-bright, #4FE5E2);
  margin: 0 0.04em;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(79, 229, 226, 0.45));
}
.glyph-star use { color: inherit; fill: currentColor; }
/* Override: dentro heading bg-clip text, forza color esplicito (currentColor
   sarebbe "transparent" e renderebbe lo SVG invisibile) */
.hero__claim .glyph-star,
.section__heading .glyph-star,
h1 .glyph-star,
h2 .glyph-star,
h3 .glyph-star {
  color: var(--accent-bright, #4FE5E2);
}

.mx-star {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.14em;
  color: currentColor;
  flex-shrink: 0;
}
.mx-star svg,
.mx-star use { width: 100%; height: 100%; display: block; }

/* Seal/decorative ★: rendiamo il glyph invisibile e mostriamo SVG 4-punte via mask */
.seal,
.service-card__seal,
.manifesto-card__seal,
.smart-form__intent-seal,
.vs-board__brand-stars,
.svc-card__seal {
  color: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  vertical-align: -0.14em;
  background: transparent !important;
  border: 0 !important;
  font-size: inherit;
}
.seal::before,
.service-card__seal::before,
.manifesto-card__seal::before,
.smart-form__intent-seal::before,
.vs-board__brand-stars::before,
.svc-card__seal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--accent-bright, #4FE5E2);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path transform='rotate(-45 50 50)' d='M50,5 L60,40 L95,50 L60,60 L50,95 L40,60 L5,50 L40,40 Z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path transform='rotate(-45 50 50)' d='M50,5 L60,40 L95,50 L60,60 L50,95 L40,60 L5,50 L40,40 Z'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

/* Per le 2 e 3 stelle servono container appositi: tile multiple inline */
.vs-board__brand-stars--lg { width: 2.6em; }
.vs-board__brand-stars--lg::before {
  background-image: linear-gradient(to right, var(--accent-bright, #4FE5E2) 33%, transparent 33%, transparent 66%, var(--accent-bright, #4FE5E2) 66%);
}

/* Intent card seal singolo a colore accent intense */
.smart-form__intent-seal {
  color: var(--accent-bright, #4FE5E2);
  font-size: 1.2em;
}

/* =============================================================================
   URGENCY TAG override — leggero, da alert non da titolo
   ============================================================================= */
.hero__trust-strip {
  list-style: none;
  margin: 28px auto 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.hero__trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-weight: 500;
}
.hero__trust-strip li svg {
  width: 14px;
  height: 14px;
  color: var(--accent-bright, #4FE5E2);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(79, 229, 226, 0.4));
}
.hero__trust-strip li + li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(217, 229, 229, 0.32);
  transform: translateY(-50%);
}
@media (max-width: 540px) {
  .hero__trust-strip {
    flex-direction: column;
    gap: 6px;
  }
  .hero__trust-strip li + li::before { display: none; }
}

/* =============================================================================
   WA-GUIDE — WhatsApp chat preview + CTA personale
   ============================================================================= */
.section--wa-guide { padding-block: clamp(64px, 8vw, 120px); }

.wa-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  margin-top: 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .wa-guide {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── Chat preview ─────────────────────────────────────────────────── */
.wa-guide__chat {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #0a1418;
  border: 1px solid rgba(40, 190, 188, 0.16);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(37, 211, 102, 0.08),
    0 0 0 1px rgba(40, 190, 188, 0.06);
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
  transition: transform 600ms var(--ease-out-quart);
}
.wa-guide__chat:hover {
  transform: perspective(1400px) rotateY(0) rotateX(0);
}

.wa-guide__chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #0c1d22 0%, #081418 100%);
  border-bottom: 1px solid rgba(40, 190, 188, 0.12);
}
.wa-guide__chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0, 102, 255, 0.12);
  border: 1.5px solid rgba(79, 229, 226, 0.28);
}
.wa-guide__chat-avatar picture,
.wa-guide__chat-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.wa-guide__chat-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.wa-guide__chat-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.wa-guide__chat-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(217, 229, 229, 0.65);
}
.wa-guide__chat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22), 0 0 8px rgba(37, 211, 102, 0.65);
  animation: wa-guide-dot 2.2s ease-in-out infinite;
}
@keyframes wa-guide-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22), 0 0 8px rgba(37, 211, 102, 0.65); }
  50%      { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0), 0 0 14px rgba(37, 211, 102, 0.85); }
}
.wa-guide__chat-icon {
  width: 24px;
  height: 24px;
  color: #25D366;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.4));
}
.wa-guide__chat-icon svg { width: 100%; height: 100%; }

/* Chat body — bg con WhatsApp-style pattern */
.wa-guide__chat-body {
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 360px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(79, 229, 226, 0.04), transparent 70%),
    linear-gradient(180deg, rgba(8, 20, 24, 0.95) 0%, rgba(6, 16, 20, 0.95) 100%);
  position: relative;
}
.wa-guide__chat-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(40, 190, 188, 0.03) 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(40, 190, 188, 0.03) 1.5px, transparent 2.5px),
    radial-gradient(circle at 40% 80%, rgba(40, 190, 188, 0.025) 2px, transparent 3px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
  pointer-events: none;
  opacity: 0.7;
}
.wa-guide__chat-body > * { position: relative; z-index: 1; }

/* Messages — bubble in/out */
.wa-guide__msg {
  max-width: 78%;
  padding: 9px 12px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  position: relative;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: wa-msg-in 480ms var(--ease-out-quart) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes wa-msg-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-guide__msg p {
  margin: 0;
  color: #e9efef;
}
.wa-guide__msg p strong {
  color: #fff;
  font-weight: 700;
}
.wa-guide__msg-time {
  position: absolute;
  bottom: 4px;
  right: 10px;
  font-size: 0.66rem;
  color: rgba(217, 229, 229, 0.5);
  letter-spacing: 0.01em;
}

.wa-guide__msg--in {
  align-self: flex-start;
  background: #1f2c32;
  border-bottom-left-radius: 4px;
}
.wa-guide__msg--in::before {
  content: "";
  position: absolute;
  left: -6px;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: #1f2c32;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.wa-guide__msg--out {
  align-self: flex-end;
  background: linear-gradient(135deg, #056162 0%, #054b4c 100%);
  border-bottom-right-radius: 4px;
}
.wa-guide__msg--out::before {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: #054b4c;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.wa-guide__msg--out .wa-guide__msg-time {
  color: rgba(79, 229, 226, 0.7);
}

/* Typing indicator */
.wa-guide__msg--typing {
  align-self: flex-start;
  background: #1f2c32;
  padding: 14px 16px;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wa-guide__msg--typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(217, 229, 229, 0.5);
  animation: wa-guide-typing 1.4s ease-in-out infinite;
}
.wa-guide__msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-guide__msg--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes wa-guide-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

/* Input bar — fake */
.wa-guide__chat-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #0c1d22;
  border-top: 1px solid rgba(40, 190, 188, 0.10);
}
.wa-guide__chat-input-text {
  flex: 1;
  padding: 10px 14px;
  background: #1f2c32;
  border-radius: 999px;
  font-size: 0.88rem;
  color: rgba(217, 229, 229, 0.45);
}
.wa-guide__chat-input-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  flex-shrink: 0;
}
.wa-guide__chat-input-send svg { width: 18px; height: 18px; }

/* ── Side: heading + bullets + CTA ─────────────────────────────── */
.wa-guide__side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.wa-guide__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #25D366;
  background: rgba(37, 211, 102, 0.10);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 999px;
}
.wa-guide__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18), 0 0 10px rgba(37, 211, 102, 0.7);
  animation: wa-guide-dot 2.2s ease-in-out infinite;
}

.wa-guide__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--silver-100);
  margin: 0;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.wa-guide__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.wa-guide__bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text-body);
}
.wa-guide__bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
  border: 1.5px solid rgba(37, 211, 102, 0.45);
  color: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-guide__bullet-icon svg { width: 12px; height: 12px; }
.wa-guide__bullets strong {
  color: var(--silver-100);
  font-weight: 700;
}

/* CTA button */
.wa-guide__cta {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  box-shadow:
    0 8px 28px rgba(37, 211, 102, 0.32),
    0 0 0 4px rgba(37, 211, 102, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 280ms var(--ease-out-quart), box-shadow 280ms ease;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}
.wa-guide__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
}
.wa-guide__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(37, 211, 102, 0.45),
    0 0 0 6px rgba(37, 211, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.wa-guide__cta:hover::before { transform: translateX(100%); }
.wa-guide__cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.wa-guide__cta-icon svg { width: 26px; height: 26px; }
.wa-guide__cta-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.wa-guide__cta-headline {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.wa-guide__cta-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.3;
}
.wa-guide__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.9;
  transition: transform 280ms ease;
  position: relative;
  z-index: 1;
}
.wa-guide__cta-arrow svg { width: 22px; height: 22px; }
.wa-guide__cta:hover .wa-guide__cta-arrow { transform: translateX(4px); }

.wa-guide__micro {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

/* ─── SERVICES SAAS — showcase 1-per-riga alternato sx/dx ─────────── */
.services-saas {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.svc-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(0, 38, 42, 0.42) 0%, rgba(0, 19, 24, 0.28) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  isolation: isolate;
  overflow: hidden;
  transition: border-color 240ms ease, box-shadow 280ms ease, transform 280ms var(--ease-out-quart);
}
.svc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 229, 226, 0.32);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(79, 229, 226, 0.10);
}

/* Visual: mockup grande full-height del row */
.svc-card__visual {
  position: relative;
  min-height: 360px;
  background:
    radial-gradient(80% 70% at 50% 50%, rgba(79, 229, 226, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(0, 38, 42, 0.6) 0%, rgba(0, 19, 24, 0.3) 100%);
  border-right: 1px solid rgba(79, 229, 226, 0.14);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.svc-card__visual svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  transition: transform 600ms var(--ease-out-quart);
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
}
.svc-card:hover .svc-card__visual svg {
  transform: scale(1.04);
}

/* Body: badge + title + desc + stat + tags + link */
.svc-card__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 48px 48px 44px;
  justify-content: center;
}
.svc-card__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.svc-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 700;
  color: var(--silver-100);
  margin: 0;
  line-height: 1.18;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.svc-card__desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-body);
}
.svc-card__desc strong { color: var(--silver-100); font-weight: 700; }
.svc-card__stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(0, 19, 24, 0.55);
  border: 1px solid rgba(40, 190, 188, 0.22);
  border-radius: 12px;
  align-self: flex-start;
}
.svc-card__stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-bright, #4FE5E2);
  line-height: 1;
}
.svc-card__stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.2;
}
.svc-card__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-card__tags li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 5px 11px;
  color: var(--text-muted);
  background: rgba(217, 229, 229, 0.04);
  border: 1px solid rgba(217, 229, 229, 0.12);
  border-radius: 8px;
}
.svc-card__link {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-bright, #4FE5E2);
  align-self: flex-start;
  transition: gap 220ms ease;
}
.svc-card__link svg { width: 18px; height: 18px; transition: transform 220ms ease; }
.svc-card:hover .svc-card__link { gap: 12px; }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* Alternato: card pari hanno visual a dx, body a sx */
.svc-card:nth-child(even) .svc-card__visual {
  order: 2;
  border-right: 0;
  border-left: 1px solid rgba(79, 229, 226, 0.14);
}
.svc-card:nth-child(even) .svc-card__body {
  order: 1;
}

/* Responsive: stack su mobile/tablet */
@media (max-width: 880px) {
  .services-saas { gap: 20px; }
  .svc-card {
    grid-template-columns: 1fr;
  }
  .svc-card__visual {
    min-height: 240px;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(79, 229, 226, 0.14);
  }
  .svc-card:nth-child(even) .svc-card__visual {
    order: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(79, 229, 226, 0.14);
  }
  .svc-card:nth-child(even) .svc-card__body { order: 1; }
  .svc-card__body { padding: 28px 24px 28px; }
}
.svc-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.svc-card__badge--primary {
  color: #001318;
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  box-shadow: 0 4px 14px rgba(79, 229, 226, 0.32);
}
.svc-card__badge--accent {
  color: var(--accent-bright, #4FE5E2);
  background: rgba(79, 229, 226, 0.10);
  border: 1px solid rgba(79, 229, 226, 0.32);
}
.svc-card__badge--default {
  color: var(--text-muted);
  background: rgba(217, 229, 229, 0.05);
  border: 1px solid rgba(217, 229, 229, 0.14);
}

.svc-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--silver-100);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.svc-card__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-body);
}
.svc-card__desc strong {
  color: var(--silver-100);
  font-weight: 700;
}

.svc-card__stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 14px;
  margin: 4px 0;
  background: rgba(0, 19, 24, 0.55);
  border: 1px solid rgba(40, 190, 188, 0.18);
  border-radius: 12px;
}
.svc-card__stat-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.svc-card__stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.svc-card__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-card__tags li {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 4px 9px;
  color: var(--text-muted);
  background: rgba(217, 229, 229, 0.04);
  border: 1px solid rgba(217, 229, 229, 0.10);
  border-radius: 6px;
}

.svc-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-bright, #4FE5E2);
  transition: gap 220ms ease, color 220ms ease;
}
.svc-card__link svg { width: 16px; height: 16px; transition: transform 220ms ease; }
.svc-card:hover .svc-card__link { gap: 10px; }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* ─── LINK ACCENT (legacy) ───────────────────────────── */
.link-accent {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, filter 200ms;
}
.link-accent:hover {
  border-bottom-color: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent-glow-shadow));
}

/* ─── TIER GRID (3 offerte) ────────────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1024px) { .tier-grid { grid-template-columns: 1fr; gap: 20px; } }
.tier-card {
  background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tier-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 32px rgba(40,190,188,0.15);
  transform: scale(1.02);
}
.tier-card__seal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent-bright, #4FE5E2);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 16px rgba(79, 229, 226, 0.45));
}
.tier-card__seal .glyph-star {
  width: 1em;
  height: 1em;
}
.tier-card__name { font-size: 1.6rem; color: var(--silver-100); margin-bottom: 8px; }
.tier-card__tagline { font-style: italic; color: var(--text-muted); margin-bottom: 16px; }
.tier-card p { font-size: 1.125rem; line-height: 1.65; margin-bottom: 16px; }
.tier-card__guarantee {
  background: rgba(40,190,188,0.08);
  border: 1px solid rgba(40,190,188,0.2);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin: auto 0 16px;
}
.tier-card .btn-secondary { align-self: flex-start; margin-top: auto; }

/* ─── PROTOCOLLO FLOWCHART (legacy fallback per template che lo usano ancora) ───── */
.protocol-flowchart {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  counter-reset: proto;
}
@media (max-width: 1024px) { .protocol-flowchart { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .protocol-flowchart { grid-template-columns: 1fr; } }
.protocol-flowchart li {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  position: relative;
}

/* ─── COMPARISON TABLE ─────────────────────────────────────── */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.comparison-table thead th { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.8rem; font-weight: 600; }
.comparison-table tbody th { color: var(--text-muted); font-weight: 500; }
.comparison-table .th-highlight, .comparison-table .td-highlight {
  background: rgba(40, 190, 188, 0.05);
  color: var(--silver-100);
  font-weight: 600;
}
.comparison-table .th-highlight { color: var(--accent); }

/* ─── VS-BOARD — SaaS comparison grid (MAXIMM vs alternative) ──────── */
.vs-board {
  --vs-cols: 220px 1.4fr 1fr 1fr 1fr;
  --vs-maximm-col-index: 1;
  --vs-maximm-col-width: 1.4;
  --vs-total-flex: 4.4;
  display: grid;
  grid-template-columns: var(--vs-cols);
  gap: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 38, 42, 0.32) 0%, rgba(0, 19, 24, 0.18) 100%);
  border: 1px solid var(--border-subtle);
  position: relative;
  margin-top: 48px;
  isolation: isolate;
}
.vs-board--4col {
  --vs-cols: 240px 1fr 1.3fr 1fr;
  --vs-maximm-col-index: 2;
  --vs-maximm-col-width: 1.3;
  --vs-total-flex: 3.3;
}
.vs-board--4col::before {
  left: calc(240px + ((100% - 240px) * (1 / 3.3))) !important;
  width: calc((100% - 240px) * (1.3 / 3.3)) !important;
}
.vs-board > * {
  position: relative;
}
.vs-board__head .vs-board__feature-cell:first-child { border-radius: 24px 0 0 0; }
.vs-board__brand:last-child { border-radius: 0 24px 0 0; }
.vs-board__row:last-child .vs-board__feature-cell { border-radius: 0 0 0 24px; }
.vs-board__row:last-child > div:last-child { border-radius: 0 0 24px 0; }

/* Glow column behind MAXIMM */
.vs-board::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(220px);
  width: calc((100% - 220px) * (1.4 / 4.4));
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(79, 229, 226, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(79, 229, 226, 0.04) 0%, transparent 100%);
  border-left: 1px solid rgba(79, 229, 226, 0.28);
  border-right: 1px solid rgba(79, 229, 226, 0.28);
  pointer-events: none;
  z-index: 0;
}

.vs-board__head,
.vs-board__row {
  display: contents;
}

/* Header brand cells */
.vs-board__feature-cell {
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 19, 24, 0.4);
  position: relative;
  z-index: 1;
}
.vs-board__head .vs-board__feature-cell {
  background: rgba(0, 19, 24, 0.6);
  border-bottom: 1px solid rgba(40, 190, 188, 0.18);
}

.vs-board__feature-icon {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  flex-shrink: 0;
  display: inline-flex;
}
.vs-board__feature-icon svg {
  width: 100%;
  height: 100%;
}
.vs-board__feature-label {
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--silver-100);
}

.vs-board__brand {
  padding: 26px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}
.vs-board__brand-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(217, 229, 229, 0.06);
  border: 1px solid rgba(217, 229, 229, 0.14);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.vs-board__brand-avatar svg { width: 18px; height: 18px; }
.vs-board__brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--silver-100);
  letter-spacing: -0.005em;
}
.vs-board__brand-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.vs-board__brand--maximm {
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(79, 229, 226, 0.14), transparent 70%);
  border-bottom: 1px solid rgba(79, 229, 226, 0.42);
}
.vs-board__brand--maximm .vs-board__brand-name {
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.vs-board__brand--maximm .vs-board__brand-tag {
  color: var(--accent-bright, #4FE5E2);
  opacity: 0.85;
}
.vs-board__brand-star {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 16px rgba(79, 229, 226, 0.6));
  animation: vs-star-pulse 3s ease-in-out infinite;
}
@keyframes vs-star-pulse {
  0%, 100% { transform: scale(1) rotate(0); filter: drop-shadow(0 0 16px rgba(79, 229, 226, 0.6)); }
  50%      { transform: scale(1.1) rotate(8deg); filter: drop-shadow(0 0 24px rgba(79, 229, 226, 0.9)); }
}
.vs-board__brand-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #001318;
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(79, 229, 226, 0.4);
  white-space: nowrap;
}

/* Data cells */
.vs-board__cell {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
  transition: background 200ms ease;
}
.vs-board__row:last-child .vs-board__cell,
.vs-board__row:last-child .vs-board__feature-cell { border-bottom: 0; }

.vs-board__row:hover .vs-board__feature-cell,
.vs-board__row:hover .vs-board__cell {
  background: rgba(255, 255, 255, 0.02);
}
.vs-board__row:hover .vs-board__cell--maximm {
  background: rgba(79, 229, 226, 0.06);
}

.vs-board__text {
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--text-body);
}

.vs-board__cell--maximm {
  background: rgba(79, 229, 226, 0.04);
}
.vs-board__cell--maximm .vs-board__text {
  color: var(--silver-100);
  font-weight: 600;
}

/* Status icons */
.vs-board__status {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vs-board__status svg { width: 14px; height: 14px; }
.vs-board__status--good {
  background: rgba(79, 229, 226, 0.14);
  border: 1.5px solid rgba(79, 229, 226, 0.6);
  color: var(--accent-bright, #4FE5E2);
  box-shadow: 0 0 12px rgba(79, 229, 226, 0.35);
}
.vs-board__status--bad {
  background: rgba(255, 90, 114, 0.10);
  border: 1.5px solid rgba(255, 90, 114, 0.42);
  color: #ff5a72;
}
.vs-board__status--mid {
  background: rgba(217, 229, 229, 0.06);
  border: 1.5px solid rgba(217, 229, 229, 0.22);
  color: var(--text-muted);
}
.vs-board__status--star {
  background: linear-gradient(135deg, rgba(79, 229, 226, 0.18) 0%, rgba(40, 190, 188, 0.18) 100%);
  border: 1.5px solid rgba(79, 229, 226, 0.55);
  color: var(--accent-bright, #4FE5E2);
  box-shadow: 0 0 14px rgba(79, 229, 226, 0.45);
}
.vs-board__status--star svg { width: 13px; height: 13px; }

.vs-board__brand-stars {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-bright, #4FE5E2);
  letter-spacing: -0.05em;
  margin-bottom: 2px;
  filter: drop-shadow(0 0 6px rgba(79, 229, 226, 0.4));
}
.vs-board__brand-stars--lg {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 12px rgba(79, 229, 226, 0.7));
}

.vs-board__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-body);
  background: rgba(217, 229, 229, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  transition: all 220ms ease;
  white-space: nowrap;
}
.vs-board__cta-link:hover {
  background: rgba(217, 229, 229, 0.08);
  border-color: rgba(217, 229, 229, 0.24);
  transform: translateX(2px);
}
.vs-board__cta-link--primary {
  color: #001318;
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(79, 229, 226, 0.35);
}
.vs-board__cta-link--primary:hover {
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  box-shadow: 0 8px 28px rgba(79, 229, 226, 0.5);
  transform: translateY(-2px);
}
.vs-board__row--cta .vs-board__cell {
  padding: 22px 18px;
}

/* Mobile: stack as cards */
@media (max-width: 880px) {
  .vs-board {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 0;
    background: none;
    overflow: visible;
  }
  .vs-board::before { display: none; }
  .vs-board__head { display: none; }
  .vs-board__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: rgba(0, 19, 24, 0.4);
  }
  .vs-board__feature-cell {
    grid-column: 1;
    background: rgba(0, 38, 42, 0.6);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 18px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .vs-board__cell {
    grid-column: 1;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .vs-board__cell::before {
    content: attr(data-brand);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
    width: 80px;
  }
  .vs-board__cell--maximm {
    background: rgba(79, 229, 226, 0.08);
  }
}

/* =============================================================================
   8. SPECIFIC LAYOUTS — split-section, for-you-grid, manifesto, stats, contacts
   ============================================================================= */

/* Split section DX/SX */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-section__text .lead {
  font-size: 1.25rem;
  color: var(--text-body);
  margin-bottom: 16px;
}
.service-detail--reverse .split-section { direction: rtl; }
.service-detail--reverse .split-section > * { direction: ltr; }
@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; gap: 32px; }
}

.service-visual-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 1.5rem;
  font-style: italic;
}

/* ─── FOR YOU GRID ─────────────────────────────────────────── */
.for-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) { .for-you-grid { grid-template-columns: 1fr; } }
.for-you-grid__col {
  padding: 32px;
  border-radius: var(--radius-xl);
}
.for-you-grid__col--yes {
  background: rgba(40, 190, 188, 0.06);
  border: 1px solid rgba(40, 190, 188, 0.2);
}
.for-you-grid__col--no {
  background: rgba(168, 65, 43, 0.06);
  border: 1px solid rgba(168, 65, 43, 0.2);
}
.for-you-grid__col h3 { color: var(--silver-100); margin-bottom: 16px; font-size: 1.3rem; }

/* ─── MANIFESTO CARDS — SaaS upgrade ──────────────────────── */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.manifesto-card {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 38, 42, 0.42) 0%, rgba(0, 19, 24, 0.28) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 28px 26px 24px;
  isolation: isolate;
  overflow: hidden;
  transition: transform 320ms var(--ease-out-quart), border-color 280ms ease, box-shadow 320ms ease;
}
.manifesto-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 100% 0%, rgba(255, 90, 114, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
  z-index: 0;
}
.manifesto-card > * { position: relative; z-index: 1; }
.manifesto-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 114, 0.32);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 32px rgba(255, 90, 114, 0.10);
}
.manifesto-card:hover::before { opacity: 1; }

.manifesto-card__seal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(80% 80% at 30% 30%, rgba(255, 90, 114, 0.22), rgba(255, 60, 80, 0.06));
  border: 1.5px solid rgba(255, 90, 114, 0.42);
  color: #ff5a72;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(255, 90, 114, 0.4));
  z-index: 2;
}
.manifesto-card::after {
  content: "NO";
  position: absolute;
  top: 18px;
  left: 26px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #ff5a72;
  padding: 4px 10px;
  background: rgba(255, 60, 80, 0.10);
  border: 1px solid rgba(255, 60, 80, 0.32);
  border-radius: 999px;
  z-index: 2;
}
.manifesto-card h3 {
  font-family: var(--font-display);
  margin: 44px 0 10px;
  color: var(--silver-100);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.005em;
  text-wrap: balance;
  padding-right: 40px;
}
.manifesto-card p {
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.55;
  margin: 0;
}
.manifesto-card p em {
  color: var(--accent-bright, #4FE5E2);
  font-style: italic;
  font-weight: 600;
}

/* ─── STATS GRID (Chi Siamo) — SaaS upgrade ─────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card {
  position: relative;
  padding: 32px 28px 26px;
  background: linear-gradient(180deg, rgba(0, 38, 42, 0.42) 0%, rgba(0, 19, 24, 0.28) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  isolation: isolate;
  overflow: hidden;
  transition: transform 320ms var(--ease-out-quart), border-color 280ms ease, box-shadow 320ms ease;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 50% 0%, rgba(79, 229, 226, 0.10), transparent 65%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  transition: opacity 360ms ease;
}
.stat-card > * { position: relative; z-index: 1; }
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 229, 226, 0.32);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 32px rgba(79, 229, 226, 0.10);
}
.stat-card:hover::before { opacity: 1; }

.stat-card__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 24px rgba(79, 229, 226, 0.2));
}
.stat-card__label {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.4;
}
.stat-card--large .stat-card__value { font-size: clamp(3rem, 6vw, 3.8rem); }

/* ─── CONTACTS GRID ────────────────────────────────────────── */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .contacts-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: border-color 300ms, transform 300ms;
  display: block;
}
.contact-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.contact-card__icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.contact-card h3 { color: var(--silver-100); margin-bottom: 8px; font-size: 1.15rem; }
.contact-card__value { display: block; color: var(--accent); font-weight: 700; margin-bottom: 16px; font-size: 1.05rem; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; }

.map-placeholder {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-block: 32px;
}

/* ─── PRE-FOOTER MICHAEL ───────────────────────────────────── */
.section--pre-footer-michael { background: linear-gradient(180deg, var(--bg-body) 0%, rgba(0,38,48,0.5) 100%); }
.pre-footer__layout {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.pre-footer__text { min-width: 0; }
.pre-footer__text p { overflow-wrap: anywhere; }
@media (max-width: 1024px) { .pre-footer__layout { grid-template-columns: minmax(0, 1fr); } }
.pre-footer__photo-frame {
  aspect-ratio: 3 / 5;
  background: none;
  border: 0;
  border-radius: 0;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.pre-footer__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.pre-footer__photo-img img {
  width: 100%;
  height: 100%;
  max-width: 671px;
  max-height: 1200px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55));
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
          mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
}
.pre-footer__photo-placeholder { color: var(--text-muted); text-align: center; font-style: italic; padding: 24px; }
.pre-footer__star-corner {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 32px; height: 32px;
  filter: drop-shadow(0 0 8px var(--accent-glow-shadow));
}
.pre-footer__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 56px auto 0;
  max-width: var(--max-width-wide);
}
@media (max-width: 1024px) { .pre-footer__stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pre-footer__stats { grid-template-columns: 1fr; } }

/* ── Pre-footer __text: titolo SX + paragrafi spaziati ──────────────── */
.pre-footer__text { text-align: left; }
.pre-footer__text h2,
.pre-footer__text .silver-text {
  text-align: left !important;
  width: auto !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 28px !important;
  font-size: clamp(2rem, 3.5vw, 2.75rem) !important;
}
.pre-footer__text .eyebrow {
  text-align: left;
  margin: 0 0 16px;
}
.pre-footer__text p {
  margin: 0 0 22px;
  line-height: 1.7;
}
.pre-footer__text p:last-of-type { margin-bottom: 32px; }
.pre-footer__text > .btn-secondary { margin-top: 8px; }

/* =============================================================================
   TRUST BADGES — scudetti certificati ufficiali sotto al pre-footer
   ============================================================================= */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 72px auto 0;
  max-width: var(--max-width-wide);
}
@media (max-width: 1024px) { .trust-badges { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .trust-badges { grid-template-columns: 1fr; } }

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 22px 24px;
  background: linear-gradient(180deg, rgba(0, 38, 42, 0.55) 0%, rgba(0, 19, 24, 0.35) 100%);
  border: 1px solid rgba(40, 190, 188, 0.22);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 320ms var(--ease-out-quart), border-color 280ms ease, box-shadow 320ms ease;
}
.trust-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(60% 50% at 50% 0%, rgba(79, 229, 226, 0.10), transparent 60%);
  pointer-events: none;
}
.trust-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 190, 188, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(40, 190, 188, 0.08);
}
.trust-badge > * { position: relative; z-index: 1; }

/* Shield circolare con icona */
.trust-badge__shield {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(70% 70% at 50% 30%, rgba(79, 229, 226, 0.18), rgba(0, 19, 24, 0.4));
  border: 1.5px solid rgba(79, 229, 226, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 24px rgba(79, 229, 226, 0.25);
  color: var(--accent-bright, #4FE5E2);
  margin-bottom: 18px;
  position: relative;
}
.trust-badge__shield svg { width: 34px; height: 34px; }
.trust-badge__shield--google {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
  padding: 4px;
}
.trust-badge__shield--google svg { width: 100%; height: 100%; }
.trust-badge__shield--official {
  background: linear-gradient(180deg, #f6f6f6 0%, #c8c8c8 100%);
  border-color: rgba(255, 255, 255, 0.85);
}
.trust-badge__shield--official svg { width: 42px; height: 42px; filter: drop-shadow(0 0 6px rgba(40, 190, 188, 0.55)); }

/* Checkmark verde di "verified" che pulsa */
.trust-badge__check {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-bright, #4FE5E2);
  color: #001318;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #001318;
  box-shadow: 0 0 12px rgba(79, 229, 226, 0.7);
  animation: trust-check-pulse 2.6s ease-in-out infinite;
}
.trust-badge__check svg { width: 14px; height: 14px; }
@keyframes trust-check-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(79, 229, 226, 0.55); }
  50%      { transform: scale(1.08); box-shadow: 0 0 18px rgba(79, 229, 226, 0.85); }
}

/* Ribbon "UFFICIALE" sopra il shield official */
.trust-badge__ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--accent, #28BEBC) 0%, var(--accent-blue, #4FE5E2) 100%);
  color: #001318;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  border-radius: 999px;
  white-space: nowrap;
  border: 1.5px solid #001318;
  z-index: 2;
}

/* Value (numero / brand) */
.trust-badge__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.trust-badge__plus {
  font-size: 0.72em;
  font-weight: 700;
  margin-left: 1px;
}
.trust-badge__value--brands {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 700;
}

/* Label + source */
.trust-badge__label {
  margin: 10px 0 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--silver-100);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.trust-badge__source {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* =============================================================================
   9. LEADMAGNET + PORTFOLIO + PARTNERS + TESTIMONIALS
   ============================================================================= */

/* ─── LEAD MAGNET ──────────────────────────────────────────── */
.section--leadmagnet { background: radial-gradient(circle at 50% 50%, rgba(40,190,188,0.08), transparent 60%); }
.leadmagnet-card {
  background: var(--surface-1);
  border: 1px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 0 48px rgba(40,190,188,0.1);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.leadmagnet-card__sub { color: var(--text-body); margin: 16px 0 24px; }
.leadmagnet-card__micro { color: var(--text-muted); font-size: 0.85rem; margin-top: 16px; }
.leadmagnet-card .list-check { text-align: left; max-width: 480px; margin: 0 auto 32px; }
.btn-primary--large { padding: 18px 32px; font-size: 1.1rem; }

/* ─── PROOF GRID — Mockup illustrati CSS-only ──────────────────────────
   Bento asimmetrico (hero span 2 + 5 medium). Sostituisce il vecchio
   portfolio-grid che era 6 placeholder vuoti.
   ────────────────────────────────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.proof-grid__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 24px;
}
.proof-card {
  grid-column: span 12;
  background: linear-gradient(180deg, rgba(0,38,42,0.5) 0%, rgba(0,19,24,0.3) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 360ms var(--ease-out-quart), border-color 280ms ease, box-shadow 320ms ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
}
.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 50% 0%, rgba(79,229,226,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
}
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40,190,188,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 32px rgba(40,190,188,0.12);
}
.proof-card:hover::after { opacity: 1; }
.proof-card > * { position: relative; z-index: 1; }

.proof-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--silver-100);
  margin: 0;
  line-height: 1.3;
}
.proof-card__sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}
.proof-card__delta {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--accent-bright, #4FE5E2);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.proof-card__mockup {
  position: relative;
  flex: 1;
  border-radius: 12px;
  background: rgba(0,19,24,0.6);
  overflow: hidden;
  border: 1px solid rgba(40,190,188,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

/* Bento layout — 4 col, 2 rows: 2 hero + 4 standard */
.proof-grid--bento {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1023px) {
  .proof-grid--bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .proof-grid--bento {
    grid-template-columns: 1fr;
  }
}
.proof-grid--bento .proof-card {
  grid-column: span 1;
}
.proof-grid--bento .proof-card--hero {
  grid-column: span 2;
}
@media (max-width: 600px) {
  .proof-grid--bento .proof-card,
  .proof-grid--bento .proof-card--hero {
    grid-column: span 1;
  }
}

/* Card structure — head pill + mockup flex + foot title */
.proof-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 0;
  z-index: 2;
  position: relative;
}
.proof-card__metric {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent-bright, #4FE5E2);
  background: rgba(79, 229, 226, 0.08);
  border: 1px solid rgba(79, 229, 226, 0.32);
  border-radius: 999px;
  white-space: nowrap;
}
.proof-card__kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
}
.proof-card__foot {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed rgba(217, 229, 229, 0.12);
}
.proof-card__foot .proof-card__title {
  font-size: 1.05rem;
  margin: 8px 0 4px;
  text-wrap: balance;
}
.proof-card__foot .proof-card__sub {
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Forza mockup a riempire spazio centrale + aspect-ratio */
.proof-card__mockup {
  flex: 1;
  min-height: 0;
  aspect-ratio: 16 / 10;
  width: 100%;
}
.proof-card--hero .proof-card__mockup {
  aspect-ratio: 16 / 7;
}
.proof-card__mockup > svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
}

/* Min-height card più contenuta */
.proof-card { min-height: 300px; }
.proof-card--hero { min-height: 360px; }

/* ─── 1. PROOF COMPARE (Prima/Dopo split) ───────────────────────── */
.proof-card__mockup--compare {
  flex-direction: row;
  padding: 0;
  position: relative;
}
.proof-card__before,
.proof-card__after {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  position: relative;
  min-height: 220px;
}
.proof-card__before {
  background: linear-gradient(135deg, rgba(20,30,35,0.9) 0%, rgba(10,20,25,0.7) 100%);
}
.proof-card__after {
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(79,229,226,0.18), transparent 70%),
    linear-gradient(135deg, rgba(40,190,188,0.10) 0%, rgba(0,19,24,0.4) 100%);
}
.proof-card__chip {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid;
}
.proof-card__chip--before {
  color: var(--text-muted);
  border-color: rgba(217,229,229,0.25);
  background: rgba(217,229,229,0.05);
}
.proof-card__chip--after {
  color: var(--accent-bright, #4FE5E2);
  border-color: rgba(79,229,226,0.45);
  background: rgba(79,229,226,0.08);
}
.proof-card__skeleton {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
}
.proof-card__skeleton span {
  display: block;
  height: 8px;
  border-radius: 4px;
}
.proof-card__skeleton--dim span {
  background: linear-gradient(90deg, rgba(217,229,229,0.10), rgba(217,229,229,0.05));
}
.proof-card__skeleton--dim span:nth-child(1) { width: 70%; height: 36px; margin-bottom: 4px; }
.proof-card__skeleton--dim span:nth-child(2) { width: 90%; }
.proof-card__skeleton--dim span:nth-child(3) { width: 60%; }
.proof-card__skeleton--bright span {
  background: linear-gradient(90deg, rgba(79,229,226,0.45) 0%, rgba(79,169,245,0.30) 50%, rgba(40,190,188,0.35) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 2.8s ease-in-out infinite;
}
.proof-card__skeleton--bright span:nth-child(1) { width: 80%; height: 36px; margin-bottom: 4px; }
.proof-card__skeleton--bright span:nth-child(2) { width: 95%; }
.proof-card__skeleton--bright span:nth-child(3) { width: 70%; }
@keyframes skeleton-shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: 0% 0; }
}
.proof-card__score-before,
.proof-card__score-after {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-card__score-before span,
.proof-card__score-after span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.proof-card__score-before strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
}
.proof-card__score-after strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.proof-card__divider {
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(79,229,226,0.6) 20%, rgba(79,229,226,0.6) 80%, transparent 100%);
  position: relative;
  box-shadow: 0 0 12px rgba(79,229,226,0.4);
}
.proof-card__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent-bright, #4FE5E2);
  box-shadow: 0 0 16px rgba(79,229,226,0.8);
}
.proof-card__divider::after {
  content: "›";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  color: #001318;
  font-weight: 900;
  font-size: 14px;
  z-index: 1;
}

/* ─── 2. PROOF PLAN (planimetria SVG) ───────────────────────────── */
.proof-card__mockup--plan svg { width: 90%; height: auto; }

/* ─── 3. PROOF REEL (phone portrait + play) ─────────────────────── */
.proof-card__mockup--reel { padding: 18px; }
.proof-card__phone {
  width: 100px;
  height: 180px;
  border-radius: 16px;
  border: 2px solid rgba(217,229,229,0.3);
  background: linear-gradient(180deg, rgba(0,38,42,0.6), rgba(0,19,24,0.4));
  position: relative;
  overflow: hidden;
  padding: 6px;
}
.proof-card__phone::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background: rgba(217,229,229,0.4);
  border-radius: 2px;
}
.proof-card__phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 20%, rgba(79,229,226,0.18), transparent 60%),
    linear-gradient(135deg, rgba(0,38,42,0.6), rgba(0,19,24,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-card__phone-play {
  width: 32px;
  height: 32px;
  color: var(--accent-bright, #4FE5E2);
  filter: drop-shadow(0 0 8px rgba(79,229,226,0.6));
}
.proof-card__phone-dot {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright, #4FE5E2);
  box-shadow: 0 0 8px rgba(79,229,226,0.7);
  animation: phone-rec 1.4s ease-in-out infinite;
}
@keyframes phone-rec {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.proof-card__phone-bar {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-bright, #4FE5E2) 60%, rgba(217,229,229,0.2) 60%);
}

/* ─── 4. PROOF TOUR (360 compass) ──────────────────────────────── */
.proof-card__mockup--tour svg {
  width: 70%;
  height: auto;
  animation: tour-spin 18s linear infinite;
}
@keyframes tour-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .proof-card__mockup--tour svg { animation: none; }
}

/* ─── 5. PROOF VIDEO (frame + sound wave) ──────────────────────── */
.proof-card__mockup--video svg { width: 90%; height: auto; }

/* ─── 6. PROOF KIT (3 sheets stacked) ──────────────────────────── */
.proof-card__mockup--kit {
  padding: 24px;
}
.proof-card__sheet {
  position: absolute;
  width: 110px;
  height: 140px;
  background: linear-gradient(180deg, rgba(40,55,60,0.85), rgba(20,32,36,0.7));
  border: 1px solid rgba(217,229,229,0.15);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.proof-card__sheet--3 {
  transform: translate(-40px, 14px) rotate(-8deg);
  opacity: 0.55;
}
.proof-card__sheet--2 {
  transform: translate(-12px, 4px) rotate(-3deg);
  opacity: 0.78;
}
.proof-card__sheet--1 {
  transform: translate(20px, 0) rotate(2deg);
  background: linear-gradient(180deg, rgba(60,80,85,0.95), rgba(30,50,55,0.85));
  border-color: rgba(79,229,226,0.35);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-card__sheet-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(217,229,229,0.4);
}
.proof-card__sheet-line--lg { height: 10px; width: 70%; background: rgba(217,229,229,0.7); margin-bottom: 4px; }
.proof-card__sheet-line--sm { width: 50%; }
.proof-card__sheet-stamp {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(79,229,226,0.18);
  border: 1px solid rgba(79,229,226,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright, #4FE5E2);
  font-size: 14px;
  font-weight: 700;
}

/* ─── PARTNERS / TRUST ─────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
.partner-logo {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.partner-logo strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.partner-logo span { color: var(--text-muted); font-size: 0.85rem; }

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  margin: 0;
  isolation: isolate;
}
.testimonial-card p { font-style: italic; font-size: 1.05rem; line-height: 1.6; color: var(--silver-100); margin-bottom: 16px; }
.testimonial-card footer { color: var(--text-muted); font-size: 0.9rem; }

/* =============================================================================
   SMART-FORM — wizard 3-step SaaS (progress bar + floating + inline validation)
   ============================================================================= */
.smart-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 32px 32px;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(79, 229, 226, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(0, 38, 42, 0.55) 0%, rgba(0, 19, 24, 0.4) 100%);
  border: 1px solid rgba(40, 190, 188, 0.25);
  border-radius: 24px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  isolation: isolate;
}
.smart-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Progress bar + steps nav ──────────────────────────────────────── */
.smart-form__progress {
  margin-bottom: 32px;
}
.smart-form__progress-track {
  position: relative;
  height: 3px;
  background: rgba(217, 229, 229, 0.10);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.smart-form__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--accent, #28BEBC) 0%, var(--accent-bright, #4FE5E2) 100%);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(79, 229, 226, 0.55);
  transition: width 420ms var(--ease-out-quart);
}
.smart-form__steps-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.smart-form__steps-nav li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 280ms ease;
}
.smart-form__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(217, 229, 229, 0.08);
  border: 1px solid rgba(217, 229, 229, 0.2);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 280ms ease;
}
.smart-form__step-label {
  font-weight: 600;
  letter-spacing: 0.01em;
}
.smart-form__steps-nav li.is-active {
  color: var(--accent-bright, #4FE5E2);
}
.smart-form__steps-nav li.is-active .smart-form__step-num {
  background: var(--accent-bright, #4FE5E2);
  color: #001318;
  border-color: var(--accent-bright, #4FE5E2);
  box-shadow: 0 0 12px rgba(79, 229, 226, 0.6);
}
.smart-form__steps-nav li.is-done {
  color: var(--silver-100);
}
.smart-form__steps-nav li.is-done .smart-form__step-num {
  background: rgba(79, 229, 226, 0.18);
  border-color: var(--accent-bright, #4FE5E2);
  color: var(--accent-bright, #4FE5E2);
}

/* ── Viewport + step transitions ──────────────────────────────────── */
.smart-form__viewport {
  position: relative;
  min-height: 360px;
}
.smart-form__step {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 360ms var(--ease-out-quart), transform 360ms var(--ease-out-quart);
}
.smart-form__step.is-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.smart-form__step-head {
  margin-bottom: 24px;
}
.smart-form__step-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--silver-100);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.smart-form__step-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* ── Floating label fields ────────────────────────────────────────── */
.smart-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) { .smart-form__row { grid-template-columns: 1fr; } }

.smart-form__field {
  position: relative;
  margin-bottom: 14px;
}
.smart-form__field input,
.smart-form__field textarea,
.smart-form__field select {
  width: 100%;
  padding: 22px 16px 10px;
  background: rgba(0, 19, 24, 0.55);
  border: 1.5px solid rgba(40, 190, 188, 0.25);
  border-radius: 12px;
  color: var(--silver-100);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
  appearance: none;
  -webkit-appearance: none;
}
.smart-form__field textarea {
  resize: vertical;
  min-height: 90px;
  padding-top: 28px;
}
.smart-form__field input::placeholder,
.smart-form__field textarea::placeholder {
  color: transparent;
}
.smart-form__field input:hover,
.smart-form__field textarea:hover,
.smart-form__field select:hover {
  border-color: rgba(40, 190, 188, 0.45);
  background: rgba(0, 19, 24, 0.7);
}
.smart-form__field input:focus,
.smart-form__field textarea:focus,
.smart-form__field select:focus {
  outline: none;
  border-color: var(--accent-bright, #4FE5E2);
  background: rgba(0, 19, 24, 0.85);
  box-shadow: 0 0 0 4px rgba(79, 229, 226, 0.12);
}
/* Label posizionata sopra l'input (floating quando filled o focused) */
.smart-form__field label {
  position: absolute;
  top: 16px;
  left: 16px;
  pointer-events: none;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  transition: all 220ms var(--ease-out-quart);
  background: transparent;
  padding: 0;
  letter-spacing: 0.005em;
}
.smart-form__field input:focus + label,
.smart-form__field textarea:focus + label,
.smart-form__field input:not(:placeholder-shown) + label,
.smart-form__field textarea:not(:placeholder-shown) + label,
.smart-form__field[data-select] label {
  top: 6px;
  left: 16px;
  font-size: 0.72rem;
  color: var(--accent-bright, #4FE5E2);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.smart-form__optional {
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  margin-left: 4px;
}

/* Select chevron */
.smart-form__field[data-select]::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--accent-bright, #4FE5E2);
  border-bottom: 1.5px solid var(--accent-bright, #4FE5E2);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.smart-form__field select {
  cursor: pointer;
  padding-right: 40px;
}
.smart-form__field select option { background: #001318; color: var(--silver-100); }

/* Inline check verde quando il campo è valido */
.smart-form__check {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-bright, #4FE5E2);
  color: #001318;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 280ms var(--ease-out-quart);
  pointer-events: none;
}
.smart-form__check svg { width: 12px; height: 12px; }
.smart-form__field input:valid:not(:placeholder-shown) ~ .smart-form__check,
.smart-form__field textarea:valid:not(:placeholder-shown) ~ .smart-form__check {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}
/* Padding right per fare spazio al check su input validi */
.smart-form__field input,
.smart-form__field textarea { padding-right: 44px; }

/* ── Intent cards (radio) ─────────────────────────────────────────── */
.smart-form__intent {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.smart-form__intent-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: rgba(0, 19, 24, 0.45);
  border: 1.5px solid rgba(40, 190, 188, 0.22);
  border-radius: 10px;
  cursor: pointer;
  transition: all 200ms var(--ease-out-quart);
  position: relative;
  min-height: 0;
}
.smart-form__intent-card input { position: absolute; opacity: 0; pointer-events: none; }
.smart-form__intent-card:hover {
  border-color: rgba(40, 190, 188, 0.45);
  background: rgba(0, 19, 24, 0.65);
  transform: translateX(2px);
}
.smart-form__intent-card:has(input:checked) {
  border-color: var(--accent-bright, #4FE5E2);
  background:
    radial-gradient(60% 100% at 0% 50%, rgba(79, 229, 226, 0.18), transparent 70%),
    rgba(0, 19, 24, 0.7);
  box-shadow: 0 0 0 1px rgba(79, 229, 226, 0.32);
}
.smart-form__intent-seal {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(79, 229, 226, 0.10);
  border: 1px solid rgba(79, 229, 226, 0.32);
  color: var(--accent-bright, #4FE5E2);
  letter-spacing: -0.02em;
}
.smart-form__intent-card:has(input:checked) .smart-form__intent-seal {
  background: var(--accent-bright, #4FE5E2);
  color: #001318;
  border-color: var(--accent-bright, #4FE5E2);
  box-shadow: 0 0 12px rgba(79, 229, 226, 0.6);
}
.smart-form__intent-body { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.smart-form__intent-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--silver-100);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.smart-form__intent-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.25;
}

/* ── Consent checkbox custom ──────────────────────────────────────── */
.smart-form__consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: rgba(0, 19, 24, 0.4);
  border: 1px solid rgba(40, 190, 188, 0.2);
  border-radius: 12px;
  margin-bottom: 24px;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}
.smart-form__consent input { position: absolute; opacity: 0; pointer-events: none; }
.smart-form__consent-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(0, 19, 24, 0.6);
  border: 1.5px solid rgba(40, 190, 188, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001318;
  transition: all 220ms var(--ease-out-quart);
}
.smart-form__consent-box svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 220ms var(--ease-out-quart);
}
.smart-form__consent:has(input:checked) .smart-form__consent-box {
  background: var(--accent-bright, #4FE5E2);
  border-color: var(--accent-bright, #4FE5E2);
  box-shadow: 0 0 10px rgba(79, 229, 226, 0.5);
}
.smart-form__consent:has(input:checked) .smart-form__consent-box svg {
  opacity: 1;
  transform: scale(1);
}
.smart-form__consent-text a { color: var(--accent-bright, #4FE5E2); text-decoration: underline; }

/* ── Actions ──────────────────────────────────────────────────────── */
.smart-form__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}
.smart-form__actions--split { justify-content: space-between; }
.smart-form__actions-meta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}
.smart-form__next,
.smart-form__back,
.smart-form__submit {
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  transition: all 280ms var(--ease-out-quart);
  letter-spacing: 0.005em;
}
.smart-form__next {
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--accent, #28BEBC) 0%, var(--accent-blue, #4FE5E2) 100%);
  color: #001318;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow:
    0 10px 28px rgba(40, 190, 188, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.smart-form__next svg { width: 16px; height: 16px; }
.smart-form__next:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(40, 190, 188, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.smart-form__next:hover svg { transform: translateX(3px); }
.smart-form__back {
  padding: 12px 18px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.smart-form__back svg { width: 14px; height: 14px; }
.smart-form__back:hover { color: var(--accent-bright, #4FE5E2); }

/* Submit big con headline + sub */
.smart-form__submit {
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  color: #001318;
  border-radius: 16px;
  text-align: left;
  flex: 1;
  max-width: 360px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 14px 36px rgba(79, 229, 226, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.smart-form__submit-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.smart-form__submit-headline {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.smart-form__submit-sub {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.78;
  letter-spacing: 0.02em;
}
.smart-form__submit-star {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
  animation: submit-star-pulse 2s ease-in-out infinite;
}
@keyframes submit-star-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.12); opacity: 1; }
}
.smart-form__submit:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 48px rgba(79, 229, 226, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.smart-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 560px) {
  .smart-form { padding: 24px 18px; border-radius: 18px; }
  .smart-form__step-label { display: none; }
  .smart-form__submit { max-width: none; }
  .smart-form__actions--split { gap: 8px; }
}

/* ── Success state ────────────────────────────────────────────────── */
.smart-form__success[hidden] { display: none !important; }
.smart-form__success {
  text-align: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.smart-form__success-star {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 24px rgba(79, 229, 226, 0.7));
  animation: success-star 1.4s var(--ease-out-quart);
}
@keyframes success-star {
  0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
  60%  { transform: scale(1.2) rotate(20deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.smart-form__success h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 8px 0 0;
  color: var(--silver-100);
}
.smart-form__success p {
  margin: 0;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 420px;
}
.smart-form__success strong { color: var(--accent-bright, #4FE5E2); }

/* =============================================================================
   10. LEAD FORM — fields, radios, validation, submit, success (legacy)
   ============================================================================= */
.lead-form { display: grid; gap: 16px; max-width: 880px; margin-inline: auto; }
.lead-form__group {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(0, 38, 48, 0.4);
  backdrop-filter: blur(8px);
}
.lead-form__group legend {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--accent);
  padding: 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lead-form__field { display: grid; gap: 4px; margin-bottom: 10px; }
.lead-form__field:last-child { margin-bottom: 0; }
.lead-form__field label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.lead-form__field input,
.lead-form__field select,
.lead-form__field textarea {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 200ms;
  min-height: 38px;
}
.lead-form__field textarea { min-height: 80px; }
.lead-form__field input:focus,
.lead-form__field select:focus,
.lead-form__field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .lead-form__row { grid-template-columns: 1fr; } }

/* ─── Radio group COMPATTO ─────────────────────────── */
.lead-form__radios {
  display: grid;
  gap: 6px;
}
.lead-form__radios label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(40, 190, 188, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 200ms, background-color 200ms, transform 200ms;
  color: var(--text-body);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.35;
}
.lead-form__radios label:hover {
  border-color: var(--accent);
  background: rgba(40, 190, 188, 0.08);
}
.lead-form__radios label .seal {
  color: var(--accent);
  font-size: 1.05em;
  letter-spacing: -0.05em;
}
/* Radio nativo → custom small */
.lead-form__radios input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0;
  border: 2px solid var(--border-strong);
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 200ms;
}
.lead-form__radios input[type="radio"]:hover { border-color: var(--accent); }
.lead-form__radios input[type="radio"]:checked { border-color: var(--accent); }
.lead-form__radios input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px var(--accent-glow);
}
.lead-form__radios input[type="radio"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
/* Label intera "checked" state — bordo + bg accent */
.lead-form__radios label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(40, 190, 188, 0.12);
  color: var(--silver-100);
}
.required { color: var(--accent); }
.lead-form__honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ─── Validation inline (Adam Silver) ─── */
.lead-form__field input.is-invalid,
.lead-form__field select.is-invalid,
.lead-form__field textarea.is-invalid,
.lead-form__field [aria-invalid="true"] {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}
.lead-form__error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin: 4px 0 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lead-form__error::before {
  content: '!';
  display: inline-flex;
  width: 16px; height: 16px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.lead-form__counter {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 4px 0 0;
  font-variant-numeric: tabular-nums;
}

/* ─── Submit loading state (spinner) ─── */
.btn-primary.is-loading {
  cursor: wait;
  opacity: 0.85;
  pointer-events: none;
}
.btn-primary.is-loading .btn-label {
  position: relative;
  padding-left: 24px;
}
.btn-primary.is-loading .btn-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-right-color: transparent;
  animation: btn-spin 600ms linear infinite;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary.is-loading .btn-label::before { animation: none; }
}

/* ─── Privacy + checkbox + submit ─── */
.lead-form__privacy {
  background: rgba(40,190,188,0.04);
  border-color: rgba(40,190,188,0.2);
  padding: 10px 14px;
}
.lead-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
}
.lead-form__checkbox input { margin-top: 4px; }
.lead-form__checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--border-strong);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.lead-form__checkbox input[type="checkbox"]:checked {
  border-color: var(--accent);
  background: var(--accent);
}
.lead-form__checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid var(--bg-body);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.lead-form__checkbox span { font-size: 0.85rem; line-height: 1.4; }

.lead-form__micro { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; font-style: italic; line-height: 1.4; }
.lead-form__submit { text-align: center; margin-top: 4px; }
.lead-form__submit .btn-primary { width: 100%; justify-content: center; min-height: 48px; padding-block: 12px; }
.btn-star { width: 18px; height: 18px; filter: drop-shadow(0 0 4px var(--accent-glow-shadow)); }

.lead-form__success {
  background: rgba(40,190,188,0.1);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lead-form__success svg { width: 64px; height: 64px; filter: drop-shadow(0 0 16px var(--accent-glow-shadow)); }

/* Form invalid extra (shake hint) */
.lead-form__field input.is-invalid,
.lead-form__field select.is-invalid,
.lead-form__field textarea.is-invalid {
  border-color: var(--error);
  outline-color: var(--error);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}

/* =============================================================================
   11. FAQ — details/summary based
   ============================================================================= */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--silver-100);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  margin-left: auto;
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 240ms var(--ease-glow);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: rgba(40,190,188,0.04); }
.faq-item p { padding: 0 24px 24px; color: var(--text-body); line-height: 1.6; }

/* =============================================================================
   12. DUAL CTA + BACK-TO-TOP + ACCESSIBILITY HELPERS
   ============================================================================= */
.dual-cta { display: flex; flex-direction: column; gap: 12px; flex-wrap: nowrap; }
@media (min-width: 640px) { .dual-cta { flex-direction: row; } }

/* Accessibility helpers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.micro-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.micro-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(0, 38, 42, 0.6) 0%, rgba(0, 19, 24, 0.4) 100%);
  border: 1px solid rgba(40, 190, 188, 0.28);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.micro-stats strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.015em;
}
.micro-stats small {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.78rem;
}

/* Reduce motion override globale */
@media (prefers-reduced-motion: reduce) {
  .star-watermark, .menu-item.is-active::after {
    animation: none !important;
    filter: none !important;
  }
}

/* =============================================================================
   13. FOOTER MAXIMM
   ============================================================================= */
.site-footer {
  background: var(--bg-accent);
  border-top: 1px solid var(--border-subtle);
  padding-block: 64px 32px;
  margin-top: var(--space-section);
}
.site-footer__inner { max-width: var(--max-width-wide); margin: 0 auto; padding-inline: var(--padding-x); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 640px) { .site-footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.site-footer__claim { color: var(--text-muted); font-size: 0.95rem; margin: 16px 0 24px; max-width: 280px; }
.site-footer__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--silver-100);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-footer__heading--mt { margin-top: 24px; }
.site-footer__list { list-style: none; padding: 0; display: grid; gap: 8px; }
.site-footer__list--small li { font-size: 0.9rem; }
.site-footer__list a { color: var(--text-body); transition: color 180ms; }
.site-footer__list a:hover { color: var(--accent); }
.site-footer__list .seal { color: var(--accent); margin-right: 6px; }

.site-footer__social { list-style: none; padding: 0; display: flex; gap: 12px; }
.site-footer__social a {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  transition: color 200ms, border-color 200ms, filter 200ms;
}
.site-footer__social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent-glow-shadow));
}

.newsletter-form { display: grid; gap: 10px; }
.newsletter-form input {
  padding: 12px 16px;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-body);
  font-family: var(--font-body);
}
.newsletter-form input:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.btn-primary--sm { padding: 10px 20px; font-size: 0.9rem; min-height: 40px; }
.newsletter-form__micro { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }

.site-footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: grid;
  gap: 12px;
  align-items: center;
}
.site-footer__copyright { color: var(--text-muted); font-size: 0.85rem; }
.site-footer__legal { list-style: none; padding: 0; display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__legal a { color: var(--text-muted); font-size: 0.85rem; transition: color 180ms; }
.site-footer__legal a:hover { color: var(--accent); }
.site-footer__crosslink, .site-footer__lampo { color: var(--text-muted); font-size: 0.8rem; }
.site-footer__lampo a { color: var(--accent); }
.link-accent { color: var(--accent); }

/* =============================================================================
   14. SIGNATURE — Constellation Bloom + easter egg
   ============================================================================= */

/* ─── BUMPER apertura pagina ──────────────────────────────── */
.star-bumper {
  position: fixed;
  inset: 0;
  background: var(--bg-body);
  z-index: 9999;
  display: grid;
  place-items: center;
  cursor: pointer;
  isolation: isolate;
}
.star-bumper__svg {
  width: 120px;
  height: 120px;
  opacity: 0;
  animation: star-bloom 1.2s var(--ease-glow) forwards;
  filter: drop-shadow(0 0 24px var(--accent-glow-shadow));
}
.star-bumper--exit {
  animation: bumper-exit 400ms var(--ease-glow) forwards;
}
@keyframes star-bloom {
  0%   { transform: scale(0.3); opacity: 0; filter: drop-shadow(0 0 0 rgba(40,190,188,0)); }
  30%  { transform: scale(0.6); opacity: 0.5; filter: drop-shadow(0 0 8px rgba(40,190,188,0.2)); }
  70%  { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 24px rgba(40,190,188,0.6)); }
  100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 16px rgba(40,190,188,0.4)); }
}
@keyframes bumper-exit {
  to { opacity: 0; clip-path: circle(150% at 50% 50%); }
}
@media (prefers-reduced-motion: reduce) {
  .star-bumper { display: none !important; }
}

/* =============================================================================
   15. BLOG — filters, post-grid, post-card, sidebar
   ============================================================================= */
.blog-filters {
  position: sticky;
  top: 80px;
  z-index: 50;
  background: rgba(0, 19, 24, 0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: 12px;
}
.blog-filters__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: var(--max-width-content);
  margin-inline: auto;
}
.blog-filters__list::-webkit-scrollbar { display: none; }
.filter-pill {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 200ms, color 200ms, background-color 200ms;
}
.filter-pill:hover, .filter-pill.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(40, 190, 188, 0.08);
}

/* ─── Blog layout grid ─────────────────────────────────────── */
.blog-layout__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}
@media (max-width: 1024px) { .blog-layout__grid { grid-template-columns: 1fr; gap: 64px; } }

/* ─── Post grid 2/3 col ───────────────────────────────────── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

/* ─── Post card ───────────────────────────────────────────── */
.post-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 300ms var(--ease-glow), transform 300ms var(--ease-glow);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.post-card__cover {
  display: block;
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-body));
  overflow: hidden;
  position: relative;
}
.post-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-glow);
}
.post-card:hover .post-card__cover img { transform: scale(1.04); }
.post-card__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.4;
  filter: drop-shadow(0 0 16px var(--accent-glow-shadow));
}
.post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card__category {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.post-card__category .seal { color: var(--accent); margin-right: 4px; }
.post-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 12px;
}
.post-card__title a { color: var(--silver-100); transition: color 200ms; }
.post-card__title a:hover { color: var(--accent); }
.post-card__excerpt {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.post-card__meta { color: var(--text-muted); font-size: 0.85rem; display: flex; gap: 8px; margin-bottom: 16px; }

/* Featured post (più grande, full-width) */
.post-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  margin-bottom: 40px;
}
.post-card--featured .post-card__cover { aspect-ratio: 16 / 10; flex: 0 0 55%; }
.post-card--featured .post-card__body { padding: 40px; }
.post-card--featured .post-card__title { font-size: 2rem; }
@media (max-width: 1024px) {
  .post-card--featured { flex-direction: column; }
  .post-card--featured .post-card__cover { flex: none; aspect-ratio: 3 / 2; }
}

/* ─── Load More ────────────────────────────────────────────── */
.load-more-wrap { display: grid; place-items: center; margin-top: 40px; }
.load-more { padding: 14px 32px; }

/* ─── Sidebar ──────────────────────────────────────────────── */
.blog-layout__sidebar {
  position: sticky;
  top: 160px;
  align-self: start;
  display: grid;
  gap: 24px;
}
@media (max-width: 1024px) { .blog-layout__sidebar { position: static; } }
.sidebar-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--silver-100);
}
.sidebar-card p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 16px; line-height: 1.55; }
.sidebar-card__list { list-style: none; padding: 0; display: grid; gap: 8px; }
.sidebar-card__list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-body);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 180ms;
}
.sidebar-card__list a:hover { color: var(--accent); }
.sidebar-card__count { color: var(--text-muted); font-size: 0.85rem; }
.sidebar-card--leadmagnet {
  background: linear-gradient(180deg, var(--surface-1) 0%, rgba(40,190,188,0.05) 100%);
  border-color: var(--accent);
  text-align: center;
  position: relative;
}
.sidebar-card__star {
  display: block;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px var(--accent-glow-shadow));
}
.sidebar-card--newsletter form { display: grid; gap: 8px; }
.sidebar-card--newsletter input {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text-body);
}
.sidebar-card--newsletter input:focus { outline: 2px solid var(--accent); border-color: var(--accent); }

/* =============================================================================
   16. SINGLE POST — hero, layout, toc, body typography, share
   ============================================================================= */
.single-post__hero { padding-block: var(--padding-hero-inner) var(--space-block); text-align: center; }
.single-post__hero .hero__claim { margin-inline: auto; }
.single-post__meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.single-post__meta strong { color: var(--silver-100); }

.single-post__layout {
  padding-block: var(--space-section) 0;
  position: relative;
}
.single-post__layout .container {
  display: grid;
  grid-template-columns: 1fr min(680px, 100%) 1fr;
  gap: 32px;
}
@media (max-width: 1024px) {
  .single-post__layout .container { grid-template-columns: 1fr; }
}

.single-post__toc {
  grid-column: 1;
  align-self: start;
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) { .single-post__toc { position: static; } }
.toc-accordion {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.toc-accordion summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--silver-100);
  list-style: none;
}
.toc-accordion summary::-webkit-details-marker { display: none; }
.toc-accordion[open] summary { margin-bottom: 12px; }
.toc-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}
.toc-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 200ms;
}
.toc-list a:hover, .toc-list a.is-active {
  color: var(--accent);
}

.single-post__body {
  grid-column: 2;
  font-family: var(--font-body);
  font-size: var(--blog-body-size);
  line-height: var(--blog-line-height);
  color: var(--text-body);
}
.single-post__body p { margin-bottom: 1.2em; }
.single-post__body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.single-post__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--silver-100);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
/* Drop cap su primo paragrafo dopo H2 */
.single-post__body h2 + p::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.9;
  font-weight: 700;
  font-feature-settings: "ss01", "cv11";
  float: left;
  margin: 0.1rem 0.6rem 0 0;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.single-post__body ul, .single-post__body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.single-post__body li { margin-bottom: 0.5rem; }
.single-post__body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--silver-100);
  position: relative;
}
.single-post__body blockquote::before {
  content: '★';
  position: absolute;
  left: -8px;
  top: -8px;
  font-size: 1rem;
  background: var(--bg-body);
  color: var(--accent);
  padding: 0 4px;
  filter: drop-shadow(0 0 6px var(--accent-glow-shadow));
}
.single-post__body a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 180ms; }
.single-post__body a:hover { border-bottom-color: var(--accent); }
.single-post__body img { border-radius: var(--radius-lg); margin: 1.5rem 0; }
.single-post__body code {
  background: var(--surface-1);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  color: var(--accent);
}

.single-post__share {
  grid-column: 3;
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding-top: 8px;
}
@media (max-width: 1024px) {
  .single-post__share {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
  }
}
.share-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .share-label { display: none; }
}
.share-btn {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 200ms, border-color 200ms, filter 200ms;
}
.share-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent-glow-shadow));
}

.section--related { background: linear-gradient(180deg, transparent 0%, rgba(0,38,48,0.4) 100%); }
.section--related .post-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .section--related .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .section--related .post-grid { grid-template-columns: 1fr; } }

/* =============================================================================
   17. PROTOCOLLO ★ TIMELINE — vera process flow SaaS
   ============================================================================= */

/* Stats 3 totali SOPRA timeline */
.protocol-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  margin: 24px auto 56px;
  padding: 24px 32px;
  flex-wrap: wrap;
}
.protocol-stats__item { text-align: center; }
.protocol-stats__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.protocol-stats__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.protocol-stats__sep {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
@media (max-width: 768px) {
  .protocol-stats__sep { display: none; }
}

/* Timeline verticale unilaterale — linea a sinistra, content a destra */
.protocol-timeline {
  position: relative;
  width: min(720px, 92vw);
  margin: 64px auto;
  padding: 24px 0 24px 96px;
}

/* Linea verticale a sinistra + progress bar */
.protocol-timeline__track {
  position: absolute;
  top: 56px;
  bottom: 56px;
  left: 33px;
  width: 3px;
  background: rgba(40, 190, 188, 0.18);
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.protocol-timeline__progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
    var(--accent) 0%,
    var(--accent-blue) 60%,
    var(--silver-100) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 16px var(--accent-glow);
}
.protocol-timeline.is-visible .protocol-timeline__progress-bar {
  transform: scaleY(1);
}

/* Steps stack verticale unilaterale */
.protocol-timeline__steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.protocol-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 88px;
  padding-left: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 160ms);
}
.protocol-timeline.is-visible .protocol-step {
  opacity: 1;
  transform: translateY(0);
}

/* Node cerchio sulla linea centrale — position absolute alla linea sinistra.
   Definizione consolidata (era duplicata, gli !important erano lì per battere
   un secondo blocco posizionato dopo che sovrascriveva position/left). */
.protocol-step__node {
  position: absolute;
  left: -96px;
  top: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg-body);
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  margin: 0;
  flex-shrink: 0;
  transition: transform 320ms var(--ease-glow), box-shadow 320ms var(--ease-glow), border-color 320ms;
  box-shadow: 0 0 0 6px var(--bg-body),
              0 0 24px rgba(40, 190, 188, 0.30);
  z-index: 2;
}

/* Badge numero sovrapposto al nodo (bottom-right corner) */
.protocol-step__badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-body);
  border: 2px solid var(--accent);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  display: grid;
  place-items: center;
  letter-spacing: 0;
  z-index: 3;
}

/* Pill tempo (flex item dentro .protocol-step flex col) */
.protocol-step__time {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 4px 12px;
  background: rgba(40, 190, 188, 0.10);
  border: 1px solid rgba(40, 190, 188, 0.35);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
  min-height: 22px;
  white-space: nowrap;
  margin: 0;
  order: 1;
}
.protocol-step__title { order: 2; }
.protocol-step__desc { order: 3; }
/* Layout content step: tutto a sinistra del column */
.protocol-step .protocol-step__time,
.protocol-step .protocol-step__title,
.protocol-step .protocol-step__desc {
  display: block;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: 100%;
}
.protocol-step__node--final {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 6px rgba(0, 19, 24, 1),
              0 0 32px rgba(40, 190, 188, 0.6);
}
.protocol-step__icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  fill: none;
  stroke: var(--accent);
}
.protocol-step__node--final .protocol-step__icon { color: var(--bg-body); stroke: none; }
.protocol-step__icon--star { fill: var(--bg-body); stroke: none; }

/* Pulse ring */
.protocol-step__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
}
.protocol-timeline.is-visible .protocol-step__pulse {
  animation: protocol-pulse 2.4s ease-out infinite;
  animation-delay: calc(var(--i, 0) * 120ms + 1.5s);
}
@keyframes protocol-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.protocol-step:hover .protocol-step__node {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(0, 19, 24, 1),
              0 0 48px rgba(40, 190, 188, 0.7);
}
.protocol-step:hover .protocol-step__icon { stroke: var(--accent-bright); color: var(--accent-bright); }

/* Titolo step — e' un <h3> con classe, quindi non viene toccato dalla regola
   "section h2" 80vw (la regola match solo <h2>). Specificita' 0,0,1,0 batte
   l'h3 generico (0,0,0,1). Niente !important necessari. */
.protocol-step__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--silver-100);
  margin: 0 0 8px;
  text-align: left;
  width: auto;
  max-width: 100%;
}

.protocol-step__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 100%;
}

/* Step finale (Certificazione) — accent gradient su tutto */
.protocol-step--final .protocol-step__title { color: var(--accent-bright); }
.protocol-step--final .protocol-step__time {
  background: rgba(40, 190, 188, 0.2);
  border-color: var(--accent);
  color: var(--silver-100);
}

/* Mobile: timeline lineare con padding ridotto */
@media (max-width: 640px) {
  .protocol-timeline {
    padding-left: 72px;
  }
  .protocol-step__node {
    left: -72px;
    width: 56px;
    height: 56px;
  }
  .protocol-timeline__track {
    left: 27px;
  }
}

/* =============================================================================
   18. SAAS PREMIUM EFFECTS (Linear / Vercel / Stripe style)
   1. Conic border-glow ruotante su fintech-card + featured CTA
   2. Dot pattern texture subtle (background di tutto il body)
   3. Spotlight follow cursor su fintech-card (interno alla card)
   4. Stats con underline gradient animato (anchor della @property)
   5. SaaS gradient border per CTA premium (btn-primary--white)
   ============================================================================= */
@property --conic-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* ── 1. CONIC BORDER GLOW (premium SaaS card) ───────────────────────── */
.fintech-card,
.stat-card {
  position: relative;
}
.fintech-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--conic-angle, 0deg),
    transparent 0deg,
    rgba(40, 190, 188, 0.6) 30deg,
    rgba(40, 190, 188, 0.5) 60deg,
    transparent 90deg,
    transparent 270deg,
    rgba(40, 190, 188, 0.5) 300deg,
    rgba(40, 190, 188, 0.4) 330deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 320ms var(--ease-glow);
  pointer-events: none;
  z-index: 0;
  animation: conic-spin 6s linear infinite paused;
}
.fintech-card:hover::before,
.stat-card:hover::before,
.fintech-card--featured::before {
  opacity: 1;
  animation-play-state: running;
}
@keyframes conic-spin {
  to { --conic-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .fintech-card::before, .stat-card::before { animation: none; }
}

/* ── 2. DOT PATTERN texture (sotto al body atmosferic gradient) ────── */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(40, 190, 188, 0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
body > *:not(.mesh-bg):not(.cursor-follower):not(.sticky-cta):not(.section-nav):not(.site-header):not(.star-watermark) { position: relative; z-index: 1; }

/* ── 3. SPOTLIGHT cursor su fintech-card (radial gradient mouse-tracked) ──*/
.fintech-card {
  --spot-x: 50%;
  --spot-y: 50%;
}
.fintech-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--spot-x) var(--spot-y),
    rgba(40, 190, 188, 0.12),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 320ms var(--ease-glow);
  pointer-events: none;
  z-index: 1;
}
.fintech-card:hover::after { opacity: 1; }
.fintech-card > * { position: relative; z-index: 2; }

/* ── 4. STATS — underline gradient animato sotto il numero ─────────── */
/* Specificita' boost via doppia classe :where() per evitare !important */
.stat-card .stat-number {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.stat-card .stat-number::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 60%;
  height: 2px;
  transform: translateX(-50%) scaleX(0);
  background: var(--accent-gradient);
  box-shadow: 0 0 8px var(--accent-glow);
  transform-origin: center;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1) 300ms;
}
.stat-card.is-visible .stat-number::after,
.stat-card[data-animate].is-visible .stat-number::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── 5. SAAS GRADIENT BORDER (border-image-source per CTA premium) ─── */
.btn-primary--white {
  background-image: linear-gradient(#fff, #fff),
                    linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 50%, var(--accent-violet) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
}

/* =============================================================================
   19. SYSTEM ORBIT visual (stella ★ centrale + 6 servizi orbitanti)
   ============================================================================= */
.system-orbit {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.system-orbit__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: orbit-rotate 60s linear infinite;
}
@keyframes orbit-rotate {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .system-orbit__lines { animation: none; }
}

.system-orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(80px, 18%, 110px);
  height: clamp(80px, 18%, 110px);
  transform: translate(-50%, -50%);
  color: var(--accent-bright, #4FE5E2);
  filter: drop-shadow(0 0 32px rgba(79, 229, 226, 0.7)) drop-shadow(0 0 12px rgba(79, 229, 226, 0.55));
  z-index: 2;
  animation: orbit-pulse 4s ease-in-out infinite;
}
.system-orbit__center svg { width: 100%; height: 100%; display: block; }
@keyframes orbit-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .system-orbit__center { animation: none; }
}

.system-orbit__node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: rgba(0, 38, 48, 0.85);
  border: 1px solid rgba(40, 190, 188, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--silver-100);
  text-align: center;
  /* Posizione orbital via --angle (0-360), radius 180px */
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-180px) rotate(calc(-1 * var(--angle)));
  transition: transform 320ms var(--ease-glow), border-color 320ms, box-shadow 320ms, background 320ms;
  z-index: 3;
}
.system-orbit__node:hover {
  border-color: var(--accent);
  background: rgba(0, 38, 48, 0.95);
  box-shadow: 0 0 32px var(--accent-glow);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-180px) rotate(calc(-1 * var(--angle))) scale(1.12);
}
.system-orbit__node .icon {
  width: 1.5em;
  height: 1.5em;
}

@media (max-width: 768px) {
  .system-orbit { max-width: 340px; }
  .system-orbit__node {
    width: 72px;
    font-size: 0.75rem;
    padding: 8px 4px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-130px) rotate(calc(-1 * var(--angle)));
  }
  .system-orbit__node:hover {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-130px) rotate(calc(-1 * var(--angle))) scale(1.1);
  }
}

/* =============================================================================
   20. PAGE TRANSITION cinematica (Iris aperture + conic ruotante + stella ★)
   ============================================================================= */
@property --pt-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.page-transition {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  display: none;
  background: var(--bg-body);
  opacity: 0;
}
.page-transition[data-active] { display: block; }

/* ── SHUTTER cinematici (top + bottom che si chiudono) ── */
.page-transition__shutter {
  position: absolute;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(180deg, #000c10 0%, var(--bg-body) 100%);
  z-index: 1;
  will-change: transform;
}
.page-transition__shutter--top {
  top: 0;
  transform: translateY(-100%);
  border-bottom: 1px solid rgba(40, 190, 188, 0.3);
  box-shadow: 0 4px 24px rgba(40, 190, 188, 0.18);
}
.page-transition__shutter--bottom {
  bottom: 0;
  transform: translateY(100%);
  background: linear-gradient(0deg, #000c10 0%, var(--bg-body) 100%);
  border-top: 1px solid rgba(40, 190, 188, 0.3);
  box-shadow: 0 -4px 24px rgba(40, 190, 188, 0.18);
}

/* ── IRIS — wrapper centrale ── */
.page-transition__iris {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  filter: drop-shadow(0 0 32px rgba(40, 190, 188, 0.6));
  will-change: transform;
}

/* ── CONIC gradient ruotante dietro la stella ── */
.page-transition__conic {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: conic-gradient(
    from var(--pt-angle),
    transparent 0%,
    rgba(40, 190, 188, 0.85) 25%,
    transparent 50%,
    rgba(245, 245, 245, 0.6) 75%,
    transparent 100%
  );
  -webkit-mask: radial-gradient(circle, transparent 38%, #000 39%, #000 60%, transparent 62%);
          mask: radial-gradient(circle, transparent 38%, #000 39%, #000 60%, transparent 62%);
  opacity: 0;
}

/* ── CORE: stella silver al centro ── */
.page-transition__core {
  position: absolute;
  inset: 25%;
  display: grid;
  place-items: center;
}
.page-transition__core svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.page-transition__star-path {
  transform-origin: 50% 50%;
}

/* ── PARTICELLE radiali (8 dots che esplodono dal centro) ── */
.page-transition__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-transition__particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  transform: translate(-50%, -50%);
  opacity: 0;
  --angle: calc(45deg * var(--i));
}

/* ─────────────── ENTERING ─────────────── */
.page-transition.is-entering {
  animation: pt-fade-in 80ms linear forwards;
}
.page-transition.is-entering .page-transition__shutter--top {
  animation: pt-shutter-in-top 380ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.page-transition.is-entering .page-transition__shutter--bottom {
  animation: pt-shutter-in-bottom 380ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.page-transition.is-entering .page-transition__iris {
  animation: pt-iris-in 380ms cubic-bezier(0.16, 1, 0.3, 1) 140ms forwards;
}
.page-transition.is-entering .page-transition__conic {
  animation: pt-conic-in 360ms cubic-bezier(0.4, 0, 0.6, 1) 180ms forwards;
}
.page-transition.is-entering .page-transition__star-path {
  animation: pt-star-spin-in 380ms cubic-bezier(0.16, 1, 0.3, 1) 140ms forwards;
}

@keyframes pt-fade-in { to { opacity: 1; } }
@keyframes pt-shutter-in-top { to { transform: translateY(0); } }
@keyframes pt-shutter-in-bottom { to { transform: translateY(0); } }
@keyframes pt-iris-in {
  0%   { transform: translate(-50%, -50%) scale(0)   rotate(-60deg); }
  100% { transform: translate(-50%, -50%) scale(1)   rotate(0deg);    }
}
@keyframes pt-conic-in {
  0%   { opacity: 0;   --pt-angle: 0deg; }
  100% { opacity: 1;   --pt-angle: 540deg; }
}
@keyframes pt-star-spin-in {
  0%   { transform: scale(0)   rotate(-180deg); opacity: 0; }
  60%  { transform: scale(1.15) rotate(20deg);  opacity: 1; }
  100% { transform: scale(1)   rotate(0deg);   opacity: 1; }
}

/* ─────────────── LEAVING ─────────────── */
.page-transition.is-leaving {
  animation: pt-fade-out 320ms linear 480ms forwards;
}
.page-transition.is-leaving .page-transition__shutter--top {
  animation: pt-shutter-out-top 460ms cubic-bezier(0.4, 0, 0.2, 1) 240ms forwards;
}
.page-transition.is-leaving .page-transition__shutter--bottom {
  animation: pt-shutter-out-bottom 460ms cubic-bezier(0.4, 0, 0.2, 1) 240ms forwards;
}
.page-transition.is-leaving .page-transition__iris {
  animation: pt-iris-out 320ms cubic-bezier(0.7, 0, 1, 0.3) forwards;
}
.page-transition.is-leaving .page-transition__star-path {
  animation: pt-star-spin-out 320ms cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
.page-transition.is-leaving .page-transition__conic {
  animation: pt-conic-out 280ms ease-out forwards;
}
.page-transition.is-leaving .page-transition__particle {
  animation: pt-particle-burst 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pt-fade-out { to { opacity: 0; } }
@keyframes pt-shutter-out-top { to { transform: translateY(-100%); } }
@keyframes pt-shutter-out-bottom { to { transform: translateY(100%); } }
@keyframes pt-iris-out {
  0%   { transform: translate(-50%, -50%) scale(1)   rotate(0deg);   opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.4) rotate(90deg);  opacity: 0; }
}
@keyframes pt-star-spin-out {
  0%   { transform: scale(1)   rotate(0deg);   }
  100% { transform: scale(2.2) rotate(180deg); }
}
@keyframes pt-conic-out {
  0%   { opacity: 1;   --pt-angle: 540deg; }
  100% { opacity: 0;   --pt-angle: 900deg; }
}
@keyframes pt-particle-burst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-160px) scale(0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition { display: none !important; }
}

/* =============================================================================
   LEGACY LAMPO BASE FALLBACK — usato da 404.php + main.js dialog hooks
   Solo classi minime per evitare elementi non stilati. NON estendere. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg-body);
}
.btn--primary:hover {
  background: var(--accent-hover);
}

dialog.lampo-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(560px, 92vw);
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
dialog.lampo-dialog::backdrop {
  background: rgba(0, 19, 24, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =============================================================================
   21. MAGNETIC CTA + 3D TILT + GLASS
   ============================================================================= */

/* Magnetic CTA (mouse-driven transform).
   .btn--magnetic e' usato in main.js + 404.php (legacy Lampo Base) — manteniamo
   un mapping minimo perche' il JS imposta `style.transform` direttamente. */
.btn--magnetic {
  transition: transform 200ms ease-out, box-shadow var(--dur-base) ease;
}
.btn-primary, .btn-secondary {
  --mx: 0px;
  --my: 0px;
}
.btn-primary:hover, .btn-secondary:hover {
  transform: translate3d(var(--mx), calc(var(--my) - 2px), 0);
}
.btn-primary.btn-primary--white:hover {
  transform: translate3d(var(--mx), calc(var(--my) - 2px), 0);
}
.btn-primary:active, .btn-secondary:active {
  transform: translate3d(0, 0, 0) scale(0.97);
}
@media (hover: none) {
  .btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); }
}

/* Card 3D tilt (transform applicato via JS) */
.tier-card, .post-card {
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
.tier-card:hover, .post-card:hover {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.20),
    0 16px 48px rgba(40, 190, 188, 0.18);
}

/* =============================================================================
   22. SINGLE-POST ARTICLE BODY EXTRAS — table, callout, reading-progress
   ============================================================================= */

/* Highlight statistiche / dati negli articoli */
.single-post__body mark,
.single-post__body strong em,
.single-post__body em strong {
  background: linear-gradient(180deg, transparent 60%, rgba(40,190,188,0.22) 60%);
  color: var(--silver-100);
  padding: 0 2px;
  font-style: normal;
}

/* Tabelle articolo — editorial */
.single-post__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95em;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-1);
}
.single-post__body thead {
  background: rgba(40,190,188,0.08);
}
.single-post__body th {
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95em;
  color: var(--silver-100);
  border-bottom: 1px solid var(--border-hover);
}
.single-post__body td {
  padding: 10px 16px;
  border-top: 1px solid var(--border-subtle);
  vertical-align: top;
  color: var(--text-body);
}
.single-post__body tbody tr:hover { background: rgba(255,255,255,0.02); }

/* Callout box (cita esplicita es. "> Vuoi vedere...") */
.single-post__body blockquote p { margin: 0; }
.single-post__body blockquote p + p { margin-top: 0.5em; }
.single-post__body blockquote strong { color: var(--accent); }
.single-post__body blockquote a {
  display: inline-block;
  margin-top: 0.5em;
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
}

/* Reading progress bar (single article) */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 100;
  pointer-events: none;
  display: none;
}
.single .reading-progress { display: block; }
.reading-progress__bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--silver-100) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 8px var(--accent-glow);
  transition: transform 80ms linear;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .reading-progress__bar { transition: none; }
}

/* =============================================================================
   23. SAAS ULTRA EFFECTS — Mesh BG + Cursor follower + Section dots +
        Sticky CTA + Border trace + Premium tier glow + Bento services
   ============================================================================= */

/* ── 1. MESH GRADIENT BACKGROUND — 4 orbs che fluttuano lentissime ──── */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.65;
  /* Fade aggressivo: orb invisibili nel primo 30% (zona header) e ultimo 15% */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 32%, black 85%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, black 32%, black 85%, transparent 100%);
}
/* Orb 1 e 2 (top) — spostate più in basso per non interferire col header */
.mesh-bg__orb--1 { top: 12%; }
.mesh-bg__orb--2 { top: 18%; }
.mesh-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
  mix-blend-mode: screen;
}
.mesh-bg__orb--1 {
  width: 55vw; height: 55vw;
  top: -22%; left: -12%;
  background: rgba(79, 229, 226, 0.42);
  animation: mesh-drift-1 38s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}
.mesh-bg__orb--2 {
  width: 50vw; height: 50vw;
  top: -8%; right: -16%;
  background: rgba(79, 229, 226, 0.32);
  animation: mesh-drift-2 42s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate-reverse;
}
.mesh-bg__orb--3 {
  width: 65vw; height: 65vw;
  bottom: -32%; left: 18%;
  background: rgba(40, 190, 188, 0.28);
  animation: mesh-drift-3 46s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}
.mesh-bg__orb--4 {
  width: 42vw; height: 42vw;
  bottom: 8%; right: 4%;
  background: rgba(40, 190, 188, 0.26);
  animation: mesh-drift-4 36s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}
@keyframes mesh-drift-1 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(14vw, 12vh, 0) scale(1.12); }
}
@keyframes mesh-drift-2 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-12vw, 18vh, 0) scale(1.18); }
}
@keyframes mesh-drift-3 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(18vw, -14vh, 0) scale(1.2); }
}
@keyframes mesh-drift-4 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-16vw, -18vh, 0) scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  .mesh-bg__orb { animation: none; }
}

/* ── 2. CURSOR FOLLOWER ──────────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  html, body, html *, body * {
    cursor: none !important;
  }
}
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(79, 229, 226, 0.9);
  box-shadow: 0 0 20px rgba(79, 229, 226, 0.55);
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(-100px, -100px, 0);
  transition:
    width 320ms var(--ease-out-quart),
    height 320ms var(--ease-out-quart),
    background 280ms ease,
    border-radius 320ms ease,
    box-shadow 320ms ease,
    opacity 360ms ease;
  opacity: 0;
  will-change: transform;
}
.cursor-follower.is-ready { opacity: 1; }
.cursor-follower.is-hover {
  width: 38px;
  height: 38px;
  background: rgba(79, 229, 226, 0.18);
  border: 1.5px solid rgba(79, 229, 226, 0.85);
  box-shadow: 0 0 32px rgba(79, 229, 226, 0.35);
}
.cursor-follower.is-cta {
  width: 56px;
  height: 56px;
  background: rgba(79, 229, 226, 0.08);
  backdrop-filter: blur(1px) saturate(130%);
  -webkit-backdrop-filter: blur(1px) saturate(130%);
  border: 1px solid rgba(79, 229, 226, 0.55);
  box-shadow:
    0 8px 32px rgba(0, 19, 24, 0.28),
    0 0 24px rgba(79, 229, 226, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.28),
    inset 0 -1px 1px rgba(0, 19, 24, 0.18);
}
.cursor-follower.is-text {
  width: 3px;
  height: 26px;
  border-radius: 2px;
  background: var(--accent-bright, #4FE5E2);
}
@media (hover: none), (pointer: coarse) {
  .cursor-follower { display: none; }
}

/* ── 3. SECTION PROGRESS DOTS (right rail) ───────────────────────────── */
.section-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 50;
  padding: 16px 6px;
  list-style: none;
  margin: 0;
}
.section-nav::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(40,190,188,0.28) 18%, rgba(40,190,188,0.28) 82%, transparent 100%);
  transform: translateX(-50%);
  pointer-events: none;
}
.section-nav__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(217, 229, 229, 0.28);
  cursor: pointer;
  transition: all 280ms var(--ease-out-quart);
  border: 0;
  padding: 0;
  z-index: 1;
}
.section-nav__dot:hover {
  background: var(--accent);
  transform: scale(1.6);
}
.section-nav__dot.is-active {
  background: var(--accent-bright, #4FE5E2);
  box-shadow: 0 0 14px rgba(79, 229, 226, 0.65);
  transform: scale(1.6);
}
.section-nav__dot[data-label]::after {
  content: attr(data-label);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  font-size: 11px;
  color: var(--text);
  white-space: nowrap;
  background: rgba(0, 19, 24, 0.92);
  backdrop-filter: blur(8px);
  padding: 5px 11px;
  border: 1px solid var(--border-subtle);
  border-radius: 7px;
  opacity: 0;
  transition: all 240ms var(--ease-out-quart);
  pointer-events: none;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.section-nav__dot:hover[data-label]::after,
.section-nav__dot.is-active[data-label]::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 960px) {
  .section-nav { display: none; }
}

/* ── 4. STICKY CTA DOCK (floating bottom-right) ──────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue, #4FE5E2) 100%);
  color: #001318;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow:
    0 12px 36px rgba(40, 190, 188, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: translateY(24px) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 420ms var(--ease-out-quart),
    opacity 420ms ease,
    box-shadow 280ms ease,
    background 280ms ease;
  font-size: 14px;
  letter-spacing: 0.005em;
  line-height: 1;
}
.sticky-cta::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: inherit;
  filter: blur(22px);
  opacity: 0.4;
  z-index: -1;
  animation: sticky-pulse 2.6s ease-in-out infinite;
}
.sticky-cta.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta:hover {
  box-shadow:
    0 18px 50px rgba(40, 190, 188, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
}
.sticky-cta__icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 280ms var(--ease-out-quart);
}
.sticky-cta:hover .sticky-cta__icon { transform: translateX(4px); }
@keyframes sticky-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.96); }
  50%      { opacity: 0.55; transform: scale(1.04); }
}
@media (max-width: 600px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
    padding: 11px 16px;
    font-size: 13px;
  }
}

/* ── 5. BORDER TRACE SVG su tier-card — RIMOSSO su richiesta utente ──── */
/* I bordi animati al hover distraggono dalla lettura. Manteniamo solo il
   glow ambient del featured tier (radial pulse dietro), senza bordi. */
.tier-card__trace { display: none; }

/* Disattiva anche il conic-gradient hover ereditato da .fintech-card */
.tier-card.fintech-card::before {
  display: none;
}

/* ── 6. TOP TIER PREMIUM (.tier-card--featured) — solo glow ambient ──── */
/* Il bordo conic-gradient è stato rimosso (su richiesta utente).
   Manteniamo SOLO il radial glow pulsante ambient dietro la card. */
.tier-card--featured { position: relative; }
.tier-card--featured::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  background: radial-gradient(60% 50% at 50% 50%,
    rgba(79, 229, 226, 0.28),
    rgba(79, 229, 226, 0.18) 40%,
    transparent 72%);
  filter: blur(44px);
  z-index: -2;
  animation: featured-pulse 3.8s ease-in-out infinite;
}
@keyframes featured-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50%      { opacity: 1;    transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .tier-card--featured::after { animation: none; }
}

/* ── 7. BENTO GRID — services à la carte (asimmetrico) ──────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.services-grid .service-card {
  grid-column: span 12;
  min-height: 220px;
  padding: 32px;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  position: relative;
  overflow: hidden;
  transition:
    transform 360ms var(--ease-out-quart),
    border-color 280ms ease,
    background 320ms ease;
  display: flex;
  flex-direction: column;
}
.services-grid .service-card > * { position: relative; z-index: 1; }
.services-grid .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 20% 0%, rgba(79, 229, 226, 0.08), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms ease;
  z-index: 0;
}
.services-grid .service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 190, 188, 0.45);
  background: rgba(255, 255, 255, 0.045);
}
.services-grid .service-card:hover::after { opacity: 1; }

/* Hero bento (1°) — wide + dot pattern decorativo */
.services-grid .service-card--hero {
  background-image: radial-gradient(rgba(40, 190, 188, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
}
.services-grid .service-card--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 19, 24, 0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 720px) {
  .services-grid {
    grid-auto-rows: minmax(220px, auto);
  }
  /* row 1: 7-5 */
  .services-grid .service-card:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 360px;
  }
  .services-grid .service-card:nth-child(2) { grid-column: span 5; }
  .services-grid .service-card:nth-child(3) { grid-column: span 5; }
  /* row 3: 4-4-4 */
  .services-grid .service-card:nth-child(4) { grid-column: span 4; }
  .services-grid .service-card:nth-child(5) { grid-column: span 4; }
  .services-grid .service-card:nth-child(6) { grid-column: span 4; }
}
@media (min-width: 1100px) {
  .services-grid .service-card:nth-child(1) h3 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  }
}

/* =============================================================================
   24. READABILITY OVERRIDE — Body min 18px + auto-cosmetics su strong/em
   Tutto il body content è min 18px (1.125rem). Le parole <strong> ed <em>
   senza class esplicita ricevono automaticamente cosmetics turchese per
   guidare lo skimming. Le parole con class esplicita (.mark, .text-underline,
   .text-bright) restano come sono.
   ============================================================================= */

/* ── 1. BODY MIN 18px su tutto il contenuto principale ───────────────── */
main p,
main li,
main blockquote,
.section p,
.section li,
.section__intro,
.service-card p,
.tier-card p,
.manifesto-card p,
.fintech-card p,
.stat-card p,
.testimonial-card p,
.protocol-step p,
.protocol-step__desc,
.contact-card p,
.leadmagnet-card p,
.faq-item p,
.split-section p {
  font-size: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem); /* min 18px, max 20px */
  line-height: 1.65;
}

/* Section intro più grande (è un sottotitolo del body) */
.section__intro {
  font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.4rem) !important;
  line-height: 1.6 !important;
}

/* List item con un po' più di gap per skimming */
main ul li,
main ol li,
.section ul li,
.section ol li {
  margin-bottom: 8px;
}

/* Microcopy esplicito resta piccolo */
.micro,
.text-small,
small,
[class*="__micro"],
[class*="__label"]:not(.tier-card__name),
[class*="__copyright"],
[class*="__caption"],
.urgency-tag,
.eyebrow,
.guarantee-badge,
.partner-logo span,
.lead-form__checkbox span,
.lead-form__micro,
.newsletter-form__micro,
.site-footer__copyright,
.btn-primary--sm,
.comparison-table thead th,
.data-source,
.data-card__label,
.stat-card__label,
.leadmagnet-card__micro {
  font-size: inherit; /* mantiene il loro size esplicito già definito */
}

/* ── 2. AUTO-COSMETICS — strong/em auto-stilizzati per skimming ───── */
/* <strong> senza class esplicita → highlight turchese soft sotto la parola */
main p strong:not([class]),
main li strong:not([class]),
.section__body strong:not([class]),
.section__intro strong:not([class]),
.service-card p strong:not([class]),
.tier-card p strong:not([class]),
.manifesto-card p strong:not([class]),
.fintech-card p strong:not([class]),
.protocol-step p strong:not([class]),
.contact-card p strong:not([class]),
.leadmagnet-card p strong:not([class]) {
  color: var(--text);
  font-weight: 800;
  background-image: linear-gradient(
    transparent 65%,
    rgba(40, 190, 188, 0.28) 65%,
    rgba(40, 190, 188, 0.28) 92%,
    transparent 92%
  );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 3px;
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

/* <em> senza class → italic + colore accent bright per emphasis */
main p em:not([class]),
main li em:not([class]),
.section__body em:not([class]),
.section__intro em:not([class]),
.service-card p em:not([class]),
.tier-card p em:not([class]),
.manifesto-card p em:not([class]),
.fintech-card p em:not([class]),
.protocol-step p em:not([class]) {
  color: var(--accent-bright, #4FE5E2);
  font-style: italic;
  font-weight: 600;
}

/* <b> senza class → simile a strong ma più sobrio (solo color/weight, niente highlight) */
main p b:not([class]),
.section__body b:not([class]) {
  color: var(--silver-100);
  font-weight: 700;
}

/* <u> senza class → underline turchese vera, SOTTO il testo */
u:not([class]) {
  text-decoration: underline;
  text-decoration-color: var(--accent-bright, #4FE5E2);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  text-decoration-skip-ink: auto;
  background-image: none;
  padding: 0;
  font-weight: inherit;
}
main p u:not([class]),
.section__body u:not([class]) {
  text-decoration-thickness: 2.5px;
  text-underline-offset: 0.22em;
}
.section__heading u,
h1 u,
h2 u,
h3 u {
  text-decoration: underline;
  text-decoration-color: var(--accent-bright, #4FE5E2);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.12em;
  text-decoration-skip-ink: auto;
  background-image: none;
}

/* ── 3. CONTRAST BOOST sul body per skimming notturno ─────────────── */
body {
  letter-spacing: -0.003em; /* compensa display heaviness */
}
main p,
main li,
.section p,
.section li {
  text-wrap: pretty;
  hyphens: auto;
}

/* Mark più generosi e visibili sui big heading */
.section__heading mark,
.section__heading .mark,
.section__heading .mark-accent,
h2 mark,
h2 .mark,
h2 .mark-accent {
  background-image: linear-gradient(
    transparent 30%,
    rgba(40, 190, 188, 0.28) 30%,
    rgba(40, 190, 188, 0.28) 92%,
    transparent 92%
  ) !important;
  padding: 0 10px !important;
  border-radius: 6px !important;
  font-weight: inherit !important;
}
.section__heading .mark-accent,
h2 .mark-accent {
  background-image: linear-gradient(
    transparent 30%,
    rgba(79, 229, 226, 0.35) 30%,
    rgba(79, 229, 226, 0.35) 92%,
    transparent 92%
  ) !important;
}

/* =============================================================================
   CTA-DUO — 2 cta-card affiancate con icon + eyebrow + headline + sub + arrow
   ============================================================================= */
.cta-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 56px auto 0;
}
@media (min-width: 760px) {
  .cta-duo { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.cta-card {
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 320ms var(--ease-out-quart),
    border-color 280ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(80% 100% at 0% 50%, rgba(79, 229, 226, 0.10), transparent 70%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
  z-index: -1;
}
.cta-card:hover {
  transform: translateY(-3px);
}
.cta-card:hover::before { opacity: 1; }

/* CTA primary — fondo gradient turchese/blu, testo scuro */
.cta-card--primary {
  background: linear-gradient(135deg, var(--accent, #28BEBC) 0%, var(--accent-blue, #4FE5E2) 100%);
  color: #001318;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 14px 36px rgba(40, 190, 188, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.cta-card--primary:hover {
  box-shadow:
    0 20px 50px rgba(40, 190, 188, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* CTA secondary — glass dark, accent turchese */
.cta-card--secondary {
  background: rgba(0, 19, 24, 0.55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(40, 190, 188, 0.3);
  color: var(--text);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.cta-card--secondary:hover {
  border-color: rgba(40, 190, 188, 0.55);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(40, 190, 188, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-card__icon svg { width: 28px; height: 28px; }
.cta-card--primary .cta-card__icon {
  background: rgba(0, 19, 24, 0.18);
  color: #001318;
}
.cta-card--secondary .cta-card__icon {
  background: rgba(40, 190, 188, 0.12);
  border: 1px solid rgba(40, 190, 188, 0.32);
  color: var(--accent-bright, #4FE5E2);
}

.cta-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  text-align: left;
}
.cta-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 2px;
}
.cta-card--secondary .cta-card__eyebrow { color: var(--accent-bright, #4FE5E2); }
.cta-card__headline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.cta-card__sub {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.85;
}
.cta-card--secondary .cta-card__sub { color: var(--text-muted); }

.cta-card__arrow {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 280ms var(--ease-out-quart), background 280ms ease;
}
.cta-card__arrow svg { width: 16px; height: 16px; }
.cta-card--primary .cta-card__arrow {
  background: rgba(0, 19, 24, 0.15);
  color: #001318;
}
.cta-card--secondary .cta-card__arrow {
  background: rgba(40, 190, 188, 0.10);
  color: var(--accent-bright, #4FE5E2);
}
.cta-card:hover .cta-card__arrow { transform: translateX(4px); }
.cta-card--primary:hover .cta-card__arrow { background: rgba(0, 19, 24, 0.28); }
.cta-card--secondary:hover .cta-card__arrow {
  background: rgba(40, 190, 188, 0.22);
  color: var(--accent-bright, #4FE5E2);
}

@media (max-width: 460px) {
  .cta-card { grid-template-columns: 44px 1fr; padding: 18px 18px; gap: 14px; }
  .cta-card__icon { width: 44px; height: 44px; }
  .cta-card__icon svg { width: 22px; height: 22px; }
  .cta-card__arrow { display: none; }
}

/* =============================================================================
   25. MARKET SHIFT — comparison Prima/Oggi con divider neon
   ============================================================================= */
.market-shift {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 72px auto 0;
  max-width: 1100px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .market-shift {
    grid-template-columns: 1fr 64px 1fr;
    gap: 0;
  }
}
.market-shift__card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(0, 38, 42, 0.45) 0%, rgba(0, 19, 24, 0.3) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.market-shift__card--after {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(79, 229, 226, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(0, 38, 42, 0.55) 0%, rgba(0, 19, 24, 0.35) 100%);
  border-color: rgba(40, 190, 188, 0.32);
  box-shadow: 0 0 0 1px rgba(40, 190, 188, 0.08), 0 12px 32px rgba(0, 0, 0, 0.35);
}
.market-shift__chip {
  align-self: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(217, 229, 229, 0.06);
  border: 1px solid rgba(217, 229, 229, 0.18);
}
.market-shift__chip--accent {
  color: var(--accent-bright, #4FE5E2);
  background: rgba(79, 229, 226, 0.08);
  border-color: rgba(79, 229, 226, 0.42);
}
.market-shift__icon {
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
/* ── Bad-listing showcase: phone con annuncio amatoriale + flaw pins ─── */
.bad-listing-showcase {
  position: relative;
  margin: 48px auto;
  padding: 32px 0 16px;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px) 1fr;
  align-items: center;
  gap: 0;
}
@media (max-width: 720px) {
  .bad-listing-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0 8px;
  }
}
.bad-listing-showcase__phone {
  grid-column: 2;
  grid-row: 1;
  display: block;
  position: relative;
  z-index: 2;
  transform-origin: 50% 80%;
}
.bad-listing-showcase__phone img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 32px 64px rgba(0, 102, 255, 0.22))
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}
.bad-listing-showcase__pulse {
  position: absolute;
  inset: 8% 18% auto 18%;
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 60, 80, 0.28), transparent 70%);
  filter: blur(28px);
  animation: bad-listing-pulse 3.6s ease-in-out infinite;
}
@keyframes bad-listing-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.95; transform: scale(1.08); }
}
.bad-listing-showcase__stamp {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff5a72;
  padding: 6px 14px;
  border: 2px solid #ff5a72;
  border-radius: 4px;
  background: rgba(0, 19, 24, 0.85);
  box-shadow: 0 4px 16px rgba(255, 60, 80, 0.25);
}

/* Flaw pins — etichette laterali con linee verso il telefono */
.bad-listing-showcase__flaws {
  list-style: none;
  margin: 0;
  padding: 0;
  display: contents;
}
.bad-listing-showcase__flaw {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  background: rgba(0, 19, 24, 0.7);
  border: 1px solid rgba(255, 90, 114, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  width: max-content;
}
.bad-listing-showcase__flaw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5a72;
  box-shadow: 0 0 0 4px rgba(255, 90, 114, 0.18), 0 0 12px rgba(255, 90, 114, 0.7);
  animation: bad-listing-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes bad-listing-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 90, 114, 0.18), 0 0 12px rgba(255, 90, 114, 0.7); }
  50%      { box-shadow: 0 0 0 10px rgba(255, 90, 114, 0), 0 0 18px rgba(255, 90, 114, 0.9); }
}
.bad-listing-showcase__flaw--photo {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  margin-right: -12px;
  margin-top: -120px;
}
.bad-listing-showcase__flaw--plan {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  margin-left: -12px;
  margin-top: 30px;
}
.bad-listing-showcase__flaw--copy {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  margin-right: -12px;
  margin-top: 100px;
}
@media (max-width: 720px) {
  .bad-listing-showcase__flaw {
    margin: 0 !important;
    justify-self: center !important;
    grid-column: 1 !important;
    grid-row: auto !important;
    font-size: 0.82rem;
  }
}

.bad-listing-showcase__caption {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 18px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}
.bad-listing-showcase__caption strong {
  color: var(--accent-bright, #4FE5E2);
  font-style: normal;
}

/* ── Scroll-driven entry animation (modern browsers) ─────────────── */
@media (prefers-reduced-motion: no-preference) {
  .bad-listing-showcase__phone {
    animation: bad-listing-phone-enter linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }
  .bad-listing-showcase__flaw--photo {
    animation: bad-listing-flaw-left linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
  }
  .bad-listing-showcase__flaw--plan {
    animation: bad-listing-flaw-right linear both;
    animation-timeline: view();
    animation-range: entry 18% cover 45%;
  }
  .bad-listing-showcase__flaw--copy {
    animation: bad-listing-flaw-left linear both;
    animation-timeline: view();
    animation-range: entry 26% cover 50%;
  }
  .bad-listing-showcase__stamp {
    animation: bad-listing-stamp linear both;
    animation-timeline: view();
    animation-range: entry 30% cover 50%;
  }
}
@keyframes bad-listing-phone-enter {
  0%   { opacity: 0; transform: translateY(80px) rotate(-6deg) scale(0.85); filter: blur(8px) drop-shadow(0 32px 64px rgba(0, 102, 255, 0.22)) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45)); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1);            filter: blur(0)    drop-shadow(0 32px 64px rgba(0, 102, 255, 0.22)) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45)); }
}
@keyframes bad-listing-flaw-left {
  0%   { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes bad-listing-flaw-right {
  0%   { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes bad-listing-stamp {
  0%   { opacity: 0; transform: translateX(-50%) rotate(-3deg) scale(0.3); }
  60%  { opacity: 1; transform: translateX(-50%) rotate(-8deg) scale(1.15); }
  100% { opacity: 1; transform: translateX(-50%) rotate(-3deg) scale(1); }
}

/* ── Fallback per browser senza animation-timeline (Safari < 17.4) ── */
@supports not (animation-timeline: view()) {
  .bad-listing-showcase__phone,
  .bad-listing-showcase__stamp,
  .bad-listing-showcase__flaw {
    opacity: 0;
    transition: opacity 800ms var(--ease-out-quart), transform 800ms var(--ease-out-quart);
  }
  .bad-listing-showcase__phone { transform: translateY(40px) scale(0.9); }
  .bad-listing-showcase__flaw--photo,
  .bad-listing-showcase__flaw--copy { transform: translateX(-30px); }
  .bad-listing-showcase__flaw--plan { transform: translateX(30px); }
  .bad-listing-showcase.is-visible .bad-listing-showcase__phone,
  .bad-listing-showcase.is-visible .bad-listing-showcase__stamp,
  .bad-listing-showcase.is-visible .bad-listing-showcase__flaw {
    opacity: 1;
    transform: none;
  }
  .bad-listing-showcase.is-visible .bad-listing-showcase__flaw--photo { transition-delay: 200ms; }
  .bad-listing-showcase.is-visible .bad-listing-showcase__flaw--plan  { transition-delay: 380ms; }
  .bad-listing-showcase.is-visible .bad-listing-showcase__flaw--copy  { transition-delay: 560ms; }
}
.market-shift__icon--accent {
  color: var(--accent-bright, #4FE5E2);
  filter: drop-shadow(0 0 8px rgba(79, 229, 226, 0.4));
}
.market-shift__card h3 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 700;
  color: var(--silver-100);
  margin: 0;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
  width: 100%;
}
.market-shift__card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-body);
  text-align: center;
  width: 100%;
  text-wrap: pretty;
}
.market-shift__stat {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(217, 229, 229, 0.18);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.market-shift__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.market-shift__stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--silver-100);
}
.market-shift__stat-value--accent {
  background: linear-gradient(135deg, var(--accent-bright, #4FE5E2) 0%, var(--accent, #28BEBC) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.market-shift__divider {
  display: none;
}
@media (min-width: 900px) {
  .market-shift__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .market-shift__divider::before {
    content: "";
    position: absolute;
    top: 18%;
    bottom: 18%;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(79, 229, 226, 0.45) 30%, rgba(79, 229, 226, 0.45) 70%, transparent 100%);
    transform: translateX(-50%);
  }
  .market-shift__arrow {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 19, 24, 0.95);
    border: 1.5px solid var(--accent-bright, #4FE5E2);
    color: var(--accent-bright, #4FE5E2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 0 18px rgba(79, 229, 226, 0.4);
    animation: shift-arrow-pulse 2.6s ease-in-out infinite;
  }
}
@keyframes shift-arrow-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 18px rgba(79, 229, 226, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 24px rgba(79, 229, 226, 0.7); }
}

/* =============================================================================
   26. FINTECH QUOTE — pull-quote SaaS con virgolette grafiche e gradient border
   ============================================================================= */
.fintech-quote {
  position: relative;
  max-width: 820px;
  margin: 80px auto 0;
  padding: 48px 56px 40px;
  border-radius: 24px;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(79, 229, 226, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(0, 38, 42, 0.55) 0%, rgba(0, 19, 24, 0.4) 100%);
  border: 1px solid rgba(40, 190, 188, 0.22);
  text-align: center;
}
.fintech-quote::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(79, 229, 226, 0.5) 0%, rgba(79, 229, 226, 0.3) 50%, rgba(40, 190, 188, 0.4) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.fintech-quote__chip {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright, #4FE5E2);
  background: rgba(79, 229, 226, 0.08);
  border: 1px solid rgba(79, 229, 226, 0.42);
  border-radius: 999px;
  margin-bottom: 24px;
}
.fintech-quote__mark {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
  opacity: 0.7;
  filter: drop-shadow(0 0 12px rgba(40, 190, 188, 0.4));
}
.fintech-quote__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--silver-100);
  letter-spacing: -0.01em;
}
.fintech-quote__text em {
  font-style: italic;
  color: var(--accent-bright, #4FE5E2);
}
.fintech-quote__caption {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .fintech-quote { padding: 36px 24px 32px; }
}

/* =============================================================================
   FINTECH-QUOTE --cover — magazine cover cinematica
   L'immagine è protagonista, occupa tutta la card. Quote sovrapposta
   in basso con scrim gradient + HUD style chip + big virgolette.
   ============================================================================= */
/* Quote-flow — narrative lead-in che porta dentro la card */
.quote-flow {
  margin: 96px auto 0;
  width: min(1000px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-flow__lead {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  padding: 0 24px 28px;
  z-index: 1;
}
.quote-flow__star {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-bright, #4FE5E2);
  filter: drop-shadow(0 0 12px rgba(79, 229, 226, 0.55));
  margin-bottom: 14px;
  animation: lead-star-pulse 2.8s ease-in-out infinite;
}
@keyframes lead-star-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}
.quote-flow__hint {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-body);
  letter-spacing: 0.005em;
}
.quote-flow__hint em {
  font-style: italic;
  color: var(--accent-bright, #4FE5E2);
  font-weight: 600;
}
.quote-flow__arrow {
  display: block;
  width: 22px;
  height: 70px;
  margin: 22px auto 0;
  color: var(--accent-bright, #4FE5E2);
}
.quote-flow__arrow line {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: arrow-draw 1.4s var(--ease-out-quart) 0.4s forwards;
}
.quote-flow__arrow path {
  opacity: 0;
  animation: arrow-tip 600ms ease 1.4s forwards;
}
@keyframes arrow-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes arrow-tip {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quote-flow__arrow {
  animation: arrow-float 2.4s ease-in-out 2s infinite;
}
@keyframes arrow-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .quote-flow__arrow,
  .quote-flow__arrow line,
  .quote-flow__arrow path,
  .quote-flow__star { animation: none; opacity: 1; stroke-dashoffset: 0; transform: none; }
}

.fintech-quote--cover {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: 380px;
  isolation: isolate;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}
/* Card "shape" via pseudo — rounded + gradient + border + shadow */
.fintech-quote--cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  border-radius: 32px;
  border: 1px solid rgba(40, 190, 188, 0.32);
  background: linear-gradient(135deg, #00181d 0%, #001318 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(40, 190, 188, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Image a destra, sborda visibilmente a destra E in alto/basso */
.fintech-quote__cover-img {
  position: absolute;
  top: -28%;
  right: -6%;
  bottom: -10%;
  width: 50%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.fintech-quote__cover-img img {
  width: 100%;
  height: 100%;
  max-width: 680px;
  max-height: 1200px;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  margin-left: auto;
  filter: none;
  -webkit-mask-image: none;
          mask-image: none;
}
.fintech-quote__cover-img::before { display: none; }

/* Scrim — gradient verso il body sinistro per fondere image+text */
.fintech-quote__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 19, 24, 0.0) 0%, rgba(0, 19, 24, 0.0) 55%, rgba(0, 19, 24, 0.55) 60%, rgba(0, 19, 24, 0.95) 60.5%, transparent 60.5%),
    linear-gradient(180deg, transparent 0%, transparent 70%, rgba(0, 19, 24, 0.5) 100%);
  pointer-events: none;
  display: none; /* lo manteniamo per future variants ma su grid non serve */
}

/* Meta top — chip in alto sinistra, sopra l'immagine */
.fintech-quote__meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 36px 0;
  max-width: 55%;
}
.fintech-quote--cover .fintech-quote__chip {
  margin: 0;
  padding: 6px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0, 19, 24, 0.55);
}
/* Cinema area — quote a sinistra, sopra l'aura dell'immagine */
.fintech-quote--cover .fintech-quote__cinema {
  position: relative;
  z-index: 3;
  padding: 22px 32px 22px;
  text-align: left;
  max-width: 60%;
}
.fintech-quote--cover .fintech-quote__hud {
  position: relative;
  z-index: 3;
  padding: 0 36px 28px;
  max-width: 55%;
}
.fintech-quote__bigmark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.5;
  font-weight: 900;
  color: var(--accent-bright, #4FE5E2);
  opacity: 0.85;
  filter: drop-shadow(0 0 18px rgba(79, 229, 226, 0.45));
  margin-bottom: 4px;
  user-select: none;
}
.fintech-quote--cover .fintech-quote__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -0.015em;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}
.fintech-quote--cover .fintech-quote__text em {
  font-style: italic;
  color: var(--accent-bright, #4FE5E2);
  font-weight: 700;
}
.fintech-quote--cover .fintech-quote__caption {
  margin: 22px 0 0;
  font-size: 1.18rem;
  color: rgba(217, 229, 229, 0.85);
  letter-spacing: 0.005em;
  line-height: 1.45;
  text-align: left;
}
.fintech-quote--cover .fintech-quote__caption strong {
  color: #fff;
  font-weight: 700;
  background: none !important;
  padding: 0 !important;
}

/* HUD — REC indicator nella colonna quote in basso */
.fintech-quote__hud {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  z-index: 3;
  padding: 0 28px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  font-weight: 700;
}
.fintech-quote__hud-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6B6B;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.8);
  animation: hud-rec 1.4s ease-in-out infinite;
}
@keyframes hud-rec {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.7); }
}
.fintech-quote__hud-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-bright, #4FE5E2), transparent);
}

@media (max-width: 880px) {
  .fintech-quote--cover {
    min-height: auto;
  }
  .fintech-quote--cover .fintech-quote__cover-img {
    position: relative;
    width: 100%;
    height: 360px;
    top: auto; right: auto; bottom: auto;
  }
  .fintech-quote__cover-img img {
    max-height: 360px;
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
            mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
  }
  .fintech-quote--cover .fintech-quote__meta,
  .fintech-quote--cover .fintech-quote__cinema,
  .fintech-quote--cover .fintech-quote__hud {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .fintech-quote__scrim {
    background:
      linear-gradient(180deg, rgba(0,19,24,0.55) 0%, transparent 35%, transparent 50%, rgba(0,19,24,0.92) 100%),
      radial-gradient(60% 50% at 50% 90%, rgba(79,229,226,0.18), transparent 70%);
  }
  .fintech-quote__cinema {
    max-width: 100%;
    bottom: 64px;
    left: 22px;
    right: 22px;
  }
  .fintech-quote__meta { left: 18px; right: 18px; }
  .fintech-quote__hud { left: 22px; }
}

/* =============================================================================
   FINTECH-QUOTE --card — SaaS compact testimonial card (deprecato, mantenuto fallback)
   ============================================================================= */
.fintech-quote--card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
  max-width: 680px;
  margin: 64px auto 0;
  padding: 22px 26px 22px 22px;
  background: rgba(0, 19, 24, 0.55);
  border: 1px solid rgba(40, 190, 188, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.fintech-quote--card::before {
  /* Sostituisce il gradient-border del parent — più chirurgico */
  display: none;
}
.fintech-quote--card::after {
  /* Glow turchese subtle in alto-sinistra dietro avatar */
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(50% 60% at 30% 50%, rgba(79, 229, 226, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.fintech-quote--card > * { position: relative; z-index: 1; }

/* Avatar circolare con ring turchese */
.fintech-quote__avatar {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a2a30 0%, #0a1518 100%);
  box-shadow:
    0 0 0 2px rgba(79, 229, 226, 0.45),
    0 0 18px rgba(79, 229, 226, 0.25),
    0 0 0 4px rgba(0, 19, 24, 1);
}
.fintech-quote__avatar picture,
.fintech-quote__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%; /* sale verso il volto */
}
.fintech-quote__status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-bright, #4FE5E2);
  border: 2.5px solid #001318;
  box-shadow: 0 0 10px rgba(79, 229, 226, 0.7);
  animation: avatar-status-pulse 2.4s ease-in-out infinite;
}
@keyframes avatar-status-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.82); opacity: 0.6; }
}

/* Body — header (chip + id) + text + caption */
.fintech-quote--card .fintech-quote__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  min-width: 0;
}
.fintech-quote__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}
.fintech-quote--card .fintech-quote__chip {
  margin: 0;
  padding: 3px 9px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  border-width: 1px;
}
.fintech-quote__id {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent-bright, #4FE5E2);
  font-weight: 700;
  opacity: 0.7;
  text-transform: uppercase;
}
.fintech-quote--card .fintech-quote__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--silver-100);
  letter-spacing: -0.008em;
}
.fintech-quote--card .fintech-quote__text em {
  font-style: italic;
  color: var(--accent-bright, #4FE5E2);
  font-weight: 700;
}
.fintech-quote__open,
.fintech-quote__close {
  color: var(--accent-bright, #4FE5E2);
  opacity: 0.55;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1em;
}
.fintech-quote__open { margin-right: 1px; }
.fintech-quote__close { margin-left: 1px; }
.fintech-quote--card .fintech-quote__caption {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.005em;
  line-height: 1.5;
}
.fintech-quote--card .fintech-quote__caption strong {
  color: var(--silver-100);
  font-weight: 700;
  background: none !important;
  padding: 0 !important;
}

@media (max-width: 560px) {
  .fintech-quote--card {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 18px 18px 18px 16px;
  }
  .fintech-quote__avatar { width: 64px; height: 64px; }
  .fintech-quote__status { width: 12px; height: 12px; bottom: 0; right: 0; }
  .fintech-quote--card .fintech-quote__chip { font-size: 0.6rem; }
  .fintech-quote--card .fintech-quote__id { font-size: 0.62rem; }
}

/* =============================================================================
   27. FRACTURE CALLOUT — emergency alert sovrapposto, segnale rosso forte
   ============================================================================= */
.fracture-callout {
  position: relative;
  max-width: 760px;
  margin: -64px auto 0;
  padding: 36px 44px 32px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 60, 80, 0.10) 0%, rgba(255, 60, 80, 0.02) 100%),
    rgba(8, 14, 18, 0.92);
  border: 1.5px solid rgba(255, 60, 80, 0.55);
  text-align: center;
  z-index: 5;
  box-shadow:
    0 24px 64px rgba(255, 60, 80, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fracture-pulse 3.2s ease-in-out infinite;
}
@keyframes fracture-pulse {
  0%, 100% { box-shadow: 0 24px 64px rgba(255, 60, 80, 0.18), 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04); }
  50%      { box-shadow: 0 24px 80px rgba(255, 60, 80, 0.32), 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06); }
}

/* Hazard stripes verticali sui lati */
.fracture-callout::before,
.fracture-callout::after {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  width: 6px;
  background: repeating-linear-gradient(
    45deg,
    #ff3c50 0 6px,
    transparent 6px 12px
  );
  opacity: 0.7;
  border-radius: 3px;
}
.fracture-callout::before { left: 12px; }
.fracture-callout::after  { right: 12px; }

.fracture-callout > * { position: relative; z-index: 1; }

.fracture-callout__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #ff5a72 0%, #ff3c50 100%);
  border: 1px solid rgba(255, 90, 114, 0.7);
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow:
    0 0 0 4px rgba(255, 60, 80, 0.18),
    0 6px 18px rgba(255, 60, 80, 0.35);
  animation: fracture-tag-blink 1.6s ease-in-out infinite;
}
@keyframes fracture-tag-blink {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 60, 80, 0.18), 0 6px 18px rgba(255, 60, 80, 0.35); }
  50%      { box-shadow: 0 0 0 10px rgba(255, 60, 80, 0.05), 0 6px 24px rgba(255, 60, 80, 0.55); }
}

.fracture-callout p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.fracture-callout strong {
  color: var(--accent-bright, #4FE5E2) !important;
  background: none !important;
  padding: 0 !important;
  font-weight: 800;
}

@media (max-width: 700px) {
  .fracture-callout {
    margin-top: -32px;
    padding: 28px 28px 24px;
  }
  .fracture-callout::before,
  .fracture-callout::after { display: none; }
}


