/* ==========================================================================
   GetDriver — Landing
   Sezioni alternate dark / light. Hero con mock-up tech del gestionale NCC.
   ========================================================================== */

@font-face {
  font-family: 'Roobert';
  src: url('fonts/Roobert-Regular.woff2') format('woff2');
  font-weight: 350 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roobert';
  src: url('fonts/Roobert-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roobert';
  src: url('fonts/Roobert-SemiBold.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TWK Lausanne';
  src: url('fonts/TWKLausanne-350.woff2') format('woff2');
  font-weight: 300 350;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TWK Lausanne';
  src: url('fonts/TWKLausanne-450.woff2') format('woff2');
  font-weight: 400 450;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TWK Lausanne';
  src: url('fonts/TWKLausanne-550.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roobert Mono';
  src: url('fonts/RoobertMonoVF.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #08080a;
  --bg-soft: #0d0d10;
  --bg-card: rgba(255,255,255,0.025);
  --bg-card-hover: rgba(255,255,255,0.04);
  --hair: rgba(255,255,255,0.08);
  --hair-strong: rgba(255,255,255,0.16);
  --ink: #f5f5f7;
  --soft: #eaeaea;
  --muted: #6c6c75;
  --grad-1: #0d2f4f;
  --grad-2: #4499d8;
  --grad-3: #2c7fbf;
  --serif: 'TWK Lausanne', 'Fraunces', 'Times New Roman', serif;
  --sans: 'Roobert', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'Roobert Mono', 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  --paper: #fcfbfa;
  --promo: #ececee;
}

* { box-sizing: border-box; }

/* Niente italic nel design: forziamo normale ovunque per evitare faux-italic dei browser */
em, i, cite, dfn, var { font-style: normal; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body { position: relative; }

/* === Container === */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 3;
}
@media (max-width: 760px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer-newsletter {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* === Nav === */
/* === Barra promo (top header) === */
.promo-bar {
  position: relative;
  background: #ececee;
  color: #16161a;
  font-family: Roobert, -apple-system, system-ui, "Segoe UI", sans-serif;
  font-size: 15.5px;
  font-weight: 350;
  text-align: center;
  padding: 9px 48px;
  z-index: 51;
}
.promo-bar a {
  color: #16161a;
  font-weight: 350;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.promo-bar-x {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: #16161a;
  cursor: pointer;
  z-index: 2;
}
.promo-bar-x:hover { color: #000; opacity: 0.7; }
.promo-off .promo-bar { display: none; }
@media (max-width: 760px) {
  .promo-bar {
    padding: 9px 36px 9px 14px;
  }
  .promo-bar-extra { display: none; }
  .promo-bar-x {
    right: 8px;
    width: 28px;
    height: 28px;
  }
}

.nav {
  position: sticky; top: 0; z-index: 50;
  background: #fcfbfa;
  border-bottom: 1px solid #e7e7ea;
}
.nav-inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-logo {
  height: 24px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-logo--footer {
  height: 22px;
}
.brand-mark {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px;
  min-height: 26px;
  max-width: 26px;
  max-height: 26px;
  flex-shrink: 0;
  display: block;
}
.brand-text { font-family: var(--sans); font-weight: 500; letter-spacing: -0.015em; font-size: 16px; }
.brand-text strong { font-weight: 600; }
.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 34px;
  margin: 0;
}
.nav-links a {
  font-family: "TWK Lausanne", -apple-system, system-ui, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 450;
  color: #100f0c;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #2c7fbf; }
.btn-ghost {
  font-size: 13px; font-weight: 500; color: var(--ink); text-decoration: none;
  padding: 9px 16px; border: 1px solid var(--hair-strong); border-radius: 999px;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.03); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #100f0c;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 760px) {
  .nav-inner {
    padding: 10px 14px;
    gap: 10px;
  }
  .nav-toggle { display: flex; }
  .btn-cyan--nav { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 14px 16px;
    background: #fcfbfa;
    border-bottom: 1px solid #e7e7ea;
    box-shadow: 0 12px 24px rgba(8, 8, 10, 0.06);
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links a {
    padding: 12px 2px;
    font-size: 17px;
    border-bottom: 1px solid #eeeef1;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .btn-cyan--nav {
    padding: 7px 10px;
    font-size: 13px;
  }
}

/* === Eyebrow & headings === */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--soft);
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  box-shadow: 0 0 12px rgba(167,139,250,0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.display {
  font-family: "TWK Lausanne", -apple-system, system-ui, "Segoe UI", sans-serif;
  font-weight: 550;
  font-size: 58px;
  line-height: 1.05; letter-spacing: -0.035em;
  margin: 24px 0 28px; color: var(--ink);
}
.display em { font-style: normal; font-weight: 550; }
@media (max-width: 760px) {
  .display { font-size: 36px; }
}
.display-2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1; letter-spacing: -0.03em;
  margin: 18px 0 22px; color: var(--ink);
}
.display-2 em { font-style: normal; font-weight: 500; }

.grad {
  background: linear-gradient(120deg, #08080a 0%, #0d2f4f 38%, #4499d8 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  font-style: normal;
}
.hero .grad {
  background: linear-gradient(120deg, #7ec8f5 0%, #a8ddff 55%, #e8f6ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.section--dark .grad,
.partner-hero .grad,
.contact-hero .grad,
.trial-hero .grad,
.bus-hero .grad,
.about-hero .grad,
.jobs-hero .grad {
  background: none;
  color: #8ed0f5;
  -webkit-text-fill-color: #8ed0f5;
}

.lead {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6; color: var(--soft);
  max-width: 540px; margin: 0; font-weight: 400;
}
.hero .lead {
  font-size: clamp(17px, 1.2vw, 20px);
}
.lead em { font-style: normal; color: var(--ink); }

/* === Buttons === */
.cta-row { display: flex; align-items: center; gap: 18px; margin: 36px 0 0; flex-wrap: wrap; }
.btn-label-short { display: none; }
@media (min-width: 761px) {
  .hero .cta-row .btn-primary,
  .hero .cta-row .btn-cyan {
    font-size: 17px;
  }
}
@media (max-width: 760px) {
  .hero .cta-row {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 24px;
  }
  .hero .cta-row .btn-primary,
  .hero .cta-row .btn-cyan {
    padding: 8px 10px;
    font-size: 15.5px;
    justify-content: center;
    white-space: nowrap;
    flex: 1 1 auto;
  }
  .hero .cta-row .btn-label-full { display: none; }
  .hero .cta-row .btn-label-short { display: inline; }
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  color: #08080a; background: #f5f5f7;
  padding: 11px 20px; border-radius: 10px;
  border: 1px solid #f5f5f7; text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative; overflow: hidden; z-index: 1;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-link {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--soft); text-decoration: none;
  border-bottom: 1px dotted var(--hair-strong);
  padding-bottom: 2px; transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-link:hover { color: var(--ink); border-bottom-color: var(--ink); }

.btn-cyan {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #4499d8 0%, #2c7fbf 100%);
  padding: 11px 20px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  letter-spacing: -0.005em;
  box-shadow: none;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.25s ease;
  position: relative; overflow: hidden; z-index: 1;
}
.btn-cyan:hover {
  transform: translateY(-1.5px);
  filter: brightness(1.05);
}
.btn-cyan::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.btn-cyan:hover::after { transform: translateX(100%); }

/* Variante compact per la nav */
.btn-cyan--nav {
  padding: 7px 14px;
  font-size: 14px;
  border-radius: 8px;
  letter-spacing: -0.005em;
  box-shadow: none;
}
.btn-cyan--nav:hover {
  box-shadow: none;
}

/* Bandiera italiana modernizzata (sottile + allungata) */
.eyebrow-flag {
  display: inline-block;
  width: 48px; height: 4px;
  border-radius: 2px;
  overflow: hidden;
  vertical-align: 1px;
  margin-left: 4px;
  line-height: 0;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 1px 4px rgba(0,0,0,0.4);
}
.eyebrow-flag i {
  display: inline-block;
  width: 33.34%; height: 100%;
  vertical-align: top;
}
/* Su sfondo chiaro: ombra meno marcata */
.section--light .eyebrow-flag,
.section--soft .eyebrow-flag {
  box-shadow:
    0 0 0 1px rgba(8,8,10,0.10),
    0 1px 2px rgba(8,8,10,0.08);
}

/* === HERO === */
.hero {
  position: relative;
  padding: clamp(28px, 4vh, 48px) 0 clamp(36px, 6vh, 64px);
  z-index: 3;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
    url('img/gestionale-ncc-getdriver-con-ai.jpg') center / cover no-repeat;
  background-color: var(--bg);
}
.hero-aurora {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  overflow: hidden;
}
.hero-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}
.hero-aurora span:nth-child(1) {
  width: 460px; height: 460px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(167,139,250,0.65), transparent 60%);
}
.hero-aurora span:nth-child(2) {
  width: 380px; height: 380px;
  top: 30%; right: -60px;
  background: radial-gradient(circle, rgba(34,211,238,0.45), transparent 60%);
}
.hero-aurora span:nth-child(3) {
  width: 240px; height: 240px;
  bottom: 0; left: 30%;
  background: radial-gradient(circle, rgba(244,114,182,0.25), transparent 60%);
}

/* Particelle fluttuanti (decorazione AI) */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-particles i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(167,139,250,0.6) 60%, transparent 80%);
  box-shadow: 0 0 12px rgba(167,139,250,0.5);
  animation: floatY var(--d) ease-in-out infinite;
  opacity: 0.7;
}
.hero-particles i:nth-child(2n) {
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(34,211,238,0.6) 60%, transparent 80%);
  box-shadow: 0 0 12px rgba(34,211,238,0.5);
}
@keyframes floatY {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(8px, -16px) scale(1.4); opacity: 1; }
}

/* === Geometria animata premium nell'hero === */
.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-geo-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
.geo-node {
  animation: geoBlink 4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  filter: drop-shadow(0 0 6px rgba(167,139,250,0.8));
  transform-origin: center;
  transform-box: fill-box;
}
.geo-line line {
  stroke-dasharray: 4 6;
  stroke-dashoffset: 0;
  animation: geoFlow 12s linear infinite;
}
.geo-sweep {
  stroke-dasharray: 80 240;
  stroke-dashoffset: 0;
  animation: geoSweep 9s ease-in-out infinite;
  opacity: 0.55;
}

@keyframes geoBlink {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.7); }
}
@keyframes geoFlow {
  to { stroke-dashoffset: -100; }
}
@keyframes geoSweep {
  0% { transform: translate(-200px, 0); opacity: 0; }
  20% { opacity: 0.55; }
  80% { opacity: 0.55; }
  100% { transform: translate(1600px, 0); opacity: 0; }
}

@media (max-width: 980px) {
  .hero-geo-svg { opacity: 0.55; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* === Trust strip (sotto ticker, senza card) === */
.trust-strip-band {
  position: relative;
  z-index: 3;
  background: var(--paper);
  padding: 28px 0 4px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 0;
  padding: 0;
  border: 0;
}
@media (max-width: 900px) {
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
  position: relative;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.trust-cell-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.trust-cell-icon--violet { color: #6d28d9; }
.trust-cell-icon--cyan { color: #0891b2; }
.trust-cell-icon--pink { color: #be185d; }
.trust-cell-icon--gradient { color: #0d2f4f; }
.trust-cell-icon svg {
  position: relative; z-index: 1;
  width: 22px; height: 22px;
}

/* Live pulse sull'icona 24/7 */
.trust-cell-pulse {
  position: absolute;
  top: -2px; right: -2px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94, 0.7);
  animation: trustCellPulse 1.8s ease-out infinite;
}
@keyframes trustCellPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94, 0); }
}

.trust-cell-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
  min-width: 0;
}
.trust-cell-text b {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: #08080a;
  letter-spacing: -0.005em;
}
.trust-cell-text i {
  font-family: var(--sans);
  font-size: 12px;
  color: #6c6c75;
  letter-spacing: 0;
  text-transform: none;
  font-style: normal;
  white-space: normal;
}
.trust-label-short { display: none; }
@media (min-width: 761px) {
  .trust-strip-band {
    padding: 36px 0 8px;
  }
  .trust-cell {
    gap: 14px;
  }
  .trust-cell-icon,
  .trust-cell-icon svg {
    width: 26px;
    height: 26px;
  }
  .trust-cell-text b {
    font-size: 16px;
  }
  .trust-cell-text i {
    font-size: 13px;
  }
}
@media (max-width: 760px) {
  .trust-label-full { display: none; }
  .trust-label-short { display: inline; }
}

/* === PHONE MOCKUP (hero tech panel) === */
.tech-stage {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 48px;
}

/* Aurora pulsante dietro al telefono */
.phone-aura {
  position: absolute;
  top: 62%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 530px;
  border-radius: 50%;
  background:
    radial-gradient(50% 50% at 30% 35%, rgba(167,139,250,0.55), transparent 60%),
    radial-gradient(50% 50% at 70% 65%, rgba(34,211,238,0.45), transparent 60%),
    radial-gradient(50% 50% at 50% 80%, rgba(244,114,182,0.30), transparent 60%);
  filter: blur(70px);
  z-index: 0;
  animation: phoneAuraBreath 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes phoneAuraBreath {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.72; transform: translate(-50%, -50%) scale(1.03); }
}

/* Anelli orbitali decorativi */
.phone-orbit {
  position: absolute;
  top: 62%; left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(167,139,250,0.18);
  pointer-events: none;
  z-index: 0;
  animation: phoneOrbitRotate 40s linear infinite;
}
.phone-orbit--1 {
  width: 440px; height: 440px;
  margin: -220px 0 0 -220px;
}
.phone-orbit--2 {
  width: 560px; height: 560px;
  margin: -280px 0 0 -280px;
  border-color: rgba(34,211,238,0.12);
  animation-direction: reverse;
  animation-duration: 60s;
}
.phone-orbit::before,
.phone-orbit::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-1);
  box-shadow: 0 0 12px rgba(167,139,250,0.8);
}
.phone-orbit::before { top: -3px; left: 50%; margin-left: -3px; }
.phone-orbit::after  { bottom: -3px; left: 50%; margin-left: -3px; background: var(--grad-2); box-shadow: 0 0 12px rgba(34,211,238,0.8); }
@keyframes phoneOrbitRotate {
  to { transform: rotate(360deg); }
}

/* Phone frame: product shot fermo + sweep di luce */
.phone-frame {
  width: 290px;
  border-radius: 44px;
  background: linear-gradient(135deg, #1d1d22 0%, #131318 50%, #1a1a1f 100%);
  padding: 12px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.55),
    0 30px 60px rgba(167,139,250,0.18),
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 100px rgba(167,139,250,0.20),
    inset 0 0 0 2px rgba(255,255,255,0.05);
}
.phone-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 25;
}
.phone-shine::after {
  content: '';
  position: absolute;
  top: -15%;
  left: -50%;
  width: 42%;
  height: 130%;
  background: linear-gradient(105deg, transparent 32%, rgba(255,255,255,0.22) 50%, transparent 68%);
  animation: phoneShine 8s ease-in-out infinite;
}
@keyframes phoneShine {
  0%, 18% { transform: translateX(0) rotate(8deg); opacity: 0; }
  32% { opacity: 1; }
  62%, 100% { transform: translateX(480%) rotate(8deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .phone-shine::after,
  .phone-aura,
  .phone-orbit { animation: none; }
}

@media (max-width: 1080px) {
  .tech-stage { min-height: 540px; }
  .phone-frame { width: 268px; transform: none; }
  .phone-screen { height: 530px; }
  .phone-aura { width: 350px; height: 440px; }
  .phone-orbit--1 { width: 390px; height: 390px; margin: -195px 0 0 -195px; }
  .phone-orbit--2 { width: 500px; height: 500px; margin: -250px 0 0 -250px; }
}
@media (max-width: 480px) {
  .phone-frame { width: 240px; border-radius: 36px; padding: 10px; }
  .phone-screen { height: 480px; border-radius: 26px; }
  .phone-notch { width: 100px; height: 24px; }
  .phone-orbit { display: none; }
  .phone-aura { width: 320px; height: 400px; }
}

/* Mobile: taglio telefono + riga sfumata */
@media (max-width: 760px) {
  .hero .tech-stage {
    min-height: 0;
    height: auto;
    align-items: flex-start;
    padding-top: 8px;
    overflow: visible;
  }
  .hero .phone-frame {
    --phone-full-h: 512px;
    width: min(280px, 86vw);
    height: calc(var(--phone-full-h) * 0.70);
    max-height: none;
    overflow: hidden;
    border-radius: 36px 36px 0 0;
    padding: 10px;
    padding-bottom: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero .tech-stage::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(320px, 94vw);
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,0.22) 18%,
      rgba(255,255,255,0.7) 50%,
      rgba(255,255,255,0.22) 82%,
      transparent 100%
    );
    box-shadow: 0 0 10px rgba(255,255,255,0.28);
    pointer-events: none;
    z-index: 30;
  }
  .hero .phone-screen {
    height: 480px;
    border-radius: 26px;
  }
  .hero .phone-tabbar,
  .hero .phone-home-indicator {
    display: none;
  }
  .hero .phone-aura {
    width: 260px;
    height: 200px;
    top: 42%;
  }
}

/* Notch */
.phone-notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 20;
}
.phone-notch::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2a2a2e;
  box-shadow: inset 0 0 0 1.5px #3a3a40;
}

/* Screen */
.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 560px;
}

