﻿/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ============================================================
   DESIGN TOKENS — unico :root, nessun override
============================================================ */
:root {
  /* Palette */
  --ink:        #0d0d10;
  --ink-soft:   #3a3b42;
  --ink-dim:    #7a7b85;
  --white:      #ffffff;
  --ivory:      #f5f0eb;
  --ivory-dark: #ede7e0;
  --red:        #f04923;
  --red-dark:   #f04923;
  --red-light:  #f04923;

  /* Surfaces */
  --surface-dark:   #0d0d10;
  --surface-dark2:  #14141a;
  --surface-dark3:  #1c1c24;

  /* Typography */
  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  /* Borders */
  --line-dark:  rgba(255,255,255,.09);
  --line-light: rgba(13,13,16,.1);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(13,13,16,.08);
  --shadow-md: 0 12px 40px rgba(13,13,16,.13);
  --shadow-lg: 0 24px 72px rgba(13,13,16,.2);

  /* Transitions */
  --ease: cubic-bezier(.25,.8,.25,1);

  /* Spacing */
  --sp-1: .5rem;   --sp-2: 1rem;   --sp-3: 1.5rem;
  --sp-4: 2rem;    --sp-6: 3rem;   --sp-8: 4rem;

  /* Radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 6rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
h3 { font-size: 1.08rem; font-weight: 700; line-height: 1.35; }
p  { line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-2);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 26px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
section { padding: clamp(5rem, 9vw, 8rem) 0; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: all .22s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 28px rgba(240,73,35,.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 14px 40px rgba(240,73,35,.42);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.28);
  color: #fff;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}
.btn-ghost-dark {
  background: transparent;
  border: 1.5px solid var(--line-light);
  color: var(--ink);
}
.btn-ghost-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-cta-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.btn-cta-dark:hover { background: #1c1c26; transform: translateY(-2px); }
.btn-cta-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.38);
  color: #fff;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  padding: .9rem 0;
  background: rgba(13,13,16,.92);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: transform .28s ease, opacity .28s ease;
}
.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
main#top { padding-top: 84px; }
section[id] { scroll-margin-top: 96px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
}
.brand-mark {
  background: var(--red);
  color: #fff;
  padding: .28rem .6rem;
  border-radius: 5px;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .06em;
}
.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  padding: 10px 9px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 3px;
}
.nav-toggle span + span { margin-top: 6px; }
.main-nav a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
  cursor: pointer;
}
.main-nav a:hover { color: #fff; }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: .5rem 1.1rem !important;
  border-radius: var(--r-sm) !important;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; color: #fff !important; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding-top: clamp(3rem, 6vh, 5rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);    /* sotto: respiro */
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 80%;
  display: block;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  opacity: .6;
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  align-items: center;
  width: 100%;
}
.hero-left { max-width: 580px; min-width: 0; }
.hero h1 { color: #fff; margin-bottom: .65rem; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero-lead {
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  color: #fff;
  max-width: 490px;
  margin-bottom: .9rem;
}
.hero-lead strong { color: #fff; }
.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .9rem;
}
.hero-trust { display: flex; flex-wrap: wrap; gap: .35rem .6rem; }
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .77rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
}
.trust-chip svg { color: #4ade80; flex-shrink: 0; }

/* Hero KPI card */
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hero-kpi {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(24px);
  border-radius: var(--r-lg);
  padding: 1rem;
  width: 100%;
  max-width: 300px;
}
.kpi-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: livePulse 1.5s ease infinite;
}
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.kpi-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  padding: .8rem;
}
.kpi-val {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .15rem;
}
.kpi-val.accent { color: var(--red); }
.kpi-desc {
  font-size: .66rem;
  color: rgba(255,255,255,.42);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.kpi-delta {
  display: block;
  font-size: .68rem;
  color: #4ade80;
  font-weight: 700;
  margin-top: .3rem;
}

/* scroll hint — nascosto, non ruba spazio nella hero */
.scroll-hint { display: none; }

/* ============================================================
   STATS BAR  — dark
============================================================ */
.stats-section {
  background: var(--surface-dark2);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: var(--sp-3) var(--sp-2);
  border-right: 1px solid var(--line-dark);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-num b { color: var(--red); font-weight: 900; }
.stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.42);
  font-weight: 500;
}

/* ============================================================
   PROBLEMA  — ivory
============================================================ */
.problema-section {
  background: var(--ivory);
  color: var(--ink);
}
.problema-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.8rem);
  max-width: none;
  margin-bottom: var(--sp-8);
}
.problema-intro-copy {
  max-width: 680px;
}
.problema-intro h2 { color: var(--ink); margin-bottom: var(--sp-3); }
.problema-intro p  { color: var(--ink-soft); font-size: 1.04rem; }
.problema-intro-media {
  margin: 0;
  min-height: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.problema-intro-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.problema-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ivory-dark);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}
.problema-card {
  background: var(--ivory);
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.problema-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 8px 18px rgba(240,73,35,.18);
}
.problema-card h3 { font-size: .95rem; font-weight: 700; color: var(--ink); }
.problema-card p  { font-size: .87rem; color: var(--ink-soft); line-height: 1.72; }
.problema-intro p strong,
.problema-card p strong {
  color: var(--ink);
  font-weight: 700;
}

