/* =========================================================
   SICUREZZA TORINO - Landing Page
   Design: trust + urgency + local feel
   ========================================================= */

:root {
  --c-bg: #ffffff;
  --c-bg-alt: #f7f8fa;
  --c-ink: #0e1726;
  --c-ink-soft: #4a5568;
  --c-mute: #718096;
  --c-border: #e2e8f0;
  --c-primary: #0a4d8c;        /* blu fiducia / sicurezza */
  --c-primary-dark: #073a6b;
  --c-accent: #ff6b1a;         /* arancio CTA - alta conversione */
  --c-accent-dark: #e55a0d;
  --c-whatsapp: #25d366;
  --c-whatsapp-dark: #1ebe57;
  --c-success: #16a34a;
  --c-warn-bg: #fff4ea;
  
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(14,23,38,.08);
  --shadow-md: 0 8px 20px rgba(14,23,38,.10);
  --shadow-lg: 0 20px 50px rgba(14,23,38,.15);
  
  --container: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.02em;
}
.logo strong { font-weight: 900; }
.logo:hover { text-decoration: none; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-ink);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 14px;
  border: 2px solid var(--c-primary);
  border-radius: 999px;
  transition: all .2s;
}
.header-phone:hover { background: var(--c-primary); color: #fff; text-decoration: none; }
.header-phone svg { color: var(--c-primary); transition: color .2s; }
.header-phone:hover svg { color: #fff; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius);
  transition: all .2s;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary {
  background: var(--c-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--c-accent-dark); }
.btn-whatsapp {
  background: var(--c-whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--c-whatsapp-dark); }
.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-outline:hover { background: var(--c-primary); color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-block { width: 100%; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #eaf2fb 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10,77,140,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--c-primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--c-success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22,163,74,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22,163,74,.2); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}
.hero h1 {
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--c-ink);
  margin-bottom: 20px;
}
.hero h1 .hl {
  color: var(--c-primary);
  display: inline-block;
}
.hero-sub {
  font-size: 18px;
  color: var(--c-ink-soft);
  margin-bottom: 26px;
  max-width: 540px;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 30px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--c-ink);
}
.check-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--c-success);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.cta-row-center { justify-content: center; }
.trust-mini {
  font-size: 14px;
  color: var(--c-ink-soft);
}
.trust-mini strong { color: var(--c-ink); }

/* HERO FORM */
.hero-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--c-ink);
}
.form-sub {
  font-size: 14px;
  color: var(--c-ink-soft);
  margin-top: -8px;
  margin-bottom: 4px;
}
.lead-form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-soft);
  gap: 6px;
}
.lead-form input,
.lead-form select {
  font-family: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 2px solid var(--c-border);
  border-radius: 10px;
  background: #fff;
  color: var(--c-ink);
  transition: border-color .15s;
  font-weight: 500;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--c-primary);
}
.privacy-check {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--c-ink-soft) !important;
  line-height: 1.45;
}
.privacy-check input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.form-trust {
  font-size: 12px;
  color: var(--c-mute);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 30px 10px;
}
.success-ico {
  width: 64px;
  height: 64px;
  background: var(--c-success);
  color: #fff;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--c-ink-soft); margin-bottom: 20px; }

/* ===== SECTIONS GENERAL ===== */
section { padding: 70px 0; }
.section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.025em;
  text-align: center;
  margin-bottom: 16px;
  color: var(--c-ink);
}
.section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--c-ink-soft);
  max-width: 680px;
  margin: 0 auto 50px;
}

/* ===== WHY ===== */
.why { background: var(--c-bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-ico {
  font-size: 36px;
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-ink);
}
.why-card p {
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.55;
}

/* ===== COMPARE ===== */
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.compare-col {
  padding: 30px;
  border-radius: var(--radius-lg);
}
.compare-them {
  background: #fef2f2;
  border: 2px solid #fecaca;
}
.compare-us {
  background: #ecfdf5;
  border: 2px solid #86efac;
}
.compare-col h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 18px;
}
.compare-them h3 { color: #b91c1c; }
.compare-us h3 { color: #15803d; }
.compare-col ul {
  list-style: none;
}
.compare-col li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--c-ink);
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--c-primary);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(10,77,140,.3);
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--c-ink-soft);
}