/* iOS status bar */
.phone-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px 6px;
  background: #111827;
  flex-shrink: 0;
}
.phone-time {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.phone-statusbar-right {
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone-statusbar-right svg { display: block; }
.phone-statusbar-right svg rect,
.phone-statusbar-right svg path { fill: #fff; stroke: #fff; }

/* App header */
.phone-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 12px;
  background: #111827;
  flex-shrink: 0;
}
.phone-app-logo {
  height: 18px;
  width: auto;
}
.phone-app-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-notif-icon {
  opacity: 0.7;
}
.phone-hamburger {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 18px;
}
.phone-hamburger span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
}

/* Page content */
.phone-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px 8px;
  -webkit-overflow-scrolling: touch;
}
.phone-page-head {
  margin-bottom: 14px;
}
.phone-page-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.phone-page-sub {
  font-size: 10px;
  color: #6b7280;
  margin-top: 2px;
}

/* Filter tabs */
.phone-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}
.phone-filter {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid #d1d5db;
  color: #111;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.phone-filter--active {
  border-color: #000;
  transform: scale(1.05);
  font-weight: 700;
}

/* Service cards */
.phone-services {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone-svc-card {
  background: #fff;
  padding: 0 0 12px;
  border-bottom: 1px solid #e5e7eb;
}
.phone-svc-card--done {
  opacity: 0.55;
}

/* Card head: badges + status */
.phone-svc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
}
.phone-svc-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.phone-badge {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 3px;
}
.phone-badge--amber {
  background: #fef3c7;
  color: #92400e;
}
.phone-badge--violet {
  background: #ede9fe;
  color: #6d28d9;
}
.phone-svc-date {
  font-size: 11px;
  color: #111;
  font-weight: 500;
}
.phone-svc-type {
  font-size: 10px;
  color: #6b7280;
}
.phone-status {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-status--blue { background: #dbeafe; color: #1e40af; }
.phone-status--yellow { background: #fef9c3; color: #854d0e; }
.phone-status--green { background: #dcfce7; color: #166534; }
.phone-status--red { background: #fee2e2; color: #991b1b; }

/* Car info */
.phone-svc-car {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.phone-car-type {
  font-size: 9.5px;
  padding: 2px 7px;
  border-radius: 3px;
  background: #f3f4f6;
  color: #4b5563;
}
.phone-car-plate {
  font-family: var(--mono);
  font-size: 9.5px;
  padding: 2px 7px;
  border-radius: 3px;
  background: #eff6ff;
  color: #111;
  font-weight: 500;
}

/* Route block */
.phone-svc-route-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.phone-route-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  color: #111;
  line-height: 1.3;
}
.phone-route-row svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #111;
}
.phone-route-row:first-child::before {
  content: none;
}

/* Progress steps */
.phone-svc-progress {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid #f3f4f6;
}
.phone-step {
  font-size: 8.5px;
  font-weight: 500;
  padding: 3px 7px;
  border-radius: 3px;
  background: #f3f4f6;
  color: #9ca3af;
}
.phone-step--done {
  background: #dcfce7;
  color: #166534;
}
.phone-step--active {
  background: #dbeafe;
  color: #1e40af;
  font-weight: 600;
  animation: stepPulse 2s ease-in-out infinite;
}
@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.3); }
  50% { box-shadow: 0 0 0 3px rgba(59,130,246,0); }
}

/* Bottom tab bar */
.phone-tabbar {
  display: flex;
  align-items: stretch;
  background: #fafafa;
  border-top: 1px solid #e5e7eb;
  padding: 6px 0 2px;
  flex-shrink: 0;
}
.phone-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 0 2px;
  position: relative;
}
.phone-tab svg {
  color: #9ca3af;
}
.phone-tab span {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.02em;
}
.phone-tab--active svg { color: #111; }
.phone-tab--active span { color: #111; font-weight: 700; }
.phone-tab-badge {
  position: absolute;
  top: 0; right: calc(50% - 16px);
  font-style: normal;
  font-size: 7px;
  font-weight: 700;
  background: #ef4444;
  color: #fff;
  min-width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 3px;
}

/* Home indicator */
.phone-home-indicator {
  width: 120px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 6px auto 2px;
}

/* === TICKER === */
.ticker {
  position: relative; z-index: 3;
  border: 0;
  padding: 10px 0; overflow: hidden;
  background: var(--bg);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.ticker-track {
  display: flex; gap: 28px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
@media (max-width: 760px) {
  .ticker-track {
    animation-duration: 7s;
  }
  .trust-strip-band {
    padding: 16px 0 8px;
  }
  .trust-strip {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
  }
  .trust-cell {
    width: auto;
    min-width: 0;
  }
  .trust-cell-text b {
    font-size: 13px;
  }
  #screenshot.section--soft {
    padding-top: 24px;
    padding-bottom: 12px;
  }
  #screenshot .section-head {
    margin-bottom: 24px !important;
  }
  .trust-badges-row {
    margin: 20px 0 0;
    gap: 20px 24px;
  }
  #moduli.section {
    padding-top: 28px;
  }
  #moduli .section-head {
    margin-bottom: 24px;
  }
  #moduli .card {
    padding: 18px 16px;
  }
  #moduli .grid-modules {
    gap: 12px;
  }
}
.ticker-track span {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(252,251,250,0.78);
  text-transform: none;
}
@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* === SECTIONS (theme dark/light) === */
.section {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  z-index: 3;
}
.section--dark {
  background: var(--bg);
  color: var(--ink);
}
#in-azione,
#processo {
  display: none;
}
.section--light {
  background: var(--paper);
  color: #08080a;
}
.section--light .display-2 { color: #08080a; }
.section--light .lead { color: #5b5b66; }
.section--light .lead em { color: #08080a; }
.section--light .eyebrow { color: #6c6c75; }
.section--light .eyebrow .dot {
  background: linear-gradient(135deg, #6d28d9, #0891b2);
  box-shadow: 0 0 10px rgba(109,40,217,0.35);
}
.section--light .grad {
  background: linear-gradient(120deg, #0d2f4f 0%, #2c7fbf 45%, #4499d8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}
.section--light .ticker { background: transparent; }
.section--light .ticker-track span { color: rgba(8,8,10,0.4); }

.section-head { max-width: 720px; margin-bottom: 64px; }

/* === Modules grid === */
.grid-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.section--light .grid-modules {
  background: transparent;
  border: 0;
}
@media (max-width: 980px) { .grid-modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-modules { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-soft);
  padding: 36px 32px;
  border: 0;
  border-radius: 16px;
  transition: background 0.25s ease;
  position: relative;
}
.card:hover { background: var(--bg-card-hover); }
.card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; letter-spacing: -0.025em;
  margin: 0 0 8px; color: var(--ink);
}
.card p {
  font-size: 14px; color: var(--soft); margin: 0; line-height: 1.55;
}
.grid-modules .card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
}
.grid-modules .card-icon {
  grid-column: 1;
  grid-row: 1;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  margin-bottom: 0;
  align-self: center;
}
.grid-modules .card-icon svg {
  width: 22px !important;
  height: 22px !important;
}
.grid-modules .card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
}
.grid-modules .card p {
  grid-column: 1 / -1;
  margin-top: 12px;
}

.section--light .card {
  background: #ffffff;
}
.section--light .card:hover { background: #fafafc; }
.card-icon {
  width: 38px; height: 38px;
  min-width: 38px; min-height: 38px;
  margin-bottom: 22px;
  color: var(--soft);
  display: block;
  flex-shrink: 0;
}
.card-icon svg {
  width: 38px !important; height: 38px !important;
  display: block; stroke: currentColor;
}
.section--light .card-icon { color: #08080a; }
.section--light .card h3 { color: #08080a; }
.section--light .card p { color: #5b5b66; }

.channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
@media (max-width: 760px) {
  .channel-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.channel-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.channel-card-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #f0f0f3;
}
.channel-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.03em;
  margin: 0;
  color: #08080a;
}
.channel-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #5b5b66;
}

/* Ingressi servizio (portale + WhatsApp) === */
.process-inlets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: -24px 0 48px;
}
@media (max-width: 760px) { .process-inlets { grid-template-columns: 1fr; } }

.process-inlet {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.process-inlet-icon {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 0;
  background: none;
  color: #08080a;
}
.process-inlet-icon--wa { background: none; }
.process-inlet h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; letter-spacing: -0.03em;
  margin: 0 0 8px; color: #08080a;
}
.process-inlet p {
  margin: 0; font-size: 14px; line-height: 1.55; color: #5b5b66;
}

/* Steps light theme === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 32px 8px 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.step-num {
  font-family: var(--mono); font-size: 12px;
  color: var(--muted); letter-spacing: 0.18em;
  margin-bottom: 24px;
}
.step h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 26px; letter-spacing: -0.03em;
  margin: 0 0 12px; color: var(--ink);
}
.step p { color: var(--soft); font-size: 14px; margin: 0; }

.section--light .step {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.section--light .step-num { color: #6c6c75; }
.section--light .step h3 { color: #08080a; }
.section--light .step p { color: #5b5b66; }
.step-arc {
  position: absolute;
  top: 50%; right: -28px;
  width: 56px; height: 40px;
  pointer-events: none;
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 981px) { .step-arc { display: block; } .step-arc svg { width: 100%; height: 100%; } }

/* === Capacity (dark) === */
.grid-cap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .grid-cap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-cap { grid-template-columns: 1fr; } }

.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 28px 26px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(167,139,250,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
}
.cap-card:hover { border-color: var(--hair-strong); transform: translateY(-2px); }
.cap-card:hover::before { opacity: 1; }
.cap-card > * { position: relative; z-index: 1; }
.cap-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.cap-id, .cap-status {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; color: var(--muted);
  text-transform: uppercase;
}
.cap-status {
  background: rgba(34,211,238,0.1); color: var(--grad-2);
  padding: 3px 8px; border-radius: 4px; font-weight: 500;
}
.cap-card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; letter-spacing: -0.025em;
  margin: 0 0 10px; color: var(--ink);
}
.cap-card p { color: var(--soft); font-size: 14px; margin: 0 0 22px; line-height: 1.55; }
.cap-stats { display: flex; gap: 28px; padding-top: 18px; border-top: 1px dashed var(--hair); }
.cap-stats span { display: flex; flex-direction: column; gap: 2px; }
.cap-stats b {
  font-family: var(--mono); font-weight: 500; font-size: 17px;
  color: var(--ink); letter-spacing: -0.01em;
}
.cap-stats i {
  font-family: var(--mono); font-size: 10px; font-style: normal;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
}

/* === Consorzi / cooperative === */
.grid-consorzio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .grid-consorzio { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-consorzio { grid-template-columns: 1fr; } }

.consorzio-point {
  padding: 8px 0 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.consorzio-point h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 20px; letter-spacing: -0.03em;
  margin: 0 0 10px; color: #08080a;
}
.consorzio-point p {
  margin: 0; font-size: 14px; line-height: 1.55; color: #5b5b66;
}

/* === Targets (light) === */
.grid-target {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .grid-target { grid-template-columns: 1fr; } }

.target-card {
  background: linear-gradient(180deg, #0e0e12 0%, #0a0a0d 100%);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.target-card:hover {
  border-color: var(--hair-strong);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.45);
}
.target-card .target-id {
  font-family: var(--mono); font-size: 12px;
  color: #8a8a94; letter-spacing: 0.18em;
  margin-bottom: 22px;
}
.target-card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 30px; letter-spacing: -0.03em;
  margin: 0 0 10px; color: #ffffff;
}
.target-card > p {
  color: #d4d4dc;
  font-size: 15px; margin: 0 0 22px; line-height: 1.6;
}
.target-card ul {
  list-style: none; padding: 0; margin: 22px 0 0;
  border-top: 1px dashed var(--hair);
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.target-card li {
  font-size: 14px; color: #c5c5cc;
  padding-left: 22px; position: relative;
}
.target-card li::before {
  content: '+'; position: absolute; left: 0;
  font-family: var(--mono); color: var(--grad-2);
}
.target-card--featured {
  background: linear-gradient(180deg, #14122a 0%, #0d0d1a 100%);
  border-color: rgba(167,139,250,0.25);
  box-shadow:
    0 18px 60px rgba(167,139,250,0.12),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.target-card--featured h3 { color: #ffffff; }

.section--light .target-card {
  background: #ffffff;
  border: 1px solid rgba(8,8,10,0.08);
  box-shadow: 0 1px 3px rgba(8,8,10,0.04);
}
.section--light .target-card:hover { border-color: rgba(8,8,10,0.16); box-shadow: 0 12px 32px rgba(8,8,10,0.06); }
.section--light .target-card--featured {
  background: linear-gradient(180deg, #08080a 0%, #1a1a1f 100%);
  border-color: #08080a;
  color: var(--ink);
}
.section--light .target-card--featured h3,
.section--light .target-card--featured > p,
.section--light .target-card--featured li { color: var(--ink); }
.section--light .target-card--featured .target-id { color: var(--soft); }
.section--light .target-card--featured ul { border-top: 1px dashed var(--hair); }
.section--light .target-card--featured li { color: var(--soft); }
.section--light .target-card--featured li::before { color: var(--grad-2); }

.target-badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; color: #08080a;
  background: #8ed0f5;
  font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
  text-transform: uppercase;
}
.section--light .target-card .target-id {
  font-family: var(--mono); font-size: 12px;
  color: #6c6c75; letter-spacing: 0.18em;
  margin-bottom: 22px;
}
.section--light .target-card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 32px; letter-spacing: -0.03em;
  margin: 0 0 10px; color: #08080a;
}
.section--light .target-card > p { color: #5b5b66; font-size: 15px; margin: 0 0 22px; line-height: 1.6; }
.section--light .target-card ul {
  list-style: none; padding: 0; margin: 22px 0 0;
  border-top: 1px dashed rgba(8,8,10,0.08);
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.section--light .target-card li {
  font-size: 14px; color: #5b5b66;
  padding-left: 22px; position: relative;
}
.section--light .target-card li::before {
  content: '+'; position: absolute; left: 0;
  font-family: var(--mono); color: #6d28d9;
}

/* === Video frame === */
.video-frame { max-width: 1080px; margin: 0 auto; }
.video-bezel {
  background: rgba(15,15,18,0.85);
  border: 1px solid var(--hair-strong);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 60px rgba(167,139,250,0.08);
  position: relative;
}
.video-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hair);
  background: rgba(255,255,255,0.02);
  position: relative; z-index: 2;
}
.video-bar .dot-r,
.video-bar .dot-y,
.video-bar .dot-g { width: 11px; height: 11px; border-radius: 50%; }
.video-title {
  margin-left: 14px; font-family: var(--mono); font-size: 11px;
  color: #c8c8d0; letter-spacing: 0.04em;
}
.video-aspect {
  position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000;
}
.video-aspect iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* === VIDEO COMING SOON (placeholder) === */
.video-soon {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px 24px;
  background:
    radial-gradient(ellipse at center, rgba(68,153,216,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #0e0e12 0%, #08080a 100%);
  overflow: hidden;
  isolation: isolate;
}
.video-soon-glow {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.16), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: videoSoonPulse 5s ease-in-out infinite;
}
@keyframes videoSoonPulse {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%      { transform: scale(1.08); opacity: 1; }
}
.video-soon-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px;
  color: #ffffff;
  margin-bottom: 4px;
}
.video-soon-icon svg { transform: translateX(2px); width: 64px; height: 64px; }
.video-soon-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e8e8ee;
}
.video-soon-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
}
.video-soon-sub {
  margin: 4px 0 0;
  font-size: 14px; line-height: 1.55;
  color: #d4d4dc;
  max-width: 420px;
}
.video-soon-sub a {
  color: #4499d8;
  text-decoration: none;
  border-bottom: 1px solid rgba(68,153,216,0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.video-soon-sub a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}
@media (max-width: 560px) {
  .video-soon { gap: 12px; padding: 20px 16px; }
  .video-soon-icon { width: 64px; height: 64px; }
  .video-soon-icon svg { width: 36px; height: 36px; }
}
/* === PREZZI === */
.grid-pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1180px) { .grid-pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-pricing { grid-template-columns: 1fr; } }

.price-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #ffffff;
  border: 0;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: none;
  transition: all 0.3s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(8,8,10,0.08);
}

.price-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; color: #6c6c75;
  text-transform: uppercase; margin-bottom: 14px;
}

.price-amount {
  display: flex; align-items: baseline;
  gap: 4px; margin-bottom: 6px;
  color: #08080a;
}
.price-amount .cur {
  font-family: var(--serif); font-weight: 400;
  font-size: 28px; color: #6c6c75;
}
.price-amount b {
  font-family: var(--serif); font-weight: 400;
  font-size: 56px; line-height: 1;
  letter-spacing: -0.04em;
}
.price-amount .cents {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; line-height: 1;
  color: #6c6c75;
  align-self: flex-start;
  margin-top: 6px;
  letter-spacing: -0.02em;
}
.price-amount .per {
  font-family: var(--mono); font-size: 12px;
  color: #6c6c75; margin-left: 6px;
  letter-spacing: 0.04em;
}

/* Variante "Su richiesta" (FLEET) — stessa altezza del blocco prezzo numerico */
.price-amount--custom {
  min-height: 56px;
  align-items: center;
}
.price-amount--custom .custom-label {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #08080a;
}
.price-card--featured .price-amount--custom .custom-label { color: #ffffff; }
.price-card--featured .price-amount .cents { color: #d4d4dc; }

.price-sub {
  font-size: 13px; color: #5b5b66;
  line-height: 1.55; margin: 0 0 22px;
  min-height: 38px;
}

.price-card ul {
  list-style: none; padding: 0; margin: 0 0 26px;
  border-top: 1px dashed rgba(8,8,10,0.10);
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.price-card li {
  font-size: 13.5px; color: #3f3f48;
  padding-left: 22px; position: relative;
  line-height: 1.5;
}
.price-card li b { font-weight: 600; color: #08080a; }
.price-card li::before {
  content: '✓'; position: absolute; left: 0;
  font-family: var(--mono); color: #6d28d9;
  font-size: 12px; font-weight: 700;
}

.price-cta-wrap {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.price-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 16px;
  border-radius: 999px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid rgba(8,8,10,0.16);
  color: #08080a;
  background: transparent;
  transition: all 0.2s ease;
  width: 100%;
}
.price-trial {
  margin: 12px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #08080a;
}
.price-nocard {
  margin: 4px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  color: #6c6c75;
}
.price-cta:hover {
  background: #08080a; color: #ffffff;
  border-color: #08080a;
}

.price-card--featured {
  background: linear-gradient(180deg, #08080a 0%, #14122a 100%);
  border: 0;
  color: var(--ink);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(8,8,10,0.18);
}
.price-card--featured .price-tag { color: #a4a4ac; }
.price-card--featured .price-amount { color: #ffffff; }
.price-card--featured .price-amount .cur,
.price-card--featured .price-amount .per { color: #a4a4ac; }
.price-card--featured .price-sub { color: #d4d4dc; }
.price-card--featured ul { border-top-color: rgba(255,255,255,0.10); }
.price-card--featured li { color: #d4d4dc; }
.price-card--featured li b { color: #ffffff; }
.price-card--featured li::before { color: #22d3ee; }
.price-card--featured .price-cta {
  background: linear-gradient(120deg, #a78bfa 0%, #22d3ee 100%);
  color: #08080a; border: 1px solid transparent;
  font-weight: 600;
}
.price-card--featured .price-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.price-card--featured .price-trial { color: #ffffff; }
.price-card--featured .price-nocard { color: #a4a4ac; }

.price-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: #8ed0f5;
  color: #08080a; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  white-space: nowrap;
}

.price-footnote {
  margin-top: 36px;
  text-align: center;
  font-family: var(--mono); font-size: 12px;
  color: #6c6c75; letter-spacing: 0.04em;
}

/* === CTA === */
.cta {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative; z-index: 3;
}
.cta-card {
  border: 0;
  border-radius: 24px;
  padding: clamp(48px, 8vh, 84px) clamp(32px, 5vw, 64px);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(167,139,250,0.12), transparent 70%),
    rgba(255,255,255,0.025);
  text-align: center;
}
.cta-card .display-2 { margin-left: auto; margin-right: auto; max-width: 720px; }
.cta-card .lead { margin: 0 auto 36px; }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--soft); text-transform: uppercase;
}
.cta-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  animation: pulse 2s ease-in-out infinite;
}
.cta-calendar-wrap {
  display: flex; justify-content: center;
  margin: 32px auto 0; max-width: 760px;
}
.cta-foot {
  display: flex; justify-content: center; gap: 14px;
  margin-top: 22px;
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.06em;
}

/* === Footer === */
.footer {
  position: relative;
  z-index: 3;
  background: #0a0a0a;
  color: #fff;
  padding: 0;
}

/* Newsletter strip — variante CHIARA */
.footer-news-wrap {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border-bottom: 1px solid rgba(8,8,10,0.08);
}
.footer-news-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 100% at 0% 50%, rgba(167,139,250,0.10), transparent 70%),
    radial-gradient(60% 100% at 100% 50%, rgba(34,211,238,0.08), transparent 70%);
  pointer-events: none;
}
.footer-newsletter {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 28px 56px;
}
@media (max-width: 880px) {
  .footer-newsletter { grid-template-columns: 1fr; gap: 28px; }
}

/* Tema chiaro */
.footer-newsletter--light .eyebrow { color: #6c6c75; }
.footer-newsletter--light .eyebrow .dot {
  background: linear-gradient(135deg, #6d28d9, #0891b2);
  box-shadow: 0 0 10px rgba(109,40,217,0.35);
}
.footer-newsletter--light .footer-news-text h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.025em;
  margin: 14px 0 8px; color: #08080a;
}
.footer-newsletter--light .footer-news-text p {
  margin: 0; color: #5b5b66; font-size: 14px;
}
.footer-newsletter--light .grad {
  background: linear-gradient(120deg, #08080a 0%, #0d2f4f 40%, #4499d8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Form pill chiaro */
.footer-newsletter--light .footer-news-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  box-shadow: none;
}
.footer-news-row {
  display: flex; gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(8,8,10,0.10);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 4px 14px rgba(8,8,10,0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.footer-news-row:focus-within {
  border-color: #6d28d9;
  box-shadow: 0 4px 24px rgba(109,40,217,0.15);
}
.footer-newsletter--light .footer-news-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0; outline: none;
  font-family: var(--sans); font-size: 14px;
  color: #08080a;
  padding: 10px 4px;
  min-width: 0;
}
.footer-newsletter--light .footer-news-form input[type="email"]::placeholder { color: #9c9ca5; }
.footer-newsletter--light .footer-news-form .btn-primary {
  padding: 10px 22px;
  font-size: 13px;
  flex-shrink: 0;
  background: #08080a;
  color: #ffffff;
  border-color: #08080a;
}
.footer-newsletter--light .footer-news-form .btn-primary:hover {
  background: linear-gradient(120deg, #6d28d9 0%, #0891b2 100%);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(109,40,217,0.25);
}
.footer-news-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: #5b5b66;
  cursor: pointer;
}
.footer-news-privacy input {
  margin: 2px 0 0;
  accent-color: #08080a;
}
.footer-newsletter--light .footer-news-privacy a {
  color: #08080a;
  text-decoration: underline;
}
.footer-newsletter--light .footer-news-privacy a:hover {
  color: #2c7fbf;
}
.footer-news-error {
  margin: 0;
  font-size: 12px;
  color: #b42318;
}

.footer a { text-decoration: none; color: rgba(255,255,255,.62); }
.footer a:hover { color: #fff; }

.footer-inner { padding-top: 64px; padding-bottom: 28px; }

.ft-reviews {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.tp-badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
}
.tp-badge .tp-word {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 450;
  letter-spacing: -.02em;
  color: #fff;
}
.tp-stars { display: flex; gap: 3px; }
.tp-stars span {
  width: 22px; height: 22px;
  background: #00b67a;
  display: grid; place-items: center;
}
.tp-stars svg { width: 12px; height: 12px; }
.tp-score { font-size: 13.5px; color: rgba(255,255,255,.7); }
.tp-score strong { color: #fff; font-weight: 450; }
.tp-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.tp-quotes figure { margin: 0; }
.tp-quotes p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
  margin: 0;
}
.tp-quotes figcaption {
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,.58);
}

.ft-main {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .9fr;
  gap: 40px 32px;
  padding-bottom: 40px;
}
.ft-brand p {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,.68);
  max-width: 280px;
  line-height: 1.5;
}
.ft-os {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}
.ft-os span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
}
.ft-os svg { width: 16px; height: 16px; flex-shrink: 0; }

.ft-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 450;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin: 0 0 14px;
}
.ft-col a,
.ft-col span {
  display: block;
  font-size: 14px;
  margin-bottom: 9px;
  color: rgba(255,255,255,.7);
}
.ft-col a:hover { color: #fff; }

.ft-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 4px 0 18px;
}
.ft-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  background: none;
  border: 0;
  padding: 0;
  box-shadow: none;
}
.ft-social a:hover { color: #fff; }
.ft-social svg { width: 18px; height: 18px; display: block; }

.ft-legal {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.4);
}

.ft-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.ft-bar-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.ft-bar-links a { color: rgba(255,255,255,.5); }
.ft-bar-links a:hover { color: #fff; }

@media (max-width: 900px) {
  .ft-reviews, .ft-main { grid-template-columns: 1fr; gap: 28px; }
  .tp-quotes { grid-template-columns: 1fr; }
}

/* === Accessibility helpers === */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* === Reveal animation === */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); will-change: auto; }

/* === Misc === */
::selection { background: var(--grad-1); color: #08080a; }
.section--light ::selection { background: #08080a; color: #f5f5f7; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Bg grain (sottilissima) */
.bg-grain {
  position: fixed; inset: 0;
  pointer-events: none; opacity: 0.025; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* === SECTION--SOFT (grigio chiarissimo) === */
#screenshot.section--soft {
  padding-top: clamp(36px, 6vh, 56px);
  padding-bottom: 24px;
}
#approfondimenti.section {
  padding-top: 40px;
  padding-bottom: 40px;
}
#moduli.section {
  padding-top: 40px;
}
.section--soft {
  background: var(--paper);
  color: #08080a;
}
.section--soft .display-2 { color: #08080a; }
.section--soft .lead { color: #5b5b66; }
.section--soft .lead em { color: #08080a; }
.section--soft .eyebrow { color: #6c6c75; }
.section--soft .eyebrow .dot {
  background: linear-gradient(135deg, #6d28d9, #0891b2);
  box-shadow: 0 0 10px rgba(109,40,217,0.35);
}
.section--soft .grad {
  background: linear-gradient(120deg, #0d2f4f 0%, #2c7fbf 45%, #4499d8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}
.section--soft .grid-modules {
  background: transparent;
  border: 0;
}
.section--soft .card {
  background: #ffffff;
}
.section--soft .card:hover { background: #fafafc; }
.section--soft .card-icon { color: #08080a; }
.section--soft .card h3 { color: #08080a; }
.section--soft .card p { color: #5b5b66; }

.section--soft .step {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.section--soft .step-num { color: #6c6c75; }
.section--soft .step h3 { color: #08080a; }
.section--soft .step p { color: #5b5b66; }

.section--soft .target-card {
  background: #ffffff;
  border: 0;
  box-shadow: none;
}
.section--soft .target-card:hover {
  box-shadow: 0 12px 32px rgba(8,8,10,0.06);
}
.section--soft .target-card .target-id {
  color: #6c6c75;
}
.section--soft .target-card h3 {
  color: #08080a;
}
.section--soft .target-card > p {
  color: #5b5b66;
}
.section--soft .target-card ul {
  border-top: 1px dashed rgba(8,8,10,0.08);
}
.section--soft .target-card li {
  color: #5b5b66;
}
.section--soft .target-card li::before {
  color: #6d28d9;
}
.section--soft .target-card--featured {
  background: linear-gradient(180deg, #08080a 0%, #1a1a1f 100%);
  border-color: #08080a;
  color: var(--ink);
}
.section--soft .target-card--featured h3,
.section--soft .target-card--featured > p,
.section--soft .target-card--featured li { color: var(--ink); }
.section--soft .target-card--featured .target-id { color: var(--soft); }
.section--soft .target-card--featured ul { border-top: 1px dashed var(--hair); }
.section--soft .target-card--featured li { color: var(--soft); }
.section--soft .target-card--featured li::before { color: var(--grad-2); }
.section--soft ::selection { background: #08080a; color: #f5f5f7; }

.section--soft .planner-features li strong { color: #08080a; }
.section--soft .planner-features li span   { color: #5b5b66; }
.section--soft .planner-features li svg    { color: #4499d8; }

/* === PARTNERS / TECNOLOGIE === */
.partners-section {
  padding: 72px 0;
}
.partners-head {
  text-align: center;
  margin-bottom: 40px;
}
.partners-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.partners-lead {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: #1a1a1f;
  max-width: 540px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 8px;
  background: #fff;
  border: 1px solid rgba(8, 8, 10, 0.08);
  border-radius: 20px;
}
.partner-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1 1 160px;
  min-width: 140px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  cursor: default;
}
.partner-tile + .partner-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(8, 8, 10, 0.08);
}
.partner-logo {
  display: grid;
  place-items: center;
  width: 120px;
  height: 80px;
  border-radius: 0;
  background: none;
}
.partner-logo svg,
.partner-tile svg {
  display: block;
  width: auto;
  height: 64px;
  max-width: 120px;
}
.partner-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6c6c75;
}

@media (max-width: 760px) {
  .partners-section { padding: 56px 0; }
  .partners-row {
    padding: 12px 8px;
    border-radius: 16px;
  }
  .partner-tile {
    flex: 1 1 40%;
    min-width: 120px;
    padding: 18px 12px;
    gap: 12px;
  }
  .partner-tile + .partner-tile::before { display: none; }
  .partner-logo {
    width: 88px;
    height: 52px;
  }
  .partner-logo svg,
  .partner-tile svg {
    height: 40px;
    max-width: 88px;
  }
}

/* === TRUST BADGES (su sfondo chiaro, fuori dalla barra nera) === */
.trust-badges-section {
  position: relative; z-index: 3;
  padding: 36px 0 8px;
  background: var(--paper);
  border: 0;
}
.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0 0;
}
.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-badge-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.trust-badge-item:hover .trust-badge-img {
  filter: grayscale(0);
  transform: scale(1.05);
}
.trust-badge-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #6c6c75;
  font-weight: 500;
}

/* === SCREENSHOT STAGE (immagine sola con parallax + glow) === */
.screenshot-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  perspective: 1800px;
  perspective-origin: 50% 30%;
}
.screenshot-glow {
  display: none;
  position: absolute;
  inset: -80px -120px -40px;
  background:
    radial-gradient(50% 50% at 30% 40%, rgba(167,139,250,0.30), transparent 65%),
    radial-gradient(50% 50% at 70% 60%, rgba(34,211,238,0.22), transparent 65%);
  filter: blur(70px);
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
  animation: screenshotGlowFloat 12s ease-in-out infinite;
}
@keyframes screenshotGlowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 12px) scale(1.05); }
}
.screenshot-hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  position: relative;
  z-index: 1;
  box-shadow: none;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.screenshot-stage:hover .screenshot-hero-img {
  transform: translateY(-4px);
}
.section--soft .screenshot-hero-img {
  box-shadow: none;
}
.screenshot-reflection {
  display: none;
}

/* === POWER PLANNER SECTION === */
.planner-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.planner-layout--reverse {
  grid-template-columns: 1.3fr 1fr;
}
.planner-layout--reverse .planner-visual { order: 1; }
.planner-layout--reverse .planner-text    { order: 2; }
@media (max-width: 980px) {
  .planner-layout { grid-template-columns: 1fr; gap: 48px; }
  .planner-layout--reverse { grid-template-columns: 1fr; }
  .planner-layout--reverse .planner-visual { order: 2; }
  .planner-layout--reverse .planner-text    { order: 1; }
}

/* Phone showcase (App Driver section, no browser chrome) */
.phone-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
.phone-showcase-glow {
  position: absolute;
  width: 70%; height: 70%;
  top: 15%; left: 15%;
  background: radial-gradient(closest-side, rgba(68,153,216,0.25), rgba(167,139,250,0.16) 45%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: phoneShowcaseGlow 6s ease-in-out infinite;
}
@keyframes phoneShowcaseGlow {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.05); }
}
.phone-showcase-img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 26px;
  filter: none;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.phone-showcase-img:hover {
  transform: translateY(-4px) scale(1.01);
}

.planner-features {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.planner-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.planner-features li svg {
  flex-shrink: 0;
  color: var(--grad-2);
  margin-top: 2px;
}
.planner-features li strong {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 2px;
}
.planner-features li span {
  display: block;
  font-size: 14px;
  color: var(--soft);
  line-height: 1.5;
}
#app-driver .planner-features li strong {
  font-size: 19px;
}
#app-driver .planner-features li span {
  font-size: 15px;
}

.planner-frame {
  background: rgba(15,15,18,0.85);
  border: 1px solid var(--hair-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 60px rgba(167,139,250,0.08);
}
.planner-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hair);
  background: rgba(255,255,255,0.02);
}
.planner-bar .dot-r,
.planner-bar .dot-y,
.planner-bar .dot-g { width: 11px; height: 11px; border-radius: 50%; }
.planner-bar .dot-r { background: #ff5f57; }
.planner-bar .dot-y { background: #febc2e; }
.planner-bar .dot-g { background: #28c840; }
.planner-url {
  margin-left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.planner-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Dots colore per il video-bar (riuso) */
.video-bar .dot-r { background: #ff5f57; }
.video-bar .dot-y { background: #febc2e; }
.video-bar .dot-g { background: #28c840; }

/* ==========================================================================
   PAGINA CONTATTI
   ========================================================================== */

/* Aria-current per link nav attivo */
.nav-links a[aria-current="page"] {
  color: #08080a;
  font-weight: 500;
  position: relative;
}
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
}

/* Hero contatti */
.contact-hero {
  position: relative;
  padding: clamp(64px, 10vh, 110px) 0 clamp(48px, 8vh, 80px);
  overflow: hidden;
  background: var(--bg);
  z-index: 3;
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}
.contact-hero-inner.container { margin: 0 auto; }
.contact-hero-title {
  margin: 22px 0 22px;
}
.contact-hero-lead {
  margin: 0 auto 36px;
  max-width: 580px;
}

/* Quick contact pills sotto hero */
.contact-quick {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact-quick-pill:hover {
  border-color: rgba(167,139,250,0.40);
  background: rgba(167,139,250,0.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(167,139,250,0.15);
}
.contact-quick-icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(167,139,250,0.20), rgba(34,211,238,0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.contact-quick-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
  text-align: left;
}
.contact-quick-text i {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
}
.contact-quick-text b {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* Sezione principale */
.contact-main {
  padding: clamp(64px, 10vh, 110px) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Colonna info */
.contact-info .display-2 { margin: 18px 0 18px; }
.contact-info .lead { margin: 0 0 36px; }

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(8,8,10,0.08);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(8,8,10,0.04);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact-info-list li:hover {
  border-color: rgba(8,8,10,0.18);
  box-shadow: 0 12px 30px rgba(8,8,10,0.06);
  transform: translateY(-1px);
}
.contact-info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon--violet {
  background: none;
  color: #6d28d9;
  box-shadow: none;
}
.contact-info-icon--cyan {
  background: none;
  color: #0891b2;
  box-shadow: none;
}
.contact-info-icon--pink {
  background: none;
  color: #db2777;
  box-shadow: none;
}
.contact-info-icon--gradient {
  background: none;
  color: #2c7fbf;
  box-shadow: 0 4px 12px rgba(109,40,217,0.18);
}
.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-info-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6c6c75;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.contact-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  background: rgba(34,197,94,0.10);
  color: #15803d;
  border-radius: 999px;
  font-size: 9.5px;
  letter-spacing: 0.10em;
  font-weight: 600;
  text-transform: uppercase;
}
.contact-info-tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94, 0.6);
  animation: trustCellPulse 1.8s ease-out infinite;
}
.contact-info-value {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: #08080a;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
  word-break: break-word;
}
a.contact-info-value:hover {
  color: #6d28d9;
}
.contact-info-value--static { cursor: default; }
.contact-info-meta {
  font-family: var(--sans);
  font-size: 12.5px;
  color: #6c6c75;
}

/* Trust badges in colonna info */
.contact-info-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px dashed rgba(8,8,10,0.10);
}
.contact-info-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(8,8,10,0.10);
  border-radius: 999px;
  background: #ffffff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5b5b66;
}
.contact-info-trust-item svg { color: #16a34a; flex-shrink: 0; }

/* Colonna form */
.contact-form-wrap {
  position: sticky;
  top: 90px;
}
@media (max-width: 980px) {
  .contact-form-wrap { position: static; top: auto; }
}
.contact-form-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(8,8,10,0.08);
  border-radius: 24px;
  padding: 36px;
  box-shadow:
    0 30px 80px rgba(8,8,10,0.10),
    0 0 0 1px rgba(8,8,10,0.04);
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #6d28d9 0%, #0891b2 50%, #db2777 100%);
}
@media (max-width: 560px) {
  .contact-form-card { padding: 26px 22px; border-radius: 20px; }
}

.contact-form-head { margin-bottom: 26px; }
.contact-form-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6d28d9;
  background: rgba(109,40,217,0.08);
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 14px;
}
.contact-form-head h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.025em;
  margin: 0 0 6px;
  color: #08080a;
}
.contact-form-head p {
  margin: 0;
  font-size: 14px;
  color: #5b5b66;
}

/* Form fields (riusa stili modal-* con leggera variazione) */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .contact-form .modal-row { grid-template-columns: 1fr; }
}

/* Textarea */
.contact-form textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: #08080a;
  background: #fafafc;
  border: 1px solid rgba(8,8,10,0.10);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.contact-form textarea::placeholder { color: #9c9ca5; }
.contact-form textarea:focus {
  border-color: #6d28d9;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(109,40,217,0.12);
}

.contact-form-actions {
  margin-top: 8px;
}
.contact-form-submit {
  width: 100%;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Stato success form contatti */
.contact-form-success {
  text-align: center;
  padding: 40px 12px 12px;
}
.contact-form-success h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: #08080a;
}
.contact-form-success p {
  font-size: 14px;
  color: #5b5b66;
  margin: 0 0 28px;
  line-height: 1.55;
}
.contact-form-success p b {
  color: #08080a;
  font-weight: 600;
}
.contact-form-success .contact-form-submit {
  max-width: 240px;
  margin: 0 auto;
}

/* ==========================================================================
   PAGINA PROVA GRATUITA (trial)
   ========================================================================== */

/* Hero trial */
.trial-hero {
  position: relative;
  padding: clamp(72px, 12vh, 130px) 0 clamp(56px, 9vh, 96px);
  overflow: hidden;
  background: var(--bg);
  z-index: 3;
}
.trial-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}
.trial-hero-inner.container { margin: 0 auto; }

/* Live badge */
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.28);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #4ade80;
  margin-bottom: 22px;
}
.trial-badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94, 0.7);
  animation: trustCellPulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

.trial-hero-title { margin: 12px 0 22px; }
.trial-hero-lead {
  margin: 0 auto 36px;
  max-width: 580px;
}

/* Form pill (email + button) */
.trial-form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  padding: 7px 7px 7px 22px;
  max-width: 480px;
  margin: 0 auto 22px;
  transition: all 0.25s ease;
  position: relative;
}
.trial-form:focus-within {
  border-color: rgba(167,139,250,0.50);
  background: rgba(167,139,250,0.06);
  box-shadow: 0 0 40px rgba(167,139,250,0.20);
}
.trial-form input {
  flex: 1;
  background: transparent;
  border: 0; outline: none;
  font-family: var(--sans); font-size: 14.5px;
  color: var(--ink);
  padding: 11px 4px;
  min-width: 0;
}
.trial-form input::placeholder { color: var(--muted); }
.trial-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(120deg, #a78bfa 0%, #22d3ee 100%);
  color: #08080a;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 22px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  letter-spacing: -0.005em;
  flex-shrink: 0;
}
.trial-form-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(167,139,250,0.35);
}
.trial-form-btn svg { stroke-width: 2.5; }

/* CTA bottone "Attiva ora gratis" — sostituisce il vecchio form email */
.trial-cta-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 22px;
}
.trial-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(120deg, #a78bfa 0%, #22d3ee 100%);
  color: #08080a;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 18px 36px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 24px rgba(167,139,250,0.25);
}
.trial-cta-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(167,139,250,0.45);
}
.trial-cta-btn:active {
  transform: translateY(0);
}
.trial-cta-btn svg { stroke-width: 2.5; }

/* Trust list sotto form */
.trial-trust {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}
.trial-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--soft);
  letter-spacing: 0.06em;
}
.trial-trust li svg { color: #22c55e; flex-shrink: 0; }

/* === Steps "Come funziona" === */
.trial-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
@media (max-width: 880px) { .trial-steps { grid-template-columns: 1fr; gap: 18px; } }

.trial-step {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(8,8,10,0.08);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(8,8,10,0.04);
  transition: all 0.3s ease;
}
.trial-step:hover {
  border-color: rgba(8,8,10,0.18);
  box-shadow: 0 18px 48px rgba(8,8,10,0.08);
  transform: translateY(-2px);
}
.trial-step-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #6d28d9 0%, #0891b2 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  opacity: 0.18;
  line-height: 1;
}
.trial-step-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(109,40,217,0.10), rgba(8,145,178,0.06));
  color: #6d28d9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px rgba(109,40,217,0.18);
}
.trial-step h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  color: #08080a;
}
.trial-step p {
  font-size: 14px;
  color: #5b5b66;
  line-height: 1.55;
  margin: 0;
}

/* === Sezione Piano FREE === */
.trial-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .trial-plan-grid { grid-template-columns: 1fr; gap: 40px; }
}

.trial-plan-text .display-2 { margin: 18px 0 22px; }
.trial-plan-text .lead { margin: 0 0 32px; }
.trial-plan-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Plan card */
.trial-plan-card {
  position: relative;
  background: linear-gradient(180deg, #14122a 0%, #0d0d1a 100%);
  border: 1px solid rgba(167,139,250,0.30);
  border-radius: 24px;
  padding: 42px 36px;
  box-shadow:
    0 30px 80px rgba(167,139,250,0.18),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.trial-plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.6), rgba(34,211,238,0.6), transparent);
}
.trial-plan-card::after {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.trial-plan-card > * { position: relative; z-index: 1; }

.trial-plan-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #08080a;
  background: linear-gradient(120deg, #a78bfa, #22d3ee);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.trial-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #ffffff;
}
.trial-plan-price .cur {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; color: #a4a4ac;
}
.trial-plan-price b {
  font-family: var(--serif); font-weight: 400;
  font-size: 72px; line-height: 1;
  letter-spacing: -0.04em;
}
.trial-plan-price .per {
  font-family: var(--mono); font-size: 13px;
  color: #a4a4ac; margin-left: 6px;
  letter-spacing: 0.04em;
}
.trial-plan-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: #a4a4ac;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 8px 0 26px;
}

.trial-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px dashed rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trial-plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #d4d4dc;
}
.trial-plan-features li b {
  color: #ffffff;
  font-weight: 600;
}
.trial-feature-check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(34,197,94,0.20), rgba(34,197,94,0.06));
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(34,197,94,0.30);
}

.trial-plan-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, #a78bfa 0%, #22d3ee 100%);
  color: #08080a;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.trial-plan-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(167,139,250,0.35);
}

