/* ==========================================================================
   NO PROBLEM — Design System
   Reputation network: gli ospiti corretti vengono premiati.
   Palette: ink + verde "good guest" + oro per le stelle.
   ========================================================================== */

:root {
  /* Colori */
  --ink:        #0d1117;
  --ink-2:      #161b22;
  --ink-3:      #1f2630;
  --slate:      #5b6675;
  --slate-2:    #8a94a3;
  --line:       #e6e9ee;
  --line-2:     #d7dce3;
  --surface:    #ffffff;
  --surface-2:  #f6f8fa;
  --surface-3:  #eef1f5;

  --green:      #15b86a;
  --green-600:  #0fa15c;
  --green-700:  #0c8a4f;
  --green-soft: #e6f8ef;
  --gold:       #f5b301;
  --gold-soft:  #fff5dc;
  --red:        #e5484d;
  --red-soft:   #fdecec;
  --amber:      #f08c2e;

  /* Tipografia */
  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spazi / raggi / ombre */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(13,17,23,.06), 0 1px 3px rgba(13,17,23,.05);
  --shadow:    0 8px 24px rgba(13,17,23,.08);
  --shadow-lg: 0 24px 60px rgba(13,17,23,.14);
  --maxw: 1180px;
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 .4em; }
p { margin: 0 0 1em; }