/* ===== PROTECT ===== */
.protect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.protect-item {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
}
.protect-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.protect-ico {
  font-size: 36px;
  margin-bottom: 10px;
}
.protect-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--c-ink);
}
.protect-item p {
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.45;
}
@media (max-width: 700px) {
  .protect-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== REVIEWS ===== */
.reviews { background: var(--c-bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.stars {
  font-size: 17px;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 15px;
  color: var(--c-ink);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-size: 14px;
  color: var(--c-ink-soft);
}
.reviews-note {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: var(--c-mute);
}

/* ===== FAQ ===== */
.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
  color: var(--c-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--c-primary);
  font-weight: 300;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.final-cta p {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 32px;
}
.final-cta .btn-outline {
  color: #fff;
  border-color: #fff;
}
.final-cta .btn-outline:hover {
  background: #fff;
  color: var(--c-primary);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0e1726;
  color: #cbd5e0;
  padding: 50px 0 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.logo-footer { color: #fff; margin-bottom: 14px; }
.footer-bio {
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
  color: #a0aec0;
}
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.site-footer p { font-size: 14px; margin-bottom: 8px; }
.site-footer a { color: #cbd5e0; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #718096;
}

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--c-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,.5);
  z-index: 99;
  transition: transform .2s;
  animation: floatPulse 2s infinite;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  text-decoration: none;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,.5); }
  50% { box-shadow: 0 8px 30px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 40px 0 50px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .header-phone span { display: none; }
  .header-phone { padding: 8px; }
  .why-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .compare-table {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  section { padding: 50px 0; }
  .section-sub { margin-bottom: 36px; }
  .hero-form { padding: 24px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .cta-row-center .btn { max-width: 360px; margin: 0 auto; }
  .float-whatsapp {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .how-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 16px; }
}

/* =========================================================
   V3 - NUOVE SEZIONI: hero con bg, trust-bar, targets,
   devices, recensioni Google, banner Leonardo
   ========================================================= */

/* HERO CON BACKGROUND IMMAGINE */
.hero-with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.hero-with-bg .badge-hero {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}
.hero-with-bg h1 { color: #fff; }
.hero-with-bg .hl { color: #ff8a3d; }
.hero-with-bg .hero-sub { color: rgba(255,255,255,0.92); }
.hero-with-bg .hero-bullets li { color: rgba(255,255,255,0.95); }
.hero-with-bg .hero-bullets .check-ico {
  background: rgba(255,255,255,0.18);
  color: #4ade80;
}
.hero-with-bg .trust-mini { color: rgba(255,255,255,0.92); }
.hero-with-bg .trust-mini strong { color: #fff; }
.hero-with-bg .hero-form {
  background: #fff;
  color: var(--c-ink);
}

/* TRUST BAR */
.trust-bar {
  background: var(--c-primary);
  color: #fff;
  padding: 24px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item strong {
  font-size: 28px;
  font-weight: 900;
  color: #ff8a3d;
}
.trust-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
@media (max-width: 720px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item strong { font-size: 22px; }
}

/* TARGETS - APP / VILLE / NEGOZI / AZIENDE */
.targets {
  padding: 80px 0;
  background: var(--c-bg-alt);
}
.targets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.target-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--c-primary);
  transition: transform .2s, box-shadow .2s;
}
.target-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.target-ico {
  font-size: 36px;
  margin-bottom: 12px;
}
.target-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--c-ink);
}
.target-pain {
  font-size: 14px;
  color: var(--c-ink-soft);
  margin-bottom: 16px;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border);
}
.target-pain strong { color: var(--c-ink); }
.target-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.target-benefits li {
  font-size: 14px;
  color: var(--c-ink-soft);
  padding: 4px 0 4px 22px;
  position: relative;
}
.target-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--c-success);
  font-weight: 800;
}
.targets-cta {
  text-align: center;
  margin-top: 36px;
  font-size: 16px;
}
.targets-cta a {
  font-weight: 700;
  color: var(--c-primary);
}
@media (max-width: 980px) {
  .targets-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .targets-grid { grid-template-columns: 1fr; }
}

/* DISPOSITIVI / TECNOLOGIA */
.devices {
  padding: 80px 0;
  background: #fff;
}
.devices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.section-title-left {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--c-ink);
}
.devices-content p {
  color: var(--c-ink-soft);
  margin-bottom: 20px;
  font-size: 16px;
}
.devices-features {
  list-style: none;
  padding: 0;
}
.devices-features li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--c-ink-soft);
  border-bottom: 1px solid var(--c-border);
}
.devices-features li::before {
  content: "🛡️";
  position: absolute;
  left: 0;
  top: 8px;
}
.devices-features li strong { color: var(--c-ink); }
.devices-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 880px) {
  .devices-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* BANNER LEONARDO */
.leonardo-banner {
  padding: 0;
  background: #0e1726;
}
.leonardo-banner .container {
  padding: 0;
  max-width: 100%;
}
.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* RECENSIONI GOOGLE - WIDGET */
.reviews-google-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.reviews-google-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.reviews-google-logo {
  display: flex;
  align-items: center;
}
.reviews-google-info {
  text-align: left;
}
.reviews-google-stars {
  font-size: 22px;
  margin-bottom: 4px;
}
.reviews-google-rating {
  font-size: 16px;
  color: var(--c-ink-soft);
  margin-bottom: 4px;
}
.reviews-google-rating strong {
  font-size: 22px;
  color: var(--c-ink);
}
.reviews-google-name {
  font-size: 14px;
  color: var(--c-mute);
  font-weight: 600;
}
.reviews-highlights {
  text-align: left;
  margin-bottom: 28px;
}
.reviews-highlights h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--c-ink);
}
.reviews-highlights ul {
  list-style: none;
  padding: 0;
}
.reviews-highlights li {
  padding: 8px 0;
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
.reviews-highlights li strong { color: var(--c-ink); }
.rh-ico {
  color: var(--c-success);
  font-weight: 900;
  margin-right: 8px;
}
.btn-google {
  background: #4285F4;
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.btn-google:hover {
  background: #3367d6;
  text-decoration: none;
}

/* FINAL TRUST LINE */
.final-trust {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}


/* FIX V3 - Override per hero con bg scuro */
.hero-with-bg .hl {
  color: #fbbf24 !important;
  display: inline-block;
}
.hero-with-bg h1 {
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-with-bg .badge-hero {
  background: rgba(255, 138, 61, 0.18) !important;
  border-color: rgba(255, 138, 61, 0.4) !important;
}
.hero-with-bg .hero-bullets {
  margin-bottom: 28px;
}


/* ===== V4: PHONE LABEL ===== */
.header-phone .phone-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 1px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.header-phone span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ===== V4: STATS / NUMERI CHE FANNO RIFLETTERE ===== */
.stats {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  padding: 80px 0;
}
.stats .section-title {
  color: #0f172a;
}
.stats .section-sub {
  color: #475569;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #dc2626;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}
.stat-num {
  font-size: 42px;
  font-weight: 900;
  color: #dc2626;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.35;
}
.stat-detail {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 14px;
}
.stat-source {
  font-size: 12px;
  color: #94a3b8;
  font-style: italic;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
}
.stats-cta {
  margin-top: 40px;
  text-align: center;
  background: #ffffff;
  border: 2px solid #ff8a3d;
  border-radius: 12px;
  padding: 22px 24px;
}
.stats-cta p {
  font-size: 17px;
  color: #0f172a;
  margin: 0;
}
.stats-cta a {
  color: #ff8a3d;
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}
.stats-cta a:hover {
  text-decoration: underline;
}

/* ===== V4: SERVIZI INCLUSI ===== */
.services {
  background: #ffffff;
  padding: 80px 0;
}
.services .section-title {
  color: #0f172a;
}
.services .section-sub {
  color: #475569;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: #ff8a3d;
  box-shadow: 0 8px 24px rgba(255, 138, 61, 0.12);
}
.service-card-highlight {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-color: #0f172a;
  color: #ffffff;
}
.service-card-highlight h3 {
  color: #ffffff;
}
.service-card-highlight p {
  color: rgba(255,255,255,0.88);
}
.service-card-highlight strong {
  color: #fbbf24;
}
.service-ico {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  line-height: 1.3;
}
.service-card p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}
.services-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, #ff8a3d 0%, #ff6b1a 100%);
  border-radius: 14px;
  padding: 28px 32px;
  color: #ffffff;
}
.sb-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sb-content strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}
.sb-content span {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
}

@media (max-width: 640px) {
  .stats, .services {
    padding: 56px 0;
  }
  .stat-num {
    font-size: 36px;
  }
  .services-banner {
    padding: 22px 20px;
  }
  .sb-content strong {
    font-size: 18px;
  }
}

/* V4 FIX - forza colori card highlight (vince su regole precedenti) */
.service-card-highlight h3 {
  color: #ffffff !important;
}
.service-card-highlight p {
  color: rgba(255,255,255,0.92) !important;
}

/* ============================================================
   V5 ADDITIONS — Quiz multi-step + sticky mobile + grid 5
   ============================================================ */

.quiz-form {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--c-ink);
  position: sticky;
  top: 100px;
}
.quiz-header { margin-bottom: 24px; }
.quiz-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 6px;
  line-height: 1.25;
}
.quiz-sub {
  font-size: 14px;
  color: var(--c-ink-soft);
  margin-bottom: 16px;
}
.quiz-progress {
  height: 8px;
  background: var(--c-border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  border-radius: 100px;
  transition: width 0.4s ease;
}
.quiz-progress-text {
  font-size: 12px;
  color: var(--c-mute);
  text-align: right;
  font-weight: 600;
}
.quiz-step {
  display: none;
  animation: fadeIn 0.3s ease;
}
.quiz-step.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.quiz-hint {
  font-size: 13px;
  color: var(--c-mute);
  margin-bottom: 16px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--c-border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}
.quiz-option:hover {
  border-color: var(--c-primary);
  background: #f0f6fc;
}
.quiz-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--c-primary);
  flex-shrink: 0;
}
.quiz-option:has(input:checked) {
  border-color: var(--c-primary);
  background: #e8f1f9;
  box-shadow: 0 0 0 3px rgba(10,77,140,.1);
}
.quiz-ico { font-size: 22px; flex-shrink: 0; }
.quiz-label { font-size: 15px; font-weight: 600; color: var(--c-ink); }