.trial-plan-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #6c6c75;
  text-align: center;
}
.trial-plan-foot svg { color: #4ade80; flex-shrink: 0; }

/* === FAQ === */
.trial-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 880px) { .trial-faq-grid { grid-template-columns: 1fr; } }

.trial-faq {
  background: #ffffff;
  border: 1px solid rgba(8,8,10,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.trial-faq:hover {
  border-color: rgba(8,8,10,0.18);
  box-shadow: 0 8px 24px rgba(8,8,10,0.06);
}
.trial-faq[open] {
  border-color: rgba(109,40,217,0.30);
  box-shadow: 0 12px 30px rgba(109,40,217,0.10);
}

.trial-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  color: #08080a;
  letter-spacing: -0.005em;
  user-select: none;
}
.trial-faq summary::-webkit-details-marker { display: none; }
.trial-faq summary::marker { display: none; content: ''; }

.trial-faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(109,40,217,0.08);
  color: #6d28d9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.trial-faq[open] .trial-faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(120deg, #6d28d9, #0891b2);
  color: #ffffff;
}

.trial-faq p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 13.5px;
  color: #5b5b66;
  line-height: 1.6;
}
.trial-faq p a {
  color: #6d28d9;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(109,40,217,0.30);
}
.trial-faq p a:hover { text-decoration-color: #6d28d9; }

/* === CTA Finale === */
.trial-final-cta { text-align: center; }
.trial-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: 32px 0 22px;
}
.trial-cta-primary {
  font-size: 15px;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trial-cta-primary svg { stroke-width: 2.5; }
.trial-demo-schedule {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; justify-content: center;
}
.trial-demo-label {
  font-family: var(--sans); font-size: 14px;
  color: var(--muted); font-weight: 500;
}

/* ==========================================================================
   PAGINA NOLEGGIO BUS & TPL
   ========================================================================== */

/* Hero bus */
.bus-hero {
  position: relative;
  padding: clamp(64px, 10vh, 110px) 0 clamp(56px, 9vh, 96px);
  overflow: hidden;
  background: var(--bg);
  z-index: 3;
}
.bus-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1080px) {
  .bus-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.bus-hero-text .display { margin: 22px 0 22px; }

/* Stats sotto hero */
.bus-hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  flex-wrap: wrap;
}
.bus-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bus-stat b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.bus-stat i {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
}