.problema-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  background: var(--ink);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  flex-wrap: wrap;
}
.problema-footer p { color: rgba(255,255,255,.78); font-size: 1rem; font-weight: 500; max-width: 560px; }
.problema-footer strong { color: #fff; }

/* ============================================================
   SERVIZI  — white
============================================================ */
.servizi-section { background: #fff; color: var(--ink); }

.section-heading { max-width: 660px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading h2 { color: var(--ink); margin-bottom: var(--sp-2); }
.section-heading p  { color: var(--ink-dim); font-size: 1rem; }

/* Dashboard strip */
.dashboard-strip {
  background: var(--surface-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.dash-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.38);
  font-weight: 600;
}
.dash-metrics { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.dash-metric { text-align: center; }
.dash-val {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.dash-val.r { color: var(--red); }
.dash-lbl { font-size: .67rem; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.dash-delta { display: block; font-size: .67rem; color: #4ade80; font-weight: 700; }

/* Service editorial list */
.service-list { border-top: 1px solid var(--line-light); }
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 180px;
  align-items: start;
  gap: 0;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--line-light);
  transition: background .2s;
}
.service-row:hover { background: #fafafa; }
.service-row:hover .svc-num { color: var(--red); }
.svc-num {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(13,13,16,.16);
  line-height: 1;
  padding-top: .2rem;
  transition: color .2s;
}
.svc-body { padding-right: var(--sp-6); }
.svc-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.svc-body p  { font-size: .89rem; color: var(--ink-dim); line-height: 1.75; }
.svc-tag {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-top: .7rem;
}
.svc-meta {
  text-align: right;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.65;
  padding-top: .2rem;
}

/* ============================================================
   VANTAGGI  — dark
============================================================ */
.vantaggi-section { background: var(--surface-dark); color: #fff; }
.vantaggi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.vantaggi-left h2 { color: #fff; margin-bottom: var(--sp-3); }
.vantaggi-left h2 em { font-style: normal; color: var(--red); }
.vantaggi-left > p { color: rgba(255,255,255,.58); font-size: .96rem; margin-bottom: var(--sp-4); }

.benefit-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.028);
  transition: border-color .2s, background .2s;
}
.benefit-list li:hover { border-color: rgba(240,73,35,.32); background: rgba(240,73,35,.04); }
.benefit-check {
  width: 21px; height: 21px; min-width: 21px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-top: .08rem;
}
.benefit-check svg { width: 10px; height: 10px; }
.benefit-list li span { font-size: .9rem; color: rgba(255,255,255,.68); line-height: 1.6; }
.benefit-list li strong { color: #fff; }

.vantaggi-right { display: flex; flex-direction: column; gap: var(--sp-3); }
.vantaggi-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
  background:
    radial-gradient(circle at 20% 15%, rgba(240,73,35,.22), transparent 46%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.08), transparent 42%),
    #080a12;
  display: grid;
  place-items: center;
  perspective: 1300px;
}
.carousel-fade {
  position: relative;
  width: min(100% - 2.4rem, 560px);
  height: clamp(280px, 39vw, 430px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  box-shadow: 0 18px 32px rgba(0,0,0,.38);
}
.carousel-fade-item {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(.75rem, 1.5vw, 1.1rem);
  opacity: 0;
  transform: scale(1.035);
  animation: fade-carousel 28s infinite;
}
.carousel-fade-item:nth-child(1) { animation-delay: 0s; }
.carousel-fade-item:nth-child(2) { animation-delay: 4s; }
.carousel-fade-item:nth-child(3) { animation-delay: 8s; }
.carousel-fade-item:nth-child(4) { animation-delay: 12s; }
.carousel-fade-item:nth-child(5) { animation-delay: 16s; }
.carousel-fade-item:nth-child(6) { animation-delay: 20s; }
.carousel-fade-item:nth-child(7) { animation-delay: 24s; }
.carousel-fade-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
  background: rgba(0,0,0,.14);
}
.vantaggi-img-wrap::after {
  content: '';
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,0,0,.52), rgba(0,0,0,0));
  filter: blur(3px);
  pointer-events: none;
}
.vantaggi-img-wrap:hover .carousel-fade-item {
  animation-play-state: paused;
}
@keyframes fade-carousel {
  0%, 10% {
    opacity: 0;
    transform: scale(1.035);
  }
  14%, 26% {
    opacity: 1;
    transform: scale(1);
  }
  30%, 100% {
    opacity: 0;
    transform: scale(.985);
  }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade-item { animation: none; opacity: 0; transform: none; }
  .carousel-fade-item:first-child { opacity: 1; }
}

.comparison-card {
  background: var(--surface-dark2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: var(--sp-3);
}
.comparison-title {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.32);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.comp-row {
  display: grid;
  grid-template-columns: 1fr 64px 80px 70px;
  gap: .4rem;
  font-size: .8rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
}
.comp-row:last-child { border-bottom: none; }
.comp-row.header {
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  padding-bottom: .8rem;
}
.comp-row.header span:not(:first-child) { text-align: center; }
.comp-feat { color: rgba(255,255,255,.55); font-size: .79rem; }
.comp-yes  { color: #4ade80; font-weight: 800; text-align: center; }
.comp-no   { color: rgba(255,255,255,.18); text-align: center; }
.comp-part {
  color: #fbbf24;
  font-size: .68rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
/* colonna header highlight */
.comp-col-spp {
  background: rgba(240,73,35,.12);
  border: 1px solid rgba(240,73,35,.25);
  border-radius: 4px;
  padding: .18rem .3rem;
  font-size: .62rem;
  font-weight: 800;
  color: var(--red);
  text-align: center;
  letter-spacing: .06em;
}

/* ============================================================
   PIANO EDITORIALE  — red
============================================================ */
.piano-section {
  position: relative;
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4.2rem) 0;
  z-index: 1;
}
.piano-shell {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-md);
  min-height: 480px;
}
.piano-section.fused {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.fused-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #c70044 0%, #cf0048 18%, #7a002d 34%, #150514 56%, #070910 100%);
}
.fused-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(240,73,35,.68) 0%, rgba(240,73,35,.54) 24%, rgba(240,73,35,.16) 48%, rgba(7,9,16,.58) 100%),
    url('assets/img/sq_lavanderia_red.avif') center top / cover no-repeat;
  opacity: .62;
  pointer-events: none;
  z-index: 0;
}
.fused-showcase .piano-section.fused,
.fused-showcase .asset-section.fused,
.fused-showcase .piano-bg { display: none; }
.fused-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  column-gap: clamp(1.6rem, 4vw, 4rem);
  row-gap: clamp(1.8rem, 4vw, 3.4rem);
  padding: clamp(2.4rem, 5vw, 4.4rem) 0 clamp(3rem, 7vw, 5rem);
  color: #fff;
}
.fused-intro-copy { align-self: center; }
.fused-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5.2vw, 4.9rem);
  line-height: .92;
  text-transform: uppercase;
  margin: 0 0 var(--sp-2);
  color: #fff;
  max-width: 12ch;
}
.fused-intro-phones {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.fused-intro-phones .piano-phones { max-width: 440px; }
.fused-content-head h3 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: .94;
  text-transform: uppercase;
  margin: 0;
  max-width: 12ch;
  color: #fff;
}
.fused-content-copy p {
  color: rgba(255,255,255,.7);
  font-size: .98rem;
  line-height: 1.75;
  margin: 0 0 var(--sp-3);
  max-width: 60ch;
}
.fused-stage .asset-grid {
  grid-column: 1 / -1;
}
.fused-stage .asset-footer {
  grid-column: 1 / -1;
  margin-top: var(--sp-1);
}
/* foto di sfondo in overlay */
.piano-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.piano-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.piano-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240,73,35,.82);
}
.piano-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
/* sinistra — testo */
.piano-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  border-left: 1px solid rgba(255,255,255,.2);
  order: 2;
}
.piano-kicker {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: var(--sp-2);
}
.piano-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  line-height: .88;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: var(--sp-3);
}
.piano-dots {
  display: flex;
  gap: .45rem;
  margin-bottom: var(--sp-3);
}
.piano-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
}
.piano-dot:nth-child(2) { background: rgba(255,255,255,.5); }
.piano-dot:nth-child(3) { background: rgba(255,255,255,.25); }
.piano-sub {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: var(--sp-4);
}
.piano-year {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.01em;
}
/* destra — griglia phone mock */
.piano-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
  order: 1;
}
.piano-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: .75rem;
  width: 100%;
  max-width: 480px;
}
.phone-mock {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2.5px solid rgba(255,255,255,.35);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  aspect-ratio: 9/16;
  background: rgba(0,0,0,.3);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.phone-mock:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
/* notch */
.phone-mock::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 5px;
  background: rgba(255,255,255,.35);
  border-radius: 99px;
  z-index: 2;
}
.phone-mock img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* phone grande — prima riga, prima colonna */
.phone-mock.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
/* overlay colore su ogni phone */
.phone-mock::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(240,73,35,.35) 100%);
  pointer-events: none;
}

@media (max-width: 860px) {
  .fused-stage { grid-template-columns: 1fr; row-gap: 1.6rem; }
  .fused-intro-phones { justify-content: flex-start; }
  .fused-intro-phones .piano-phones { max-width: 360px; margin: 0; }
  .piano-inner { grid-template-columns: 1fr; }
  .piano-left  {
    order: 1;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 2.5rem;
  }
  .piano-right { order: 2; }
  .piano-phones { grid-template-columns: repeat(3, 1fr); max-width: 360px; margin: 0 auto; }
  .phone-mock.tall { grid-row: span 1; aspect-ratio: 9/16; }
}
@media (max-width: 480px) {
  .fused-intro-phones .piano-phones { grid-template-columns: repeat(2, 1fr); gap: .5rem; max-width: 300px; }
  .fused-intro-phones .phone-mock.tall { grid-row: span 1; aspect-ratio: 9/16; }
}