.quiz-options-multi {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.quiz-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 2px solid var(--c-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}
.quiz-check:hover {
  border-color: var(--c-primary);
  background: #f0f6fc;
}
.quiz-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--c-primary);
  flex-shrink: 0;
}
.quiz-check:has(input:checked) {
  border-color: var(--c-primary);
  background: #e8f1f9;
}
.quiz-check-big {
  padding: 14px 16px;
  background: #fff8f0;
  border-color: #ffd9b3;
}
.quiz-check-big:has(input:checked) {
  background: #ffefd9;
  border-color: var(--c-accent);
}
.quiz-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.quiz-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-soft);
}
.quiz-field input,
.quiz-field select {
  padding: 11px 13px;
  border: 2px solid var(--c-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--c-ink);
  background: #fff;
  transition: border-color 0.2s ease;
}
.quiz-field input:focus,
.quiz-field select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(10,77,140,.1);
}
.quiz-nav {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.btn-quiz {
  flex: 1;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 700;
}
.quiz-trust {
  text-align: center;
  font-size: 12px;
  color: var(--c-mute);
  margin-top: 14px;
}

.targets-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .targets-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .targets-grid-5 { grid-template-columns: 1fr; }
}
.target-cta {
  display: inline-block;
  margin-top: 12px;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 14px;
}
.target-cta:hover { color: var(--c-accent); text-decoration: none; }