/* === Mockup mappa live === */
.bus-map-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.bus-map-frame {
  position: relative;
  background: linear-gradient(180deg, #14122a 0%, #0a0a14 100%);
  border: 1px solid rgba(167,139,250,0.20);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.55),
    0 0 80px rgba(167,139,250,0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.bus-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.30);
}
.bus-map-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.bus-map-title svg { color: var(--grad-2); }
.bus-map-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  color: #4ade80;
}

.bus-map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(60% 80% at 30% 30%, rgba(167,139,250,0.10), transparent 70%),
    radial-gradient(60% 80% at 80% 80%, rgba(34,211,238,0.08), transparent 70%),
    #0d0d1a;
}
.bus-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Pannello bus selezionato */
.bus-map-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(20,20,28,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.bus-map-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bus-map-card-id {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #a78bfa;
  font-weight: 600;
}
.bus-map-card-status {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #08080a;
  background: linear-gradient(120deg, #a78bfa, #22d3ee);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}
.bus-map-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  font-size: 11.5px;
}
.bus-map-card-row span:first-child {
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 9.5px;
}
.bus-map-card-row b {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
}
.bus-map-card-bar {
  margin-top: 10px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.bus-map-card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ade80, #fbbf24);
  border-radius: 2px;
  transition: width 0.6s ease;
}
.bus-map-card-meta {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: #fbbf24;
  letter-spacing: 0.04em;
}

/* Modules grid bus (4 colonne) */
.grid-modules--bus {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) { .grid-modules--bus { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-modules--bus { grid-template-columns: 1fr; } }

/* === Feature grid (testo + visual) === */
.bus-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.bus-feature-grid--reverse {
  grid-template-columns: 1.2fr 1fr;
}
@media (max-width: 980px) {
  .bus-feature-grid,
  .bus-feature-grid--reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bus-feature-grid--reverse .bus-feature-visual { order: 2; }
  .bus-feature-grid--reverse .bus-feature-text { order: 1; }
}

.bus-feature-text .display-2 { margin: 18px 0 22px; }
.bus-feature-text .lead { margin: 0 0 32px; }

/* Feature list */
.bus-feature-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bus-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.bus-feature-list li > svg {
  flex-shrink: 0;
  color: #4ade80;
  margin-top: 4px;
  background: rgba(34,197,94,0.10);
  padding: 4px;
  border-radius: 6px;
  width: 24px;
  height: 24px;
  box-sizing: content-box;
  box-shadow: inset 0 0 0 1px rgba(34,197,94,0.20);
}
.bus-feature-list li > svg { width: 16px; height: 16px; padding: 5px; }
.bus-feature-list li strong {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.bus-feature-list li span {
  display: block;
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.5;
}

/* Console GPS */
.bus-console {
  background: rgba(15,15,20,0.92);
  border: 1px solid var(--hair-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    0 0 60px rgba(34,211,238,0.10),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.bus-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hair);
  background: rgba(255,255,255,0.02);
}
.bus-console-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.bus-console-title svg { color: var(--grad-2); }
.bus-console-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.bus-console-rows {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.bus-console-row {
  display: grid;
  grid-template-columns: 50px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}
.bus-console-row:hover { background: rgba(255,255,255,0.02); }
.bus-console-row:last-child { border-bottom: 0; }
.bus-console-row--alert .bus-row-id { color: #fbbf24; }

.bus-row-id {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--grad-1);
  letter-spacing: 0.06em;
}
.bus-row-route {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bus-row-speed {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-weight: 500;
}
.bus-row-speed i {
  font-style: normal;
  color: var(--muted);
  font-size: 10px;
  margin-left: 2px;
}
.bus-row-status {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.bus-row-status--blue { background: rgba(34,211,238,0.14); color: #67e8f9; }
.bus-row-status--yellow { background: rgba(251,191,36,0.14); color: #fcd34d; }
.bus-row-status--gray { background: rgba(255,255,255,0.06); color: var(--muted); }
.bus-row-status--red { background: rgba(239,68,68,0.14); color: #fca5a5; }

.bus-console-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid var(--hair);
  background: rgba(0,0,0,0.20);
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--soft);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 10px;
}
.bus-console-foot b { color: var(--ink); font-weight: 500; }
.bus-console-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  letter-spacing: 0.10em;
}

/* === Tachigrafo card === */
.bus-tacho-card {
  background: #ffffff;
  border: 1px solid rgba(8,8,10,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(8,8,10,0.06);
}
.bus-tacho-head {
  padding: 22px 24px 18px;
  background: linear-gradient(135deg, rgba(109,40,217,0.06), rgba(8,145,178,0.04));
  border-bottom: 1px solid rgba(8,8,10,0.06);
}
.bus-tacho-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6d28d9;
  background: rgba(109,40,217,0.10);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 10px;
}
.bus-tacho-head h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: #08080a;
  margin: 0;
}

.bus-tacho-list {
  display: flex;
  flex-direction: column;
}
.bus-tacho-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px dashed rgba(8,8,10,0.06);
}
.bus-tacho-row:last-child { border-bottom: 0; }
.bus-tacho-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bus-tacho-row--ok .bus-tacho-icon {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}
.bus-tacho-row--warn .bus-tacho-icon {
  background: rgba(251,191,36,0.14);
  color: #d97706;
}
.bus-tacho-row--alert .bus-tacho-icon {
  background: rgba(239,68,68,0.12);
  color: #dc2626;
}
.bus-tacho-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.bus-tacho-text strong {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  color: #08080a;
  letter-spacing: -0.005em;
}
.bus-tacho-text span {
  font-size: 12px;
  color: #5b5b66;
  line-height: 1.4;
}
.bus-tacho-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: #6c6c75;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(8,8,10,0.04);
  flex-shrink: 0;
}
.bus-tacho-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #fafafc;
  border-top: 1px solid rgba(8,8,10,0.06);
  font-family: var(--mono);
  font-size: 11px;
  color: #5b5b66;
  letter-spacing: 0.06em;
}
.bus-tacho-foot b { color: #08080a; font-weight: 600; }
.bus-tacho-link {
  color: #6d28d9;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.005em;
  font-family: var(--sans);
  font-size: 12.5px;
  transition: color 0.2s ease;
}
.bus-tacho-link:hover { color: #08080a; }

/* Compliance grid (sotto tachigrafo) */
.bus-compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}
@media (max-width: 480px) { .bus-compliance-grid { grid-template-columns: 1fr; } }

.bus-compliance-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(8,8,10,0.08);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.bus-compliance-item:hover {
  border-color: rgba(109,40,217,0.30);
  box-shadow: 0 8px 24px rgba(8,8,10,0.06);
}
.bus-compliance-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #6d28d9, #0891b2);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  line-height: 1;
}
.bus-compliance-num i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 12px;
  background: none;
  -webkit-text-fill-color: #6c6c75;
  color: #6c6c75;
  margin-left: 2px;
  letter-spacing: 0.04em;
}
.bus-compliance-label {
  font-family: var(--mono);
  font-size: 10.5px;
  color: #5b5b66;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === Rules grid (Tempi guida CE 561) === */
.bus-rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .bus-rules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bus-rules-grid { grid-template-columns: 1fr; } }

.bus-rule {
  background: var(--bg-card);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 28px 26px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bus-rule:hover {
  border-color: var(--hair-strong);
  transform: translateY(-2px);
  background: rgba(255,255,255,0.03);
}
.bus-rule-meta { margin-bottom: 18px; }
.bus-rule-tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--grad-2);
  background: rgba(34,211,238,0.10);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.bus-rule-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.bus-rule-value b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.bus-rule-value span {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--soft);
  letter-spacing: 0.04em;
}
.bus-rule h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.bus-rule p {
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   MODAL — Iscrizione Newsletter (premium)
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    0 50px 120px rgba(0,0,0,0.55),
    0 0 0 1px rgba(8,8,10,0.04),
    inset 0 1px 0 rgba(255,255,255,0.5);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}
.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(8,8,10,0.10);
  background: rgba(255,255,255,0.9);
  color: #6c6c75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background: #08080a;
  color: #ffffff;
  border-color: #08080a;
  transform: rotate(90deg);
}