/* ============================================================
   ASSET PROFESSIONALI  — dark
============================================================ */
.asset-section {
  background: var(--surface-dark);
  color: #fff;
}
.asset-section.fused {
  position: relative;
  margin-top: clamp(-120px, -11vw, -70px);
  padding-top: clamp(7rem, 12vw, 10rem);
  overflow: hidden;
  z-index: 2;
  background:
    radial-gradient(900px 280px at 50% -40px, rgba(240,73,35,.18), transparent 68%),
    linear-gradient(180deg, rgba(240,73,35,.16) 0%, rgba(240,73,35,.05) 20%, var(--surface-dark) 44%);
}
.asset-section.fused::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(120px, 14vw, 180px);
  background:
    linear-gradient(180deg, rgba(240,73,35,.28), rgba(240,73,35,.08) 46%, rgba(13,13,16,0) 100%);
  pointer-events: none;
  z-index: 0;
}
.asset-section.fused .container {
  position: relative;
  z-index: 1;
}
.asset-section.fused .asset-header {
  position: relative;
}
.fused-showcase .asset-section.fused {
  margin-top: 0;
  padding-top: clamp(1.2rem, 3vw, 2.2rem);
  background: transparent;
}
.fused-showcase .asset-section.fused::before {
  display: none;
}
.asset-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.asset-topline {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-2);
}
.asset-header-left h2 { color: #fff; margin-bottom: var(--sp-2); }
.asset-header-left h2 em { font-style: normal; color: var(--red); }
.asset-value-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(240,73,35,.12);
  border: 1px solid rgba(240,73,35,.3);
  border-radius: 99px;
  padding: .35rem 1rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0;
}
.asset-kpi-icons {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
}
.asset-kpi-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: 99px;
  padding: .34rem .68rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.asset-kpi-pill .kpi-dot {
  color: var(--red);
  font-size: .72rem;
  line-height: 1;
}
.asset-header-right {
  padding-top: clamp(2.2rem, 3vw, 2.9rem);
  padding-bottom: .25rem;
}
.asset-header-right p {
  color: rgba(255,255,255,.58);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: var(--sp-3);
}
.asset-header-right p strong { color: #fff; }
.asset-proof {
  margin-top: 1rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  display: grid;
  gap: .48rem;
}
.asset-proof-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.72);
  font-weight: 600;
  letter-spacing: .01em;
}
.asset-proof-dot {
  color: var(--red);
  font-size: .8rem;
  line-height: 1;
}
.asset-stats {
  display: flex;
  gap: var(--sp-4);
}
.asset-stat-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}
.asset-stat-num b { color: var(--red); }
.asset-stat-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Griglia immagini asimmetrica */
.asset-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: 280px 240px;
  gap: .6rem;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.asset-img {
  position: relative;
  overflow: hidden;
  background: var(--surface-dark2);
}
.asset-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.asset-img:hover img { transform: scale(1.06); }
/* immagine grande — span 2 righe */
.asset-img.main {
  grid-row: span 2;
}
/* overlay scuro leggero su ogni immagine */
.asset-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,13,16,.55) 100%);
  pointer-events: none;
  transition: opacity .3s;
}
.asset-img:hover::after { opacity: .5; }
/* etichetta angolo */
.asset-img-label {
  position: absolute;
  bottom: .85rem;
  left: .85rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  z-index: 1;
}

/* footer copy sotto la griglia */
.asset-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line-dark);
  flex-wrap: wrap;
}
.asset-footer p {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  max-width: 560px;
  line-height: 1.7;
}
.asset-footer strong { color: rgba(255,255,255,.78); }

@media (max-width: 900px) {
  .asset-header { grid-template-columns: 1fr; gap: var(--sp-3); }
  .asset-header-right { padding-top: 0; }
  .asset-kpi-icons { width: 100%; }
  .asset-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 200px 200px;
  }
  .asset-img.main { grid-row: span 1; grid-column: span 2; }
  .asset-section.fused {
    margin-top: clamp(-72px, -9vw, -40px);
    padding-top: clamp(5.3rem, 10vw, 7rem);
  }
  .fused-showcase .asset-section.fused {
    margin-top: 0;
    padding-top: clamp(1rem, 4vw, 2rem);
  }
}
@media (max-width: 560px) {
  .asset-topline { align-items: flex-start; }
  .asset-proof { padding: .75rem .8rem; }
  .asset-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 160px 160px;
  }
  .asset-stats { gap: var(--sp-3); }
  .piano-section.fused { padding-bottom: clamp(2rem, 6vw, 3rem); }
  .asset-section.fused {
    margin-top: -34px;
    padding-top: 4.2rem;
  }
  .fused-showcase .asset-section.fused {
    margin-top: 0;
    padding-top: 1rem;
  }
}

/* ============================================================
   TESTIMONIANZE  — ivory
============================================================ */
.testimonianze-section { background: var(--ivory); color: var(--ink); overflow: hidden; }
.testi-heading { max-width: 540px; margin-bottom: var(--sp-6); }
.testi-heading h2 { color: var(--ink); margin-bottom: var(--sp-2); }
.testi-heading p  { color: var(--ink-soft); }

.testi-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}
.testi-track {
  display: flex;
  gap: var(--sp-3);
  animation: tScroll 52s linear infinite;
  width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes tScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.testi-card {
  background: #fff;
  border: 1px solid var(--ivory-dark);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  width: 296px; min-width: 296px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--red); font-size: .85rem; letter-spacing: .1em; margin-bottom: .7rem; }
.testi-text { font-size: .87rem; color: var(--ink-soft); line-height: 1.8; font-style: italic; margin-bottom: var(--sp-2); }
.testi-author { display: flex; align-items: center; gap: .7rem; }
.author-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: .82rem; font-weight: 700; color: var(--ink); }
.author-role { font-size: .72rem; color: var(--ink-dim); }