.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--c-border);
  padding: 8px;
  z-index: 200;
  gap: 6px;
  box-shadow: 0 -4px 12px rgba(0,0,0,.08);
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 11px 6px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.sticky-call { background: var(--c-primary); color: #fff; }
.sticky-wa { background: var(--c-whatsapp); color: #fff; }
.sticky-form { background: var(--c-accent); color: #fff; }
.sticky-btn:hover { text-decoration: none; opacity: 0.9; }

@media (max-width: 760px) {
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 60px; }
  .float-whatsapp { display: none; }
  .quiz-form {
    position: relative;
    top: 0;
    padding: 24px 18px;
  }
  .quiz-options-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   V6 - OTTIMIZZAZIONE SPAZI + LEVE PERSUASIONE
   Override mirati: hero più compatta, padding ridotti,
   bullets 2 col, micro-leve visibili, mobile-first.
   ========================================================= */

/* HERO - più compatta su desktop, contenuti meglio bilanciati */
.hero { padding: 40px 0 50px; }
.hero-grid { gap: 40px; grid-template-columns: 1.05fr 1fr; align-items: start; }
.badge-hero { margin-bottom: 16px; padding: 6px 14px; font-size: 12.5px; }
.hero h1 {
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 16.5px;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 560px;
}
.hero-bullets {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 26px;
  row-gap: 10px;
}
.hero-bullets li {
  margin-bottom: 0;
  font-size: 14.5px;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.35;
}
.hero-bullets li .check-ico { margin-top: 2px; }
.check-ico { width: 20px; height: 20px; font-size: 12px; }
.cta-row { margin-bottom: 16px; }
.trust-mini { font-size: 13.5px; line-height: 1.5; }

/* MICRO-LEVA: badge "0€ - nessun obbligo" sopra hero CTA */
.hero-reassure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.18);
  color: #4ade80;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  border: 1px solid rgba(74,222,128,0.35);
}

/* HERO FORM - più compatto in altezza */
.hero-form { padding: 24px; }
.quiz-header { margin-bottom: 16px; }
.quiz-title { font-size: 20px; line-height: 1.2; margin-bottom: 6px; }
.quiz-sub { font-size: 13.5px; margin-bottom: 12px; }

/* QUIZ - micro reassurance sotto submit */
.quiz-microproof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 12px;
  color: var(--c-mute);
}
.quiz-microproof span { display: inline-flex; align-items: center; gap: 4px; }