.modal-state {
  padding: 40px 36px 32px;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 560px) {
  .modal-state { padding: 32px 22px 22px; }
}

/* Aurora dietro alla modal head */
.modal-aurora {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}
.modal-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.30;
}
.modal-aurora span:nth-child(1) {
  width: 280px; height: 280px;
  top: -120px; left: -60px;
  background: radial-gradient(circle, #a78bfa, transparent 60%);
}
.modal-aurora span:nth-child(2) {
  width: 220px; height: 220px;
  top: -100px; right: -40px;
  background: radial-gradient(circle, #22d3ee, transparent 60%);
}

/* Modal head */
.modal-head {
  position: relative;
  margin-bottom: 26px;
}
.modal-head .eyebrow {
  color: #6c6c75;
}
.modal-head .eyebrow .dot {
  background: linear-gradient(135deg, #6d28d9, #0891b2);
  box-shadow: 0 0 10px rgba(109,40,217,0.35);
}
.modal-head h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.025em;
  margin: 12px 0 8px;
  color: #08080a;
}
.modal-head h3 em {
  font-style: normal;
  background: linear-gradient(120deg, #6d28d9 0%, #0891b2 50%, #db2777 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.modal-head p {
  margin: 0;
  font-size: 14px;
  color: #5b5b66;
  line-height: 1.5;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .modal-row { grid-template-columns: 1fr; }
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.modal-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6c6c75;
  font-weight: 500;
}
.modal-field .req { color: #db2777; font-style: normal; }

.modal-field input[type="text"],
.modal-field input[type="email"],
.modal-field input[type="tel"],
.modal-field input[type="number"],
.modal-field input[type="url"],
.modal-field select {
  font-family: var(--sans);
  font-size: 14px;
  color: #08080a;
  background: #fafafc;
  border: 1px solid rgba(8,8,10,0.10);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.modal-field input::placeholder { color: #9c9ca5; }
.modal-field input:focus,
.modal-field select:focus {
  border-color: #6d28d9;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(109,40,217,0.12);
}
.modal-field input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #db2777;
}

/* Override autofill scuro di Chrome/Safari */
.modal-field input:-webkit-autofill,
.modal-field input:-webkit-autofill:hover,
.modal-field input:-webkit-autofill:focus,
.modal-field input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fafafc inset !important;
  -webkit-text-fill-color: #08080a !important;
  caret-color: #08080a;
  transition: background-color 9999s ease-in-out 0s;
}
.modal-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset, 0 0 0 4px rgba(109,40,217,0.12) !important;
}
.modal-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%236c6c75' stroke-width='1.6'><polyline points='1 1 6 6 11 1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.modal-input-readonly {
  font-family: var(--mono);
  font-size: 13px;
  color: #08080a;
  background: linear-gradient(135deg, rgba(167,139,250,0.08), rgba(34,211,238,0.06));
  border: 1px solid rgba(109,40,217,0.18);
  border-radius: 10px;
  padding: 12px 14px;
  letter-spacing: 0.01em;
  word-break: break-all;
}

/* Checkbox */
.modal-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  background: #fafafc;
  border: 1px solid rgba(8,8,10,0.06);
  border-radius: 12px;
  margin-top: 4px;
}
.modal-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: #3f3f48;
}
.modal-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.modal-check-box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(8,8,10,0.18);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s ease;
  margin-top: 1px;
}
.modal-check-box svg {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s ease;
}
.modal-check input:checked + .modal-check-box {
  background: linear-gradient(120deg, #6d28d9, #0891b2);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(109,40,217,0.25);
}
.modal-check input:checked + .modal-check-box svg {
  opacity: 1;
  transform: scale(1);
}
.modal-check input:focus-visible + .modal-check-box {
  box-shadow: 0 0 0 4px rgba(109,40,217,0.15);
}
.modal-check-label a {
  color: #6d28d9;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(109,40,217,0.30);
  transition: text-decoration-color 0.2s ease;
}
.modal-check-label a:hover {
  text-decoration-color: #6d28d9;
}
.modal-check--soft {
  padding-top: 8px;
  border-top: 1px dashed rgba(8,8,10,0.10);
  color: #6c6c75;
}

/* Errors */
.modal-error {
  display: none;
  font-family: var(--sans);
  font-size: 11.5px;
  color: #db2777;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  margin-top: -2px;
}
.modal-error.is-visible {
  display: block;
}
.modal-field.has-error input,
.modal-field.has-error select {
  border-color: #db2777;
  background: rgba(219,39,119,0.04);
}

/* Actions */
.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.modal-btn-ghost,
.modal-btn-primary {
  flex: 1;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid;
  letter-spacing: -0.005em;
  min-width: 140px;
}
.modal-btn-ghost {
  background: transparent;
  color: #08080a;
  border-color: rgba(8,8,10,0.16);
}
.modal-btn-ghost:hover {
  background: rgba(8,8,10,0.04);
  border-color: rgba(8,8,10,0.30);
}
.modal-btn-primary {
  background: linear-gradient(120deg, #08080a 0%, #1a1a1f 100%);
  color: #ffffff;
  border-color: #08080a;
}
.modal-btn-primary:hover {
  background: linear-gradient(120deg, #6d28d9 0%, #0891b2 100%);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(109,40,217,0.25);
}
.modal-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.modal-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #6c6c75;
  justify-content: center;
}
.modal-trust svg { color: #6d28d9; flex-shrink: 0; }

/* Success state */
.modal-state--success {
  text-align: center;
  padding: 56px 36px 40px;
}
.modal-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}
.success-circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: drawCircle 0.6s ease-out forwards;
}
.success-check {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.4s 0.5s ease-out forwards;
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.modal-state--success h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: #08080a;
}
.modal-state--success p {
  font-size: 14px;
  color: #5b5b66;
  margin: 0 0 28px;
  line-height: 1.55;
}
.modal-state--success p b {
  color: #08080a;
  font-weight: 600;
}
.modal-state--success .modal-btn-primary {
  flex: none;
  display: inline-block;
  min-width: 200px;
}

/* Body lock quando modal aperta */
body.modal-open {
  overflow: hidden;
}

/* =====================================================================
   PAGINA: CHI SIAMO
   ===================================================================== */
.about-hero {
  position: relative;
  padding: clamp(80px, 14vh, 160px) 0 clamp(80px, 12vh, 140px);
  overflow: hidden;
  background: var(--bg);
  z-index: 3;
}
.about-stage {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}
.about-stage-svg {
  width: 100%; height: 100%;
  display: block;
}
.about-hero-inner {
  position: relative; z-index: 4;
  text-align: center;
  max-width: 880px;
}
.about-hero-title {
  margin: 18px auto 24px;
}
.about-hero-lead {
  margin: 0 auto 56px;
  max-width: 680px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 56px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--hair-strong);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}