/* ============================================================
   PREZZI  — white
============================================================ */
.prezzi-section { background: #fff; color: var(--ink); }
.price-step { margin-bottom: var(--sp-6); }
.price-step-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red);
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--line-light);
}
.price-cards { display: grid; gap: var(--sp-2); }
.price-cards-2 { grid-template-columns: 1fr 1fr; }
.price-cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card {
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-3);
  display: flex; flex-direction: column; gap: .45rem;
  transition: box-shadow .22s, transform .22s;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card.featured { border-color: rgba(240,73,35,.38); background: #fff6f8; }
.price-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 99px;
  width: fit-content;
  margin-bottom: .2rem;
}
.price-lbl { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-dim); }
.price-amt { font-family: var(--ff-display); font-size: 2.9rem; font-weight: 900; color: var(--red); line-height: 1; }
.price-period { font-size: .8rem; color: var(--ink-dim); }
.price-desc { font-size: .87rem; color: var(--ink-soft); line-height: 1.75; flex: 1; }
.price-note { font-size: .74rem; font-weight: 700; color: #4ade80; margin-top: .2rem; }
.price-note.muted { color: var(--ink-dim); }
.price-compare-wrap {
  margin-top: var(--sp-4);
  overflow-x: auto;
}
.price-compare {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.price-compare thead th {
  text-align: left;
  padding: .7rem 1.35rem;
  border-bottom: 3px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .7rem;
  color: #6f6f73;
  font-weight: 700;
}
.price-compare thead th span {
  display: block;
  margin-top: .22rem;
  font-weight: 500;
  color: #9b9ba0;
}
.price-compare thead th.ondemand { color: var(--red); }
.price-compare tbody td {
  padding: 1rem 1.35rem;
  border-bottom: 1px solid #ececef;
  font-size: 1.05rem;
  color: var(--ink);
}
.price-compare tbody tr:nth-child(even) td { background: #f4f4f6; }
.price-compare tbody td strong {
  font-size: 2rem;
  font-family: var(--ff-display);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}
.price-compare tbody td.ondemand strong { color: var(--red); }
.price-compare tbody td span {
  margin-left: .1rem;
  color: #9b9ba0;
}
@media (max-width: 760px) {
  .price-compare-wrap {
    margin-top: var(--sp-3);
    overflow-x: visible;
  }
  .price-compare {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }
  .price-compare thead th,
  .price-compare tbody td {
    white-space: nowrap;
    padding: .72rem .5rem;
  }
  .price-compare thead th {
    font-size: .56rem;
    letter-spacing: .07em;
  }
  .price-compare thead th span {
    margin-top: .12rem;
    font-size: .82em;
  }
  .price-compare tbody td {
    font-size: .72rem;
  }
  .price-compare tbody td strong {
    font-size: clamp(1.04rem, 4.2vw, 1.22rem);
  }
  .price-compare tbody td span {
    font-size: .74em;
    margin-left: .08rem;
  }
}

.risk-block {
  margin-top: var(--sp-4);
  background: var(--surface-dark);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  display: flex; align-items: flex-start; gap: var(--sp-2);
}
.risk-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .05rem; color: #fff; font-weight: 900; line-height: 1; }
.risk-text { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.75; }
.risk-text strong { color: #fff; }

/* ============================================================
   FAQ  — dark
============================================================ */
.faq-section { background: var(--surface-dark2); color: #fff; }
.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.faq-sidebar h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); }
.faq-sidebar p { color: rgba(255,255,255,.48); font-size: .9rem; margin-top: var(--sp-2); }
.faq-list { display: flex; flex-direction: column; gap: .65rem; }
.faq-item {
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: rgba(255,255,255,.018);
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(240,73,35,.28); }
.faq-item.open  { border-color: rgba(240,73,35,.38); }
.faq-q {
  width: 100%; background: none; border: none;
  color: #fff;
  padding: 1.1rem var(--sp-3);
  text-align: left;
  font-family: var(--ff-body);
  font-size: .9rem; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2);
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 21px; height: 21px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 300;
  color: var(--red);
  transition: transform .3s, background .2s, border-color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); color: #fff; border-color: var(--red); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: .88rem;
  color: rgba(255,255,255,.52);
  line-height: 1.8;
  padding: 0 var(--sp-3);
}
.faq-item.open .faq-a { max-height: 260px; padding: 0 var(--sp-3) 1.25rem; }

/* ============================================================
   CTA FINALE  — red
============================================================ */
.cta-section {
  background: var(--red);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 8% 50%, rgba(255,255,255,.07), transparent 50%),
    radial-gradient(ellipse at 88% 15%, rgba(0,0,0,.12), transparent 50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 740px; }
.cta-inner .eyebrow { color: #fff; }
.cta-inner .eyebrow::before { background: #fff; }
.cta-inner h2 { color: #fff; margin-bottom: var(--sp-3); font-size: clamp(2.8rem, 6vw, 6rem); }
.cta-inner > p { color: #fff; font-size: 1.04rem; max-width: 500px; margin-bottom: var(--sp-4); }
.cta-optin-form { margin-bottom: var(--sp-3); max-width: 620px; }
.cta-optin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .7rem;
}
.cta-optin-input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(0,0,0,.18);
  color: #fff;
  border-radius: 10px;
  padding: .85rem .95rem;
  font: inherit;
}
.cta-optin-input::placeholder { color: rgba(255,255,255,.72); }
.cta-optin-input:focus {
  outline: none;
  border-color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.28);
}
.cta-optin-consent {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin: .8rem 0 .95rem;
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  line-height: 1.5;
}
.cta-optin-consent input { margin-top: .15rem; }
.cta-optin-consent a { color: #fff; font-weight: 700; text-decoration: underline; }
.cta-optin-submit { min-width: 240px; }
.cta-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.cta-chips { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: var(--sp-4); }
.cta-chips .trust-chip { color: #fff; font-weight: 600; }
.cta-chip {
  font-size: .74rem; font-weight: 600;
  color: rgba(255,255,255,.62);
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.17);
  padding: .33rem .85rem;
  border-radius: 99px;
}



/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #080810;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: clamp(3rem,6vw,5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-5);
  padding-bottom: clamp(2rem,4vw,3.5rem);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col-brand .brand-mark {
  font-size: 1.6rem;
  letter-spacing: -.03em;
}
.footer-tagline {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin-top: .4rem;
  line-height: 1.5;
  max-width: 260px;
}
.footer-desc {
  margin-top: 1.25rem;
  font-size: .84rem;
  color: rgba(255,255,255,.38);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: .65rem;
  margin-top: 1.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social a:hover {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}
.footer-col-title {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.28);
  margin-bottom: 1.1rem;
}
.footer-col-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-col-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-col-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-bottom: .9rem;
}
.footer-contact-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.25);
}
.footer-contact-val {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-val:hover { color: #fff; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  padding: .45rem .9rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 99px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
}
.footer-badge span { color: var(--red); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: 1.5rem;
}
.footer-legal {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
}
.footer-legal a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.65); }
.footer-policy-links {
  display: flex;
  gap: 1.25rem;
}
.footer-policy-links a {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
  text-decoration: none;
  transition: color .2s;
}
.footer-policy-links a:hover { color: rgba(255,255,255,.55); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero            { min-height: 100dvh; align-items: flex-end; padding-top: 5rem; padding-bottom: 3rem; }
  .hero-grid       { grid-template-columns: 1fr; }
  .hero-right      { display: none; }
  .vantaggi-grid   { grid-template-columns: 1fr; }
  .vantaggi-right  { order: -1; }
  .faq-layout      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .brand span:last-child { display: inline; }
  .brand {
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    font-size: clamp(.66rem, 3.2vw, .82rem);
  }
  .brand-mark {
    flex-shrink: 0;
  }
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin: 0 var(--gutter);
    padding: 1rem;
    background: rgba(13,13,16,.98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(0,0,0,.35);
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
  }
  .header-inner { position: relative; }
  .site-header.nav-open .main-nav { display: flex; }
  .main-nav a {
    display: block;
    padding: .68rem .62rem;
    border-radius: 9px;
  }
  .main-nav a:hover { background: rgba(255,255,255,.08); }
  .main-nav .nav-cta { margin-top: .25rem; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--line-dark); border-top: 1px solid var(--line-dark); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .problema-cards { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 52px 1fr; }
  .svc-meta { display: none; }
  .price-cards-2 { grid-template-columns: 1fr; }
  .price-cards-3 { grid-template-columns: 1fr 1fr; }
  .dashboard-strip { justify-content: flex-start; }
  .cta-optin-grid { grid-template-columns: 1fr; }
  .cta-optin-submit { width: 100%; }
  .problema-intro {
    grid-template-columns: 1fr;
  }
  .problema-intro-media {
    min-height: 220px;
  }
}
@media (max-width: 520px) {
  section { padding: 4rem 0; }
  h1 { font-size: clamp(2.5rem, 9vw, 3rem); line-height: 1.02; max-width: 100%; }
  h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .hero {
    min-height: calc(100dvh - 58px);
    align-items: flex-end;
    padding-top: .6rem;
    padding-bottom: 1.2rem;
  }
  .hero-content { padding-top: 0; }
  .hero-media img { display: none; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(8,10,16,.34) 0%, rgba(8,10,16,.58) 52%, rgba(8,10,16,.88) 100%);
  }
  .hero-left { width: 100%; max-width: 100%; min-width: 0; overflow: visible; }
  .hero h1, .hero-lead { max-width: 100%; overflow-wrap: normal; }
  .hero h1 {
    max-width: 13.8ch;
    margin-bottom: .6rem;
    text-wrap: balance;
  }
  .hero-lead {
    max-width: 32ch;
    font-size: clamp(1.02rem, 4.1vw, 1.16rem);
    line-height: 1.34;
    text-wrap: pretty;
  }
  .hero .eyebrow { display: block; position: relative; padding-left: 2.2rem; font-size: .64rem; line-height: 1.45; max-width: 100%; }
  .hero .eyebrow::before { position: absolute; left: 0; top: .58em; }
  .hero-trust { display: grid; gap: .5rem; }
  .hero-trust .trust-chip { width: 100%; color: rgba(255,255,255,.72); font-size: .76rem; }
  .hero .container { padding-inline: 1.25rem; }
  .vantaggi-grid,
  .vantaggi-left,
  .vantaggi-right { min-width: 0; width: 100%; }
  .vantaggi-left h2 { font-size: clamp(1.9rem, 8.8vw, 2.45rem); }
  .benefit-list li { width: 100%; }
  .comparison-card { padding: 1rem; overflow: hidden; }
  .comparison-title { font-size: .58rem; letter-spacing: .1em; }
  .comp-row { grid-template-columns: minmax(0,1fr) 32px 48px 38px; gap: .2rem; font-size: .68rem; }
  .comp-row.header { font-size: .52rem; letter-spacing: .05em; }
  .comp-feat { min-width: 0; font-size: .68rem; line-height: 1.35; }
  .comp-yes,
  .comp-no { font-size: .72rem; }
  .comp-part { font-size: .52rem; line-height: 1.2; }
  .piano-inner,
  .piano-left,
  .piano-right { min-width: 0; width: 100%; }
  .piano-left,
  .piano-right { padding: 1.35rem; }
  .piano-title { font-size: clamp(2rem, 12vw, 2.65rem); line-height: .95; }
  .piano-year { font-size: clamp(2rem, 11vw, 2.6rem); }
  .piano-phones { max-width: 100%; gap: .45rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .problema-cards { grid-template-columns: 1fr; }
  .price-cards-3 { grid-template-columns: 1fr; }
  .problema-footer { flex-direction: column; align-items: flex-start; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { justify-content: center; width: 100%; }

}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* Copy update additions */
.knowhow-section {
  background: var(--white);
  color: var(--ink);
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}
.knowhow-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: clamp(360px, 42vw, 520px);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.knowhow-photo {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(115deg, rgba(7,10,16,.18) 0%, rgba(7,10,16,.1) 52%, rgba(7,10,16,.2) 100%),
    url('../img/team.avif') center/cover no-repeat;
}
.knowhow-copy {
  padding: clamp(1.8rem, 3.4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.knowhow-panel h2 { color: var(--ink); }
.knowhow-panel p { color: var(--ink-soft); font-size: 1.05rem; }
.knowhow-copy h2 { margin-bottom: 1.15rem; }
.knowhow-copy p + p { margin-top: .7rem; }
.knowhow-copy strong { color: var(--ink); font-weight: 700; }
/* WOW layout - Sistema completo SPP */
.spp-system {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 380px at 5% -5%, rgba(240,73,35,.2), transparent 60%),
    radial-gradient(700px 320px at 100% 10%, rgba(13,13,16,.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}
.spp-system::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.7), rgba(255,255,255,.84));
  pointer-events: none;
}
.spp-system > .container {
  position: relative;
  z-index: 1;
}
.spp-system-head {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.spp-system-head h2 {
  max-width: 18ch;
  margin-inline: auto;
}
.spp-system-head p {
  max-width: 66ch;
  margin: .8rem auto 0;
  font-size: 1.05rem;
}
.spp-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: stretch;
}
.spp-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(13,13,16,.09);
  background: #fff;
  box-shadow: 0 18px 45px rgba(13,13,16,.12);
  padding: clamp(1.2rem, 2.3vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-height: 100%;
}
.meta-card {
  border-color: rgba(89,103,242,.34);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(8,102,255,.2), transparent 58%),
    radial-gradient(90% 70% at 100% 15%, rgba(169,84,255,.2), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
  box-shadow:
    0 24px 54px rgba(41,61,179,.2),
    inset 0 1px 0 rgba(255,255,255,.85);
}
.meta-card::after {
  content: '';
  position: absolute;
  right: -32px;
  top: -32px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,122,255,.42), rgba(108,122,255,0));
  pointer-events: none;
}
.google-card {
  border-color: rgba(251,188,4,.34);
  background:
    linear-gradient(90deg, rgba(66,133,244,.08), rgba(234,67,53,.08), rgba(251,188,4,.09), rgba(52,168,83,.08)),
    linear-gradient(180deg, #ffffff 0%, #fcfcff 100%);
  box-shadow:
    0 24px 54px rgba(120,120,120,.15),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.google-card::after {
  content: '';
  position: absolute;
  inset: auto 1.1rem 1rem 1.1rem;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg,#4285F4 0 24%,#EA4335 24% 49%,#FBBC04 49% 74%,#34A853 74% 100%);
  opacity: .75;
  pointer-events: none;
}
.meta-card .spp-title { color: #1e2a74; }
.google-card .spp-title { color: #1f2636; }
.meta-card .spp-note { color: #5967f2; border-top-color: rgba(89,103,242,.26); }
.google-card .spp-note { color: #2f6f3f; border-top-color: rgba(52,168,83,.28); }
.meta-card .spp-list li {
  border-color: rgba(89,103,242,.2);
  background: rgba(241,244,255,.95);
}
.google-card .spp-list li {
  border-color: rgba(251,188,4,.22);
  background: rgba(255,252,240,.95);
}
.spp-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, var(--red), #ff4f7f);
}
.spp-env {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  margin-top: .15rem;
  margin-bottom: .2rem;
}
.spp-env-label {
  margin-left: .25rem;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7e859b;
}
.spp-env.meta .spp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0866ff, #6b7dff);
  box-shadow: 0 0 0 3px rgba(8,102,255,.14);
}
.spp-env.meta .spp-dot:nth-child(2) { background: linear-gradient(135deg, #6b7dff, #9b6bff); }
.spp-env.meta .spp-dot:nth-child(3) { background: linear-gradient(135deg, #9b6bff, #d66bff); }
.spp-env.google .spp-chip {
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .5rem;
  border-radius: 999px;
  color: #1b2238;
  border: 1px solid rgba(13,13,16,.12);
  background: #fff;
}
.spp-env.google .spp-chip:nth-child(1) { box-shadow: inset 0 0 0 2px rgba(66,133,244,.18); }
.spp-env.google .spp-chip:nth-child(2) { box-shadow: inset 0 0 0 2px rgba(251,188,4,.2); }
.spp-env.google .spp-chip:nth-child(3) { box-shadow: inset 0 0 0 2px rgba(52,168,83,.2); }
.spp-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.1vw, 2.5rem);
  line-height: .98;
  text-transform: uppercase;
  color: var(--ink);
}
.spp-sub {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.7;
}
.spp-list {
  list-style: none;
  display: grid;
  gap: .5rem;
  margin-top: .35rem;
}
.spp-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .5rem .55rem;
  border-radius: 10px;
  border: 1px solid rgba(13,13,16,.08);
  background: #fafbff;
  color: #232736;
  font-size: .94rem;
  line-height: 1.45;
}
.spp-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-top: .45em;
  flex-shrink: 0;
}
.spp-note {
  margin-top: auto;
  font-size: .8rem;
  color: #6f7487;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 700;
  padding-top: .65rem;
  border-top: 1px dashed rgba(13,13,16,.12);
}
@media (max-width: 900px) {
  .spp-system-grid { grid-template-columns: 1fr; }
  .spp-system-head { text-align: left; }
  .spp-system-head h2, .spp-system-head p { margin-inline: 0; }
}
/* Grafica personalizzata - carosello 3D fluttuante */
.creative-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 420px at 8% -8%, rgba(240,73,35,.22), transparent 58%),
    radial-gradient(760px 360px at 95% 20%, rgba(13,13,16,.13), transparent 58%),
    linear-gradient(180deg, #0f121d 0%, #131a2b 100%);
  color: #fff;
}
.creative-wrap {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(1.2rem, 3.6vw, 2.8rem);
  align-items: center;
}
.creative-copy h2 {
  color: #fff;
  max-width: 15ch;
  margin-bottom: .85rem;
}
.creative-copy p {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 58ch;
}
.creative-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}
.creative-badges span {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  border-radius: 99px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .34rem .72rem;
}
.mock3d-scene {
  --card-w: clamp(220px, 26vw, 320px);
  --card-h: clamp(240px, 30vw, 340px);
  position: relative;
  width: 100%;
  min-height: clamp(370px, 54vw, 530px);
  perspective: 1700px;
  transform-style: preserve-3d;
  overflow: hidden;
  animation: mock3d-float 6s ease-in-out infinite;
}
.mock3d-slider {
  position: relative;
  width: 100%;
  min-height: inherit;
}
.mock3d-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.mock3d-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--card-w);
  height: var(--card-h);
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .45s ease, filter .45s ease;
  pointer-events: auto;
  outline: none;
}
.mock3d-card {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 0;
  box-shadow: 0 26px 56px rgba(0,0,0,.38);
  background: transparent;
  transition: transform .36s cubic-bezier(.2,.8,.2,1), box-shadow .36s ease, border-color .28s ease, filter .28s ease, opacity .28s ease;
  transform-origin: center center;
}
.mock3d-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: object-fit .25s ease, transform .35s ease;
}
.mock3d-item.is-active .mock3d-card img,
.mock3d-item:focus .mock3d-card img,
.mock3d-item:focus-visible .mock3d-card img {
  object-fit: cover;
  background: transparent;
}
.mock3d-scene.is-hovering .mock3d-item:not(.is-active) .mock3d-card {
  opacity: .62;
  filter: saturate(.82) brightness(.88);
}
.mock3d-item.is-active .mock3d-card {
  transform: scale(1.08) translateZ(0);
  box-shadow: 0 34px 72px rgba(0,0,0,.5);
  border-color: transparent;
  opacity: 1;
  filter: none;
}
.mock3d-item:not(.is-active) .mock3d-card {
  opacity: .56;
  filter: blur(1.6px) saturate(.85);
}
.mock3d-item.pos-0 {
  z-index: 8;
  transform: translate(-50%, -50%) translateX(0) translateZ(140px) rotateY(0deg) scale(1);
  opacity: 1;
  filter: none;
}
.mock3d-item.pos-1 {
  z-index: 7;
  transform: translate(-50%, -50%) translateX(clamp(165px, 18vw, 250px)) translateZ(35px) rotateY(-20deg) scale(.93);
  opacity: .94;
}
.mock3d-item.pos-2 {
  z-index: 6;
  transform: translate(-50%, -50%) translateX(clamp(290px, 30vw, 420px)) translateZ(-70px) rotateY(-30deg) scale(.84);
  opacity: .55;
  filter: saturate(.7);
}
.mock3d-item.pos-3 {
  z-index: 5;
  transform: translate(-50%, -50%) translateX(clamp(380px, 40vw, 520px)) translateZ(-180px) rotateY(-38deg) scale(.74);
  opacity: .2;
  filter: blur(.4px) saturate(.6);
}
.mock3d-item.pos--1 {
  z-index: 7;
  transform: translate(-50%, -50%) translateX(clamp(-165px, -18vw, -250px)) translateZ(35px) rotateY(20deg) scale(.93);
  opacity: .94;
}
.mock3d-item.pos--2 {
  z-index: 6;
  transform: translate(-50%, -50%) translateX(clamp(-290px, -30vw, -420px)) translateZ(-70px) rotateY(30deg) scale(.84);
  opacity: .55;
  filter: saturate(.7);
}
.mock3d-item.pos--3 {
  z-index: 5;
  transform: translate(-50%, -50%) translateX(clamp(-380px, -40vw, -520px)) translateZ(-180px) rotateY(38deg) scale(.74);
  opacity: .2;
  filter: blur(.4px) saturate(.6);
}
.mock3d-item.pos-out {
  z-index: 1;
  transform: translate(-50%, -50%) translateZ(-260px) scale(.58);
  opacity: 0;
  pointer-events: none;
}
.mock3d-controls {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 12;
}
.mock3d-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(9,13,22,.58);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.mock3d-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.5);
  background: rgba(240,73,35,.42);
}
@keyframes mock3d-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 980px) {
  .creative-wrap { grid-template-columns: 1fr; }
  .mock3d-scene { min-height: 440px; }
}
@media (max-width: 620px) {
  .mock3d-scene {
    --card-w: clamp(180px, 62vw, 250px);
    --card-h: clamp(180px, 62vw, 250px);
    min-height: 390px;
  }
  .mock3d-card { border-radius: 12px; }
  .mock3d-item.pos-2,
  .mock3d-item.pos--2,
  .mock3d-item.pos-3,
  .mock3d-item.pos--3 {
    opacity: 0;
    pointer-events: none;
  }
}
.report-collage {
  position: relative;
  min-height: 360px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  max-width: 920px;
}
.report-shot {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(13,13,16,.1);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 1.15rem;
  overflow: hidden;
}
.report-main {
  left: 50%;
  top: 0;
  width: min(580px, 72%);
  min-height: 300px;
  transform: translateX(-50%) rotate(-1deg);
  z-index: 3;
}
.report-side-a {
  left: 0;
  top: 62px;
  width: 290px;
  min-height: 220px;
  transform: rotate(-7deg);
  z-index: 2;
}
.report-side-b {
  right: 0;
  top: 72px;
  width: 280px;
  min-height: 220px;
  transform: rotate(6deg);
  z-index: 2;
}
.report-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(13,13,16,.09);
  color: var(--ink-dim);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.report-topline strong { color: var(--red); }