/* Layout ----------------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--slate); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-soft);
  padding: 7px 14px; border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow--gold { color: #9a6f00; background: var(--gold-soft); }
.eyebrow--ink  { color: #fff; background: var(--ink); }

h1.display { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2.title   { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.muted { color: var(--slate); }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(21,184,106,.32); }
.btn--primary:hover { background: var(--green-600); box-shadow: 0 10px 26px rgba(21,184,106,.4); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: var(--surface-2); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--surface-2); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Navbar ----------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; color: var(--ink); }
.brand__mark { width: 34px; height: 34px; flex: 0 0 34px; }
.brand small { display:block; font-family: var(--font-body); font-weight:500; font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color: var(--slate-2); margin-top:-2px; white-space:nowrap; }
.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__links a { font-weight: 600; font-size: .92rem; color: var(--ink-2); transition: color .15s; white-space: nowrap; }
.nav__links a:hover { color: var(--green-700); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.np-mobile-auth { display: none; }
.nav__burger { display: none; background: none; border: 0; padding: 8px; }
.nav__burger span { display:block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 80px 0 70px; background:
    radial-gradient(900px 500px at 85% -10%, rgba(21,184,106,.10), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, rgba(245,179,1,.08), transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 span.hl { color: var(--green-700); }
.hero__stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.hero__stat b { font-family: var(--font-display); font-size: 1.7rem; display: block; line-height: 1; }
.hero__stat span { font-size: .85rem; color: var(--slate); }
.hero__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* Card "reputation" preview nell'hero */
.repcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 26px; transform: rotate(-1.2deg);
}
.repcard__top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.repcard__av { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg,#2dd285,#0c8a4f); color:#fff; display:grid; place-items:center; font-family:var(--font-display); font-weight:700; font-size:1.2rem; }
.repcard__name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.repcard__sub { font-size: .8rem; color: var(--slate); }
.repcard__score { margin-left:auto; text-align:center; }
.repcard__score b { font-family:var(--font-display); font-size:1.7rem; line-height:1; color: var(--green-700); }
.repcard__bar { height: 8px; border-radius: 100px; background: var(--surface-3); overflow: hidden; margin: 4px 0 14px; }
.repcard__bar i { display:block; height: 100%; background: linear-gradient(90deg,var(--green),var(--green-600)); border-radius:100px; }
.repcard__row { display:flex; justify-content:space-between; font-size:.85rem; padding:6px 0; border-top:1px dashed var(--line); }
.repcard__chip { display:inline-flex; align-items:center; gap:6px; background:var(--green-soft); color:var(--green-700); font-weight:600; font-size:.78rem; padding:6px 12px; border-radius:100px; margin-top:14px; }

/* Stars ------------------------------------------------------------------ */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.stars--lg svg { width: 26px; height: 26px; }
.stars .off { color: var(--line-2); }

/* Cards generiche -------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--green-soft); color: var(--green-700); margin-bottom: 18px; }
.card__ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--slate); margin-bottom: 0; }
.card--ink { background: var(--ink); color: #fff; border-color: var(--ink-3); }
.card--ink p { color: var(--slate-2); }
.card--ink .card__ic { background: rgba(255,255,255,.08); color: #fff; }

/* Step "come funziona" --------------------------------------------------- */
.steps { counter-reset: step; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 22px; align-items: start; padding: 26px 0; border-top: 1px solid var(--line); }
.step__n { counter-increment: step; width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.step__n::before { content: counter(step); }
.step h3 { margin-bottom: 4px; }
.step p { margin: 0; color: var(--slate); }

/* Split feature ---------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split__media { order: -1; }
.feat-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; }
.feat-list .tick { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--green-soft); color: var(--green-700); display: grid; place-items: center; margin-top: 2px; }
.feat-list .tick svg { width: 14px; height: 14px; }
.feat-list strong { display: block; }
.feat-list span { color: var(--slate); font-size: .95rem; }

/* Banner / CTA ----------------------------------------------------------- */
.cta-band { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 60px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% -20%, rgba(21,184,106,.28), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--slate-2); max-width: 56ch; margin-left:auto; margin-right:auto; }

/* Comparison Airbnb vs No Problem ---------------------------------------- */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vs__col { border-radius: var(--r-lg); padding: 32px; border: 1px solid var(--line); }
.vs__col--bad { background: var(--red-soft); border-color: #f7caca; }
.vs__col--good { background: var(--green-soft); border-color: #bdeccf; }
.vs__col h3 { display:flex; align-items:center; gap:10px; }
.vs__col ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.vs__col li { display:flex; gap:10px; align-items:flex-start; font-size:.97rem; }
.vs__tag { font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:5px 11px; border-radius:100px; }
.vs__col--bad .vs__tag { background:#f7caca; color:#a3262a; }
.vs__col--good .vs__tag { background:#bdeccf; color:#0c6e41; }

/* Legal / trust strip ---------------------------------------------------- */
.trust { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; }
.trust__grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.trust__item b { display:block; font-family:var(--font-display); margin-bottom:4px; }
.trust__item span { font-size:.88rem; color:var(--slate); }

/* FAQ -------------------------------------------------------------------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--r); padding: 4px 22px; margin-bottom: 14px; background: var(--surface); transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--green-700); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--slate); padding-bottom: 18px; margin: 0; }

/* Footer ----------------------------------------------------------------- */
.footer { background: var(--ink); color: var(--slate-2); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-body); margin-bottom: 16px; }
.footer a { display: block; color: var(--slate-2); padding: 5px 0; font-size: .93rem; }
.footer a:hover { color: #fff; }
.footer .brand { color: #fff; }
.footer .brand small { color: var(--slate-2); }
.footer__bottom { border-top: 1px solid var(--ink-3); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; }
.footer__disc { max-width: 70ch; font-size:.8rem; color:#6b7585; margin-top:16px; }

/* Pill / badge ----------------------------------------------------------- */
.badge { display:inline-flex; align-items:center; gap:7px; font-weight:600; font-size:.8rem; padding:6px 13px; border-radius:100px; }
.badge--green { background: var(--green-soft); color: var(--green-700); }
.badge--gold  { background: var(--gold-soft); color: #9a6f00; }
.badge--red   { background: var(--red-soft); color: #b4282c; }
.badge--ink   { background: var(--surface-3); color: var(--ink); }

/* Loghi integrazioni (wordmark grigi stile "si integra con") ------------- */
.logo-chip { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; color: var(--slate); opacity: .55; transition: opacity .2s; }
.logo-chip:hover { opacity: .9; }
.claim3 .card__ic { margin: 0 auto 14px; }

/* Page hero (interne) ---------------------------------------------------- */
.phero { padding: 64px 0 40px; background: radial-gradient(700px 360px at 80% -20%, rgba(21,184,106,.08), transparent 60%); border-bottom:1px solid var(--line); }
.phero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }

/* Demo app --------------------------------------------------------------- */
.demo-shell { display:grid; grid-template-columns: 260px 1fr; gap: 0; border:1px solid var(--line); border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow); background:#fff; min-height: 620px; }
.demo-side { background: var(--ink); color:#fff; padding: 22px; }
.demo-side .brand { color:#fff; margin-bottom: 26px; }
.demo-side .brand small { color: var(--slate-2); }
.demo-tab { display:flex; align-items:center; gap:12px; width:100%; text-align:left; background:none; border:0; color:var(--slate-2); font-weight:600; font-size:.95rem; padding:13px 14px; border-radius:12px; transition:.15s; margin-bottom:4px; }
.demo-tab svg { width:19px; height:19px; }
.demo-tab:hover { color:#fff; background: rgba(255,255,255,.06); }
.demo-tab.active { color:#fff; background: var(--green); }
.demo-main { padding: 30px 32px; background: var(--surface-2); overflow-y: auto; }
.demo-panel { display:none; animation: fade .3s ease; }
.demo-panel.active { display:block; }
@keyframes fade { from { opacity:0; transform: translateY(6px);} to {opacity:1; transform:none;} }

.dpanel-head { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:22px; flex-wrap:wrap; }
.dpanel-head h2 { margin:0; font-size:1.5rem; }

.guest-list { display:grid; gap:12px; }
.guest-row { display:flex; align-items:center; gap:16px; background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:14px 18px; transition:.15s; }
.guest-row:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.guest-av { width:44px; height:44px; flex:0 0 44px; border-radius:50%; display:grid; place-items:center; color:#fff; font-family:var(--font-display); font-weight:700; }
.guest-meta { flex:1; min-width:0; }
.guest-meta b { font-family:var(--font-display); }
.guest-meta .sub { font-size:.82rem; color:var(--slate); }
.guest-score { text-align:right; }
.guest-score .num { font-family:var(--font-display); font-weight:700; font-size:1.15rem; }

.field { margin-bottom:18px; }
.field label { display:block; font-weight:600; font-size:.9rem; margin-bottom:7px; }
.field input, .field select, .field textarea { width:100%; padding:12px 14px; border:1.5px solid var(--line-2); border-radius:12px; font-family:inherit; font-size:.97rem; background:#fff; transition:border-color .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--green); }
.field .hint { font-size:.8rem; color:var(--slate); margin-top:6px; }

.rate-row { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0; border-bottom:1px solid var(--line); }
.rate-row:last-child { border-bottom:0; }
.rate-row .lbl b { display:block; }
.rate-row .lbl span { font-size:.82rem; color:var(--slate); }
.toggle-yn { display:inline-flex; border:1.5px solid var(--line-2); border-radius:100px; overflow:hidden; }
.toggle-yn button { background:#fff; border:0; padding:9px 18px; font-weight:600; font-size:.88rem; color:var(--slate); }
.toggle-yn button.on-yes { background:var(--green); color:#fff; }
.toggle-yn button.on-no  { background:var(--red); color:#fff; }

.consent-box { background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:18px; display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; }
.consent-box input { margin-top:4px; width:18px; height:18px; flex:0 0 18px; accent-color: var(--green); }
.consent-box label { font-size:.9rem; color:var(--ink-2); }
.consent-box .req { color: var(--red); }

.code-pill { display:inline-flex; align-items:center; gap:12px; background: var(--ink); color:#fff; font-family:var(--font-display); font-weight:700; font-size:1.4rem; letter-spacing:.08em; padding:16px 28px; border-radius:14px; }
.code-pill .copy { font-size:.72rem; font-weight:600; letter-spacing:0; background:var(--green); padding:6px 12px; border-radius:100px; border:0; color:#fff; }

.notice { background: var(--gold-soft); border:1px solid #f2dca0; border-radius:var(--r); padding:16px 18px; font-size:.9rem; color:#7a5a00; display:flex; gap:12px; align-items:flex-start; }
.notice svg { flex:0 0 20px; width:20px; height:20px; margin-top:1px; }

/* Incident / prove danno (lato struttura) ------------------------------- */
.incident { background: var(--red-soft); border: 1px solid #f3cccc; border-radius: var(--r); padding: 16px; margin: 6px 0 2px; }
.incident__head { display:flex; align-items:center; gap:8px; font-family:var(--font-display); font-weight:600; font-size:.92rem; color:#b4282c; margin-bottom:12px; }
.incident__head svg { width:18px; height:18px; }
.dmg-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:10px; margin-bottom:12px; }
.dmg-tile { background:#fff; border:1px solid #f0d2d2; border-radius:10px; padding:14px 12px; text-align:center; }
.dmg-tile svg { width:30px; height:30px; color:#c0626a; margin-bottom:6px; }
.dmg-tile span { display:block; font-size:.82rem; font-weight:600; color:var(--ink-2); }
.dmg-tile em { display:block; font-size:.68rem; color:var(--slate-2); font-style:normal; letter-spacing:.04em; text-transform:uppercase; margin-top:3px; }
.incident__foot { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.incident__note { font-size:.8rem; color:#7a4a4a; margin:12px 0 0; }

/* Recensioni pubbliche (Albo Good Guest) -------------------------------- */
.pub-review { border-top:1px dashed var(--line); padding:10px 0 2px; }
.pub-review p { font-size:.92rem; color:var(--ink-2); margin:6px 0 0; font-style:italic; }
.albo-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.albo-card { background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:24px; transition:.2s; }
.albo-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.albo-card__top { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.albo-card .av { width:48px; height:48px; border-radius:50%; display:grid; place-items:center; color:#fff; font-family:var(--font-display); font-weight:700; }
@media (max-width: 900px) { .albo-grid { grid-template-columns:1fr; } .dmg-grid { grid-template-columns:1fr; } }

/* Reveal animation ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .brand span { white-space: nowrap; }
  .brand small { white-space: nowrap; }
  .nav__burger { display: block; }
  .nav.open .nav__links { display:flex; position:absolute; top:70px; left:0; right:0; flex-direction:column; gap:0; background:#fff; border-bottom:1px solid var(--line); padding:10px 24px 20px; box-shadow: var(--shadow); }
  .nav.open .nav__links a { padding:14px 0; border-bottom:1px solid var(--line); width:100%; }
  .nav.open .np-mobile-auth { display:block; }
  .nav.open .np-mobile-auth.np-mobile-reg { color: var(--green-700); font-weight:700; }
  .hero__grid, .split, .split--rev .split__media { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .grid-3, .grid-4, .trust__grid, .vs, .footer__grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .repcard { transform: none; max-width: 420px; margin: 0 auto; }
  .section { padding: 64px 0; }
  .cta-band { padding: 40px 24px; }
  .demo-shell { grid-template-columns: 1fr; }
  .demo-side { display:flex; flex-wrap:wrap; gap:6px; }
  .demo-side .brand { width:100%; }
  .demo-tab { width:auto; flex:1; justify-content:center; }
  .footer__grid { gap: 28px; }
}
@media (max-width: 520px) {
  .demo-main { padding: 22px 18px; }
  .hero__stats { gap: 22px; }
}

/* ==========================================================================
   V2 — Refinement layer (2026-07): estetica più professionale e moderna.
   Strato di override: non rimuove nulla, eleva tokens e componenti esistenti.
   ========================================================================== */
:root {
  --green:      #0ea36f;
  --green-600:  #0c8f61;
  --green-700:  #0a7a53;
  --gold:       #eeb200;
  --line:       #e8ebef;
  --shadow-sm:  0 1px 2px rgba(13,17,23,.05), 0 2px 6px rgba(13,17,23,.04);
  --shadow:     0 10px 30px rgba(13,17,23,.09);
  --shadow-lg:  0 30px 70px rgba(13,17,23,.16);
  --r-lg: 26px;
  --r-xl: 34px;
}
body { background: #fdfefe; }
h1, h2, h3 { letter-spacing: -.028em; }
h1.display { font-weight: 800; }

/* Nav: vetro più pulito + bordo luce */
.nav { background: rgba(255,255,255,.86); box-shadow: 0 1px 0 rgba(13,17,23,.04); }
.brand__mark { border-radius: 9px; box-shadow: 0 3px 10px rgba(14,163,111,.28); }

/* Bottoni: gradiente + profondità */
.btn { font-weight: 700; }
.btn--primary { background: linear-gradient(135deg, #14b87c, #0a8a5c); box-shadow: 0 8px 22px rgba(14,163,111,.35), inset 0 1px 0 rgba(255,255,255,.22); }
.btn--primary:hover { background: linear-gradient(135deg, #17c384, #0c9765); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(14,163,111,.42), inset 0 1px 0 rgba(255,255,255,.22); }
.btn--dark { box-shadow: 0 8px 20px rgba(13,17,23,.22); }
.btn--dark:hover { transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,.7); backdrop-filter: blur(6px); }
.btn:focus-visible { outline: 3px solid rgba(14,163,111,.4); outline-offset: 2px; }

/* Hero: trama a punti + gradienti più ricchi */
.hero {
  background:
    radial-gradient(1000px 560px at 88% -12%, rgba(14,163,111,.13), transparent 62%),
    radial-gradient(760px 420px at -4% 112%, rgba(238,178,0,.09), transparent 62%),
    radial-gradient(rgba(13,17,23,.045) 1px, transparent 1px);
  background-size: auto, auto, 26px 26px;
}
.eyebrow { box-shadow: inset 0 0 0 1px rgba(10,122,83,.14); }

/* Card: superfici più morbide, hover con alone verde */
.card { border-radius: var(--r-lg); }
.card:hover { border-color: rgba(14,163,111,.35); box-shadow: 0 14px 38px rgba(13,17,23,.10), 0 0 0 4px rgba(14,163,111,.06); }
.card__ic { border-radius: 16px; box-shadow: inset 0 0 0 1px rgba(10,122,83,.12); }
.repcard { border-radius: var(--r-lg); box-shadow: 0 34px 80px rgba(13,17,23,.18), 0 2px 0 rgba(255,255,255,.6) inset; border-color: rgba(13,17,23,.07); }
.repcard__chip { box-shadow: inset 0 0 0 1px rgba(10,122,83,.16); }

/* VS: bordi e profondità */
.vs__col { border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.trust { border-radius: var(--r-lg); background: linear-gradient(180deg, #f8fafb, #f2f5f7); }

/* CTA band: mesh gradient */
.cta-band { border-radius: var(--r-xl); background: radial-gradient(700px 380px at 85% -30%, rgba(14,163,111,.4), transparent 60%), radial-gradient(560px 300px at 0% 130%, rgba(238,178,0,.16), transparent 55%), var(--ink); box-shadow: 0 30px 70px rgba(13,17,23,.28); }
.cta-band::before { display: none; }

/* Footer: gradiente in testa */
.footer { border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--green), var(--gold)) 1; }

/* Demo shell */
.demo-shell { border-radius: var(--r-lg); box-shadow: 0 24px 60px rgba(13,17,23,.12); }
.demo-tab.active { box-shadow: 0 6px 16px rgba(14,163,111,.35); }

/* --- NUOVI COMPONENTI V2 --------------------------------------------- */
/* Fascia numeri live della rete */
.stats-band { background: var(--ink); border-radius: var(--r-xl); padding: 44px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; overflow: hidden; box-shadow: 0 26px 60px rgba(13,17,23,.25); }
.stats-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(520px 260px at 12% -30%, rgba(14,163,111,.35), transparent 60%), radial-gradient(420px 220px at 95% 130%, rgba(238,178,0,.14), transparent 55%); }
.stats-band > div { position: relative; text-align: center; }
.stats-band b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1; }
.stats-band span { display: block; margin-top: 8px; color: var(--slate-2); font-size: .88rem; font-weight: 600; }
.stats-band .up { color: #2dd285; }

/* Citazioni / voci dalla rete */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px 26px; position: relative; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote-card::before { content: '\201C'; position: absolute; top: 6px; left: 20px; font-family: var(--font-display); font-size: 4.6rem; line-height: 1; color: rgba(14,163,111,.18); font-weight: 800; }
.quote-card p { position: relative; font-size: 1.02rem; color: var(--ink-2); margin: 14px 0 18px; }
.quote-card .who { display: flex; align-items: center; gap: 11px; }
.quote-card .who .av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
.quote-card .who b { display: block; font-family: var(--font-display); font-size: .95rem; }
.quote-card .who span { font-size: .8rem; color: var(--slate); }

@media (max-width: 900px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); padding: 34px 22px; }
  .quote-grid { grid-template-columns: 1fr; }
}