@media (max-width: 760px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 26px 18px; }
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.about-stat b {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #a78bfa 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-stat i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  line-height: 1.5;
}
.about-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =====================================================================
   PAGINA: LAVORA CON NOI
   ===================================================================== */
.jobs-hero {
  position: relative;
  padding: clamp(80px, 14vh, 160px) 0 clamp(80px, 12vh, 140px);
  overflow: hidden;
  background: var(--bg);
  z-index: 3;
}
.jobs-hero-inner {
  position: relative; z-index: 4;
  max-width: 920px;
  text-align: center;
}
.jobs-empty-card {
  position: relative;
  margin: 22px auto 64px;
  padding: 56px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hair-strong);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  text-align: center;
}
@media (max-width: 600px) {
  .jobs-empty-card { padding: 40px 24px; }
}
.jobs-empty-card::before {
  content: "";
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(167,139,250,0.18), transparent 40%, transparent 60%, rgba(34,211,238,0.18));
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.5;
}
.jobs-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px; height: 88px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(167,139,250,0.18), rgba(34,211,238,0.18));
  border: 1px solid var(--hair-strong);
  color: var(--ink);
  margin-bottom: 24px;
}
.jobs-empty-title {
  font-size: clamp(40px, 6vw, 64px);
  margin: 0 auto 18px;
  max-width: 700px;
}
.jobs-empty-lead {
  margin: 0 auto 32px;
  max-width: 580px;
}
.jobs-empty-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.jobs-empty-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--soft);
  text-decoration: none;
  padding: 10px 14px;
  border: 1px dashed var(--hair-strong);
  border-radius: 8px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.jobs-empty-mail:hover {
  color: var(--ink);
  border-color: rgba(255,255,255,0.35);
}