.report-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin: 1.1rem 0;
}
.report-kpi-row div {
  border: 1px solid rgba(13,13,16,.08);
  border-radius: 10px;
  padding: .9rem;
  background: #fafafa;
}
.report-kpi-row strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--ink);
}
.report-kpi-row span { display: block; color: var(--ink-dim); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }
.report-bars { display: grid; gap: .75rem; margin-top: 1.4rem; }
.report-bars span {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  box-shadow: 0 8px 22px rgba(240,73,35,.18);
}
.report-map-grid {
  height: 140px;
  margin-top: 1rem;
  border-radius: 10px;
  background:
    radial-gradient(circle at 52% 48%, rgba(240,73,35,.28) 0 14px, transparent 15px),
    linear-gradient(rgba(13,13,16,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,13,16,.08) 1px, transparent 1px),
    #f7f7f8;
  background-size: auto, 32px 32px, 32px 32px, auto;
}
.report-pie {
  width: 132px;
  height: 132px;
  margin: 1.15rem auto 0;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 58%, #0d0d10 58% 78%, #e7e7ea 78% 100%);
  box-shadow: inset 0 0 0 24px #fff, var(--shadow-sm);
}
.report-clear-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid rgba(13,13,16,.06);
  border-bottom: 1px solid rgba(13,13,16,.06);
}
.report-clear-section > .report-bg-mock {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  filter: saturate(1.02);
}
.report-clear-section > .report-bg-mock .report-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(.9) contrast(.92);
  opacity: 1;
  transform: none;
  transform-origin: center center;
}
.report-clear-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(241,241,243,.82) 0%, rgba(241,241,243,.7) 34%, rgba(241,241,243,.42) 56%, rgba(241,241,243,.12) 100%);
  z-index: 1;
  pointer-events: none;
}
.report-clear-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  width: 520px;
  height: 520px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(180,188,210,.24) 0%, rgba(180,188,210,.1) 36%, rgba(180,188,210,0) 72%);
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
  animation: none;
  opacity: .28;
}
.report-bg-mock::after {
  content: "";
  position: absolute;
  inset: -2%;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(120% 85% at 50% 50%, transparent 52%, rgba(241,241,243,.30) 78%, rgba(241,241,243,.52) 100%);
  filter: blur(12px);
}
.report-clear-wrap {
  position: relative;
  z-index: 2;
  min-height: 520px;
  max-height: 600px;
  display: flex;
  align-items: center;
}
.report-clear-copy {
  position: relative;
  z-index: 4;
  max-width: 48ch;
  padding-left: 0;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.report-clear-copy h2 {
  max-width: 11ch;
  margin-bottom: .85rem;
  position: relative;
  z-index: 3;
}
.report-clear-copy p {
  color: var(--ink-soft);
  line-height: 1.58;
  font-size: .96rem;
  max-width: 43ch;
  position: relative;
  z-index: 3;
}
.report-clear-media {
  display: none;
  width: 100%;
  position: relative;
  z-index: 3;
}
.report-clear-media img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(18, 24, 38, .08);
  box-shadow: 0 18px 42px rgba(22, 30, 46, .18);
}
@keyframes reportAura {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: .74; }
  50% { transform: translateY(-50%) scale(1.08); opacity: 1; }
}
@keyframes reportBundleFloat {
  0%, 100% { transform: rotateX(1deg) translateY(0); }
  50% { transform: rotateX(1deg) translateY(-10px); }
}
.report-clear-list { display: none; }
.report-bg-mock { display: block; }
.report-bg-shell {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: none;
}
.report-laptop {
  position: absolute;
  right: 1%;
  top: 55%;
  width: min(590px, 97%);
  transform: translateY(-50%) rotateY(-1deg) rotateX(.7deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 22px 30px rgba(65,74,98,.2));
}
.report-laptop::before {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  bottom: -24px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(76,89,122,.22), rgba(76,89,122,0) 72%);
  transform: translateZ(-40px);
  pointer-events: none;
}
.report-laptop::after {
  content: "";
  position: absolute;
  right: 9%;
  top: -8px;
  width: 28%;
  height: 58%;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(255,255,255,.2), rgba(255,255,255,0) 52%);
  opacity: .28;
  transform: rotate(6deg) translateZ(40px);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: none;
}
.report-laptop-screen {
  position: relative;
  height: 312px;
  border-radius: 12px 12px 8px 8px;
  border: 1px solid rgba(24,27,34,.86);
  background: linear-gradient(180deg, #2c313c 0%, #161920 100%);
  box-shadow: 0 12px 22px rgba(16,20,30,.28), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
  transform: translateZ(26px);
}
.report-laptop-bezel {
  position: absolute;
  inset: 8px 8px 6px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0a0c10 0%, #151922 100%);
  border: 1px solid rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  z-index: 1;
  pointer-events: none;
}
.report-laptop-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 35%, rgba(255,255,255,.08) 100%);
  pointer-events: none;
  z-index: 3;
}
.report-laptop-screen::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, rgba(160,172,199,.8), rgba(76,85,104,.65) 45%, rgba(20,24,33,.9) 100%);
  z-index: 4;
}
.report-scroll {
  position: absolute;
  inset: 18px 18px 16px;
  border-radius: 3px;
  background: #f5f7fb;
  overflow: hidden;
  z-index: 2;
}
.report-scroll-inner {
  position: absolute;
  inset: 0;
  padding: .65rem .65rem 1rem;
  display: grid;
  gap: .5rem;
  animation: reportScrollY 18s linear infinite;
}
.report-row {
  background: #fff;
  border: 1px solid #dee4f0;
  border-radius: 6px;
  min-height: 66px;
  padding: .45rem;
  box-shadow: 0 4px 10px rgba(20,27,47,.05);
}
.report-row.slim { min-height: 44px; }
.report-row h6 {
  margin: 0 0 .38rem;
  color: #7180a4;
  font-size: .44rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 800;
}
.report-mini-bars {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: .28rem;
  align-items: end;
  height: 36px;
}
.report-mini-bars span {
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #4f6fe8, #3b53cc);
}
.report-mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .35rem;
}
.report-mini-kpis span {
  display: block;
  height: 35px;
  border-radius: 6px;
  border: 1px solid #d4dced;
  background: #f7f9ff;
  position: relative;
  overflow: hidden;
}
.report-mini-kpis span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e31f45 0 38%, #d8e0f3 38% 100%);
}
.report-mini-kpis span:nth-child(2)::after { background: linear-gradient(90deg, #4f6fe8 0 62%, #d8e0f3 62% 100%); }
.report-mini-kpis span:nth-child(3)::after { background: linear-gradient(90deg, #2bb266 0 48%, #d8e0f3 48% 100%); }
.report-laptop-base {
  position: relative;
  width: 106%;
  margin-left: -3%;
  height: 16px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #f6f7fb 0%, #d5dbea 60%, #c0c8dc 100%);
  border: 1px solid rgba(136,149,177,.4);
  box-shadow: 0 8px 18px rgba(31,42,68,.16);
  transform: translateZ(2px);
}
.report-laptop-keyboard {
  width: 100%;
  height: 18px;
  margin-top: 1px;
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(118,130,156,.34);
  background:
    repeating-linear-gradient(90deg, rgba(104,118,145,.16) 0 9px, rgba(104,118,145,.07) 9px 14px),
    repeating-linear-gradient(0deg, rgba(104,118,145,.08) 0 6px, rgba(104,118,145,.01) 6px 10px),
    linear-gradient(180deg, #d7deec 0%, #bcc7dc 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48);
  transform: translateZ(0);
}
.report-laptop-trackpad {
  width: 120px;
  height: 8px;
  margin: 4px auto 0;
  border-radius: 999px;
  background: rgba(98,112,142,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
.report-laptop-base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: rgba(98,112,142,.36);
}
.report-phone {
  position: absolute;
  right: -18px;
  bottom: -6px;
  width: 150px;
  height: 300px;
  border-radius: 24px;
  background: linear-gradient(180deg, #1c212b 0%, #0e1118 100%);
  border: 1px solid rgba(21,24,31,.95);
  box-shadow: 0 18px 32px rgba(20,26,40,.36), inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateZ(50px);
  overflow: hidden;
  z-index: 6;
}
.report-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 54px;
  height: 9px;
  border-radius: 999px;
  background: #0a0c11;
  border: 1px solid rgba(255,255,255,.06);
  z-index: 3;
}
.report-phone-screen {
  position: absolute;
  inset: 14px 8px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #21314c 0%, #1a2338 100%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.report-phone-scroll {
  position: absolute;
  inset: 0;
  padding: .7rem .58rem;
  display: grid;
  gap: .5rem;
  animation: reportPhoneScroll 17s linear infinite;
}
.report-phone-card {
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(10,14,22,.45);
  min-height: 56px;
  padding: .45rem;
}
.report-phone-card h6 {
  margin: 0 0 .28rem;
  color: rgba(219,230,255,.72);
  font-size: .42rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.report-phone-bars {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: end;
  gap: .2rem;
  height: 28px;
}
.report-phone-bars span {
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #84d5ff, #4fa8e8);
}
@keyframes reportPhoneScroll {
  0%, 16% { transform: translateY(0); }
  35% { transform: translateY(-24%); }
  58% { transform: translateY(-44%); }
  80% { transform: translateY(-60%); }
  100% { transform: translateY(-72%); }
}
@keyframes laptopLightSweep {
  0%, 100% { transform: rotate(6deg) translateX(0) translateZ(40px); opacity: .28; }
  50% { transform: rotate(3deg) translateX(-20px) translateZ(40px); opacity: .5; }
}
@keyframes reportScrollY {
  0%, 18% { transform: translateY(0); }
  36% { transform: translateY(-20%); }
  54% { transform: translateY(-34%); }
  72% { transform: translateY(-48%); }
  100% { transform: translateY(-58%); }
}
.report-anon {
  position: relative;
  display: inline-block;
  color: rgba(58,72,104,.3);
  filter: blur(1.8px);
  user-select: none;
  pointer-events: none;
}
.report-anon::after {
  content: "";
  position: absolute;
  inset: -2px -5px;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, rgba(67,78,108,.09) 0 10px, rgba(67,78,108,.16) 10px 20px);
  mix-blend-mode: multiply;
}
.report-anon-line {
  height: 10px;
  width: 118px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(66,76,105,.15), rgba(66,76,105,.28), rgba(66,76,105,.15));
  filter: blur(.5px);
  margin-left: auto;
}

@media (max-width: 760px) {
  .hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../video/hero bk.avif') center 28% / cover no-repeat;
    opacity: .52;
    z-index: 1;
    pointer-events: none;
    transform-origin: center;
    animation: heroMobileFloat 12s ease-in-out infinite alternate;
  }
  .hero-media img {
    position: relative;
    z-index: 0;
  }
  .hero-media::after {
    z-index: 2;
    background: linear-gradient(to top, rgba(13,13,16,.58) 0%, rgba(13,13,16,.22) 100%);
    opacity: .6;
  }

  .knowhow-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .knowhow-photo {
    min-height: 240px;
  }
  .knowhow-copy {
    padding: 1.3rem;
  }
  .report-collage { min-height: auto; display: grid; gap: 1rem; }
  .report-shot,
  .report-main,
  .report-side-a,
  .report-side-b {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    transform: none;
  }
  .report-kpi-row { grid-template-columns: 1fr; }
  .report-clear-wrap {
    min-height: auto;
    padding-block: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .report-clear-section::before {
    background: linear-gradient(90deg, rgba(242,243,246,.28) 0%, rgba(242,243,246,.2) 52%, rgba(242,243,246,.12) 100%);
  }
  .report-clear-section::after {
    display: block;
    right: -130px;
    width: 300px;
    height: 420px;
    opacity: .24;
    filter: blur(13px);
  }
  .report-clear-copy {
    backdrop-filter: none;
    padding-left: 0;
    max-width: 100%;
  }
  .report-clear-section > .report-bg-mock {
    display: none;
    position: absolute;
    inset: 0;
    opacity: .3;
    filter: saturate(.86);
    pointer-events: none;
  }
  .report-clear-section > .report-bg-mock .report-bg-image {
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    transform: none;
  }
  .report-laptop-screen {
    height: 210px;
  }
  .report-laptop-base {
    height: 18px;
  }
  .report-phone {
    width: 96px;
    height: 198px;
    right: -10px;
    bottom: -2px;
  }
  .report-phone-screen {
    inset: 12px 6px 8px;
  }
  .report-clear-copy p,
  .report-clear-copy li {
    font-size: 1rem;
    line-height: 1.55;
  }
  .report-clear-copy h2 {
    max-width: 10ch;
  }
  .report-clear-media {
    display: block;
    text-align: center;
  }
  .report-clear-media picture {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .report-clear-media img {
    width: 118%;
    max-width: none;
    transform: translateX(0);
    margin-inline: auto;
    display: block;
    object-position: center center;
    border: 0;
    box-shadow: none;
    mix-blend-mode: normal;
  }
  .report-clear-list {
    gap: .45rem;
  }
  .problema-footer {
    align-items: stretch;
  }
  .problema-footer .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

@keyframes heroMobileFloat {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  50% { transform: scale(1.06) translate3d(-1.2%, -1%, 0); }
  100% { transform: scale(1.04) translate3d(1%, 1%, 0); }
}

/* =========================
   Mobile hardening (no overflow + usable layout)
========================== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img, video {
  max-width: 100%;
}
.no-wrap { white-space: nowrap; }

/* Lightweight scroll reveal (performance-friendly) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .55s ease-out var(--reveal-delay, 0ms),
    transform .55s ease-out var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Keep wow sections readable without horizontal spill */
  .creative-wrap,
  .asset-header {
    gap: 1rem;
  }
  .asset-header-left h2 {
    font-size: clamp(2rem, 12vw, 2.7rem);
  }
  .asset-kpi-icons {
    gap: .35rem;
  }
  .asset-kpi-pill {
    font-size: .63rem;
    padding: .32rem .58rem;
  }
  .asset-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .asset-footer .btn {
    width: 100%;
    justify-content: center;
  }

  /* Price section: stack split cards and avoid cramped side-by-side text */
  .price-card[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .price-card[style*="grid-template-columns:1fr 1fr"] > div[style*="border-left"] {
    border-left: 0 !important;
    border-top: 1px solid #eee;
    padding-left: 0 !important;
    padding-top: 1rem;
    margin-top: .4rem;
  }

  /* Better horizontal table usability on small screens */
  .price-step div[style*="overflow-x:auto"] {
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ececf1;
    border-radius: 10px;
  }

  /* FAQ spacing tuned for thumb reading */
  .faq-q {
    font-size: .92rem;
    line-height: 1.45;
  }
  .faq-a {
    font-size: .86rem;
  }
}