/* SEZIONI - padding ridotto ~30% */
section { padding: 52px 0; }
.section-sub { margin-bottom: 36px; }

/* Sezioni standalone con padding 80px -> 56px */
.stats, .services, .targets, .devices, .reviews, .protect-extra { padding: 56px 0 !important; }

.section-title {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 12px;
}
.section-sub { font-size: 16px; max-width: 660px; }

/* TRUST BAR - leggermente più compatta */
.trust-bar { padding: 18px 0; }
.trust-item strong { font-size: 22px; }
.trust-item span { font-size: 12.5px; }

/* RESPONSIVE V6 */
@media (max-width: 900px) {
  .hero { padding: 28px 0 36px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-bullets {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .hero h1 { font-size: 26px; line-height: 1.15; }
  .hero-sub { font-size: 15.5px; }
  .badge-hero { font-size: 12px; }
  section { padding: 40px 0; }
  .stats, .services, .targets, .devices, .reviews, .protect-extra { padding: 44px 0 !important; }
  .section-title { font-size: 24px; }
  .section-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-form { padding: 20px 18px; }
  .quiz-title { font-size: 19px; }
  .trust-bar { padding: 14px 0; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
  .trust-item strong { font-size: 19px; }
  .trust-item span { font-size: 11.5px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero-sub { font-size: 15px; line-height: 1.5; }
  .hero-bullets li { font-size: 14.5px; }
  .quiz-microproof { font-size: 11.5px; gap: 10px; }
}

/* LEVA SCARSITÀ - banner urgenza prima del quiz/CTA */
.urgency-strip {
  background: linear-gradient(90deg, #fff4e6 0%, #ffe4cc 100%);
  border: 1px solid #ffc89a;
  border-radius: 10px;
  padding: 9px 14px 9px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #7a3e00;
  margin-bottom: 14px;
}
.urgency-strip::before {
  content: '⚡ ';
  font-size: 15px;
  margin-right: 4px;
}
.urgency-strip strong { color: #c2410c; white-space: nowrap; }

/* LEVA AUTORITÀ - footer hero con loghi/firme di fiducia */
.hero-auth-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-auth-row strong { color: #fff; }
.hero-auth-row .auth-dot { color: rgba(255,255,255,0.4); }

/* V6 FIX OVERFLOW - forza grid items a non espandere oltre track */
.hero-grid > * { min-width: 0; }
.hero-bullets > li { min-width: 0; }
.cta-row { min-width: 0; }
.urgency-strip strong { white-space: normal; }

/* Mobile: container e quiz devono stare nel viewport */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .hero-bullets {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .hero-content, .hero-form {
    min-width: 0;
    width: 100%;
  }
  .quiz-options-grid { grid-template-columns: 1fr !important; }
}

/* =========================================================
   V6.1 - LEGGIBILITÀ, COMFORT VISIVO, ACCESSIBILITÀ
   Basato su WCAG 2.2, ricerca Iubenda/WebAbility 2026,
   ColorArchive trust guide, Coloring Trust 2025.
   ========================================================= */

/* TIPOGRAFIA - line-height più rilassato su body e paragrafi (WCAG 1.4.8) */
body {
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Paragrafi lunghi: line-height 1.65 per ridurre eye strain */
p { line-height: 1.65; }
.hero-sub, .section-sub, .quiz-sub { line-height: 1.6; }

/* Titoli: tracking meno compresso (più leggibile per over 45) */
h1, h2, h3, h4 { letter-spacing: -0.012em; }
.hero h1 { letter-spacing: -0.015em; }
.section-title { letter-spacing: -0.01em; }

/* Body text: peso leggermente più strutturato per leggibilità su schermi retina */
.hero-sub { font-weight: 400; }
.section-sub { font-weight: 400; }

/* HERO - colore testo bianco con leggera trasparenza per ridurre stanchezza visiva */
.hero-with-bg .hero-sub {
  color: rgba(255,255,255,0.93);
  font-weight: 400;
}
.hero-with-bg h1 {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* QUIZ FORM - input più riposante per gli occhi (sfondo leggermente off-white) */
.quiz-form input[type="text"],
.quiz-form input[type="tel"],
.quiz-form input[type="email"],
.quiz-form select,
.lead-form input,
.lead-form select {
  background: #fdfefe;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #0e1726;
}

/* FOCUS STATES - accessibilità: anello visibile per chi naviga da tastiera */
*:focus-visible {
  outline: 3px solid #ff6b1a;
  outline-offset: 2px;
  border-radius: 4px;
}
.quiz-form input:focus-visible,
.quiz-form select:focus-visible,
.lead-form input:focus-visible {
  outline: none;
  border-color: #ff6b1a;
  box-shadow: 0 0 0 3px rgba(255,107,26,0.18);
}
.btn:focus-visible {
  outline: 3px solid rgba(255,255,255,0.85);
  outline-offset: 3px;
}

/* SELECT - cursore puntatore */
.quiz-option, .quiz-check, .quiz-options-multi label { cursor: pointer; }

/* SEZIONI - sfondi alternati morbidi (riduce shock cromatico tra sezioni) */
.why { background: #f7f9fc; }
.protect { background: #fafbfd; }

/* TRUST BAR - blu primario meno aggressivo */
.trust-bar { background: #0a4d8c; }

/* CTA PRIMARY - hover più graduale (meno aggressivo per chi è anziano) */
.btn-primary {
  transition: background-color .25s ease, transform .15s ease, box-shadow .25s ease;
}
.btn-primary:hover {
  background-color: #e55a0d;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,107,26,0.32);
}

/* BORDER RADIUS - più morbido sulle card per ridurre tensione visiva */
.protect-item, .why-card, .review-card, .device-card, .target-card {
  border-radius: 14px;
}
.hero-form { border-radius: 16px; }

/* PROGRESS BAR QUIZ - colore più calmo */
.quiz-progress-bar {
  background: linear-gradient(90deg, #0a4d8c 0%, #1a6bb0 100%);
}

/* SUCCESS STATE - verde meno saturato */
.success-ico { background: #22a45e; }

/* PRINT-FRIENDLY: nascondi elementi marketing in stampa */
@media print {
  .float-whatsapp, .sticky-mobile-bar, .urgency-strip { display: none; }
}

/* PREFERS-REDUCED-MOTION: rispetta utenti con disturbi vestibolari/anziani */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* MOBILE: body più leggibile, mai sotto 16px */
@media (max-width: 480px) {
  body { font-size: 16px; line-height: 1.6; }
  .hero-sub { font-size: 15.5px; line-height: 1.55; }
  .quiz-question { font-size: 18px; line-height: 1.35; }
}

/* V6.2 - NOTA FONTI sezione Numeri */
.numbers-note {
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(15, 42, 74, 0.04);
  border-left: 3px solid var(--c-primary);
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.55;
  color: #5a6470;
  font-style: italic;
}
.numbers-note a {
  color: var(--c-primary);
  text-decoration: underline;
  font-style: normal;
  font-weight: 500;
}
.numbers-note a:hover {
  color: #ff8a3d;
}
@media (max-width: 480px) {
  .numbers-note { font-size: 12.5px; padding: 12px 14px; }
}

/* V6.2 - Sezione NUMERI (alias di .stats per nuovo markup) */
.numbers {
  padding: 80px 0;
  background: #ffffff;
}
.numbers .section-title {
  color: #0f172a;
}
.numbers .section-sub {
  color: #475569;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.numbers .stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--c-primary);
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.numbers .stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}
.numbers .stat-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.numbers .stat-desc {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.55;
  margin: 0;
}
.numbers .stat-desc strong {
  color: #0f172a;
  font-weight: 700;
}
.numbers .stat-desc a {
  color: #64748b;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted #94a3b8;
  display: inline-block;
  margin-top: 8px;
  transition: color 0.2s, border-color 0.2s;
}
.numbers .stat-desc a:hover {
  color: var(--c-primary);
  border-bottom-color: var(--c-primary);
}
@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .numbers { padding: 56px 0; }
  .numbers-grid { grid-template-columns: 1fr; gap: 16px; }
  .numbers .stat-num { font-size: 32px; }
}