.jobs-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
@media (max-width: 760px) {
  .jobs-values { grid-template-columns: 1fr; }
}
.jobs-value {
  padding: 28px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--hair-strong);
  border-radius: 14px;
  transition: transform 0.25s cubic-bezier(0.2,0.8,0.2,1), background 0.25s ease, border-color 0.25s ease;
}
.jobs-value:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.20);
}
.jobs-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--ink);
}
.jobs-value-icon--violet { background: none; color: #c4b5fd; }
.jobs-value-icon--cyan   { background: none; color: #67e8f9; }
.jobs-value-icon--pink   { background: none; color: #f9a8d4; }
.jobs-value h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.jobs-value p {
  margin: 0;
  font-size: 14px;
  color: var(--soft);
  line-height: 1.6;
}

/* =====================================================================
   PAGINA: PARTNER PROGRAM
   ===================================================================== */
.partner-hero {
  position: relative;
  padding: clamp(80px, 14vh, 160px) 0 clamp(60px, 10vh, 100px);
  overflow: hidden;
  background: var(--bg);
  z-index: 3;
}
.partner-hero-inner {
  position: relative; z-index: 4;
  text-align: center;
  max-width: 880px;
}
.partner-hero-title {
  margin: 18px auto 24px;
}
.partner-hero-lead {
  margin: 0 auto 36px;
  max-width: 680px;
}
.partner-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.partner-hero-cta {
  font-size: 15.5px;
  padding: 13px 22px;
}
.partner-cta-row .cta-calendar-wrap {
  margin: 0;
}

.partner-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .partner-benefits-grid { grid-template-columns: 1fr; }
}
.partner-benefit {
  position: relative;
  padding: 8px 0 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}
.partner-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(8,8,10,0.08);
}
.partner-benefit-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 16px;
}
.partner-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(68,153,216,0.10), rgba(167,139,250,0.10));
  border: 1px solid rgba(68,153,216,0.18);
  color: #2c7fbf;
  margin-bottom: 18px;
}
.partner-benefit h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 10px;
  color: #08080a;
  letter-spacing: -0.01em;
}
.partner-benefit p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #4a4a52;
}

.partner-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.partner-final-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   WHATSAPP WIDGET (fixed bottom-right)
   ========================================================================== */
.wa-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
}
.wa-widget:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 8px 22px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.15);
}
.wa-widget svg { flex-shrink: 0; }
.wa-widget-label { white-space: nowrap; }
@media (max-width: 600px) {
  .wa-widget { padding: 12px; bottom: 16px; right: 16px; }
  .wa-widget-label { display: none; }
}

/* === FAQ home: una riga, titoli grandi, + === */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid rgba(8, 8, 10, 0.10);
}
.faq-row {
  border-bottom: 1px solid rgba(8, 8, 10, 0.10);
}
.faq-row summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0;
  user-select: none;
}
.faq-row summary::-webkit-details-marker { display: none; }
.faq-row summary::marker { display: none; content: ''; }
.faq-row-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #08080a;
}
.faq-row-plus {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: #08080a;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-row[open] .faq-row-plus { transform: rotate(45deg); }
.faq-row p {
  margin: 0;
  padding: 0 72px 28px 0;
  max-width: 640px;
  font-size: 16.5px;
  line-height: 1.65;
  color: #5b5b66;
}
.faq-row p a { color: #2c7fbf; }
@media (max-width: 640px) {
  .faq-row summary { gap: 16px; padding: 20px 0; }
  .faq-row p { padding-right: 0; }
}

/* === Cluster SEO === */
.seo-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) {
  .seo-related { grid-template-columns: 1fr; }
}
.seo-related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(8, 8, 10, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.seo-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(8, 8, 10, 0.08);
}
.seo-related-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6c6c75;
}
.seo-related-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #08080a;
}
.seo-related-card p {
  margin: 0;
  flex: 1;
  font-size: 14.5px;
  line-height: 1.55;
  color: #5b5b66;
}
.seo-related-go {
  font-size: 14px;
  font-weight: 600;
  color: #2c7fbf;
}
.seo-prose {
  max-width: 760px;
  margin: 0 auto;
}
.seo-prose p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #3d3d46;
  margin: 0 0 18px;
}
.seo-prose p a { color: #2c7fbf; }
.seo-prose h2 {
  margin: 40px 0 14px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #08080a;
}
.seo-prose h3 {
  margin: 28px 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #08080a;
}
.seo-prose ul,
.seo-prose ol {
  margin: 0 0 20px;
  padding-left: 22px;
  color: #3d3d46;
  font-size: 16.5px;
  line-height: 1.65;
}
.seo-prose li { margin: 0 0 8px; }
.seo-prose li a { color: #2c7fbf; }
.seo-compare-wrap {
  overflow-x: auto;
  margin: 8px 0 28px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(8, 8, 10, 0.06);
}
.seo-compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.seo-compare th,
.seo-compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(8, 8, 10, 0.08);
  vertical-align: top;
}
.seo-compare thead th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6c6c75;
  background: #f6f6f7;
}
.seo-compare tbody th {
  font-weight: 600;
  color: #08080a;
  width: 28%;
}
.seo-compare td { color: #3d3d46; }
.seo-compare .ok { color: #1a7f4b; font-weight: 600; }
.seo-compare .no { color: #8a8a93; }
