/* ── Variabili brand ── */
:root {
  --navy: #0e4063;
  --navy-2: #0a3251;
  --navy-3: #072740;
  --green: #3dc75b;
  --green-2: #2eab4b;
  --orange: #e67e22;
  --orange-2: #d16a0f;
  --paper: #f5f7fa;
  --ink: #1a1a2e;
  --ink-2: #555577;
  --ink-3: #8888aa;
  --line: #e0e4ef;
  --navy-line: rgba(255, 255, 255, 0.12);
  --radius: 14px;
  --shadow: 0 4px 24px rgba(14, 64, 99, 0.14);
}

/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--green-2);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ── Tipografia ── */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
h1 {
  font-size: clamp(28px, 4vw, 48px);
}
h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
}
h3 {
  font-size: 20px;
  font-weight: 700;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* ── Pulsanti ── */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  text-decoration: none;
}
.btn-brand:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(61, 199, 91, 0.35);
}
.btn-green:hover {
  background: var(--green-2);
  color: #fff;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.35);
}
.btn-orange:hover {
  background: var(--orange-2);
  color: #fff;
}

/* ── Pill badge ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(61, 199, 91, 0.15);
  color: var(--green-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ── Barra urgenza ── */
.urgency-bar {
  background: var(--navy-3);
  color: rgba(255, 255, 255, 0.8);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}
.urgency-bar b {
  color: var(--green);
  font-weight: 700;
}
.urgency-clock {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}
.countdown .k {
  display: inline-block;
  min-width: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 1px 3px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 11px;
}

/* ── Header ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-wrap img {
  height: 44px;
  width: auto;
}
.logo-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.header-meta {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}
.header-phone {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-decoration: none;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 72px 0 80px;
}
.hero h1 {
  color: #fff;
  margin: 16px 0 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero h1 .hl {
  background: var(--orange);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
}
.hero .lede {
  color: rgba(255, 255, 255, 0.82);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-item-box {
  border: 1px solid var(--navy-line);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 110px;
}
.trust-item-box .tk {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.trust-item-box .tv {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-top: 2px;
}
.tv .star {
  color: #f5c842;
}

/* ── Form card ── */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow:
    0 16px 56px rgba(14, 64, 99, 0.32),
    0 2px 10px rgba(0, 0, 0, 0.07);
  padding: 28px 26px 24px;
  position: relative;
  border: 1px solid rgba(14, 64, 99, 0.06);
}
.form-ribbon {
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
}
.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.form-step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.form-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-2);
}
.dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
.form-progress {
  height: 5px;
  background: var(--line);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 18px;
}
.form-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-2) 100%);
  border-radius: 50px;
  transition: width 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.form-question {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.25;
}

/* Opzioni card */
.opt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 4px;
}
.opt-grid-2 {
  grid-template-columns: 1fr 1fr;
}
.opt-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

/* Nota descrittiva sotto la domanda */
.form-step-nota {
  font-size: 12px;
  color: var(--ink-3);
  margin: -10px 0 12px;
  line-height: 1.5;
}

.opt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border-radius: 10px;
  border: 2px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
  text-align: center;
  outline: none;
}
.opt-card:hover {
  border-color: var(--green);
  background: rgba(61, 199, 91, 0.06);
  box-shadow: 0 4px 14px rgba(61, 199, 91, 0.15);
}
.opt-card.sel {
  border-color: var(--green-2);
  border-width: 2.5px;
  background: rgba(61, 199, 91, 0.1);
  box-shadow:
    0 0 0 3px rgba(61, 199, 91, 0.22),
    0 4px 18px rgba(61, 199, 91, 0.2);
}
.opt-icon {
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: color 0.18s ease;
}
.opt-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.opt-card-lg .opt-icon svg {
  width: 34px;
  height: 34px;
}
.opt-card:hover .opt-icon,
.opt-card.sel .opt-icon {
  color: var(--green-2);
}
.opt-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.opt-desc {
  font-size: 11px;
  color: var(--ink-3);
}
.opt-card-lg {
  padding: 18px 14px;
}
.opt-card-lg .opt-icon {
  font-size: 28px;
}
.opt-card-lg .opt-label {
  font-size: 16px;
}

/* Footer form */
.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.btn-back {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.btn-back:hover {
  color: var(--navy);
}
.btn-avanti {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: 50px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(61, 199, 91, 0.42);
  transition: all 0.18s ease;
}
.btn-avanti:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(61, 199, 91, 0.52);
}
.btn-avanti.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
.btn-submit {
  background: var(--orange);
  box-shadow: 0 4px 18px rgba(230, 126, 34, 0.42);
}
.btn-submit:hover {
  background: var(--orange-2);
  box-shadow: 0 6px 22px rgba(230, 126, 34, 0.52);
}
.btn-avanti-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.avanti-note {
  font-size: 10px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Trust badges sotto form */
.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.trust-item {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--green-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(61, 199, 91, 0.08);
  border: 1px solid rgba(61, 199, 91, 0.22);
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Campi contatto */
.form-contact-intro {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 14px;
  line-height: 1.5;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 2px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  font-family: inherit;
}
.form-input:focus {
  border-color: var(--green);
}
.form-input::placeholder {
  color: var(--ink-3);
}
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-2);
  cursor: pointer;
  margin-bottom: 8px;
}
.form-privacy input {
  margin-top: 3px;
  cursor: pointer;
}
.form-error {
  color: #d32f2f;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

/* Conferma */
.form-conferma {
  text-align: center;
  padding: 12px 0;
}
.form-conferma-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 56px;
  margin: 0 auto 14px;
}
.form-conferma h3 {
  color: var(--navy);
  margin-bottom: 8px;
}
.form-conferma p {
  font-size: 14px;
  color: var(--ink-2);
}

/* Bottone a larghezza piena (form contatto veloce) */
.btn-avanti.w-100 {
  width: 100%;
  justify-content: center;
}

/* ── Trust strip ── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.badge-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* ── Sezioni comuni ── */
.section {
  padding: 80px 0;
}
.section.dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.section.light {
  background: var(--paper);
}
.section.dark h2,
.section.dark .eyebrow {
  color: #fff;
}
.section.dark .eyebrow {
  color: var(--green);
}
.section.dark .eyebrow::before {
  background: var(--green);
}
.section.dark .lede {
  color: rgba(255, 255, 255, 0.78);
}

/* ── Video section ── */
.proof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.ps .v {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
}
.ps .k {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.video-player {
  position: relative;
  background: var(--navy-3);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #0a3251 0%, #1a5276 100%);
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.2s;
}
.video-player:hover .play-circle {
  transform: scale(1.08);
}
.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.video-caption .who {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.video-caption .meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.video-caption .dur {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 7px;
  border-radius: 4px;
}
.video-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.video-thumb-btn {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
}
.video-thumb-btn.active,
.video-thumb-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ── Bonus grid ── */
.bonus-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 16px rgba(14, 64, 99, 0.07);
  transition: box-shadow 0.22s, transform 0.22s;
}
.bonus-card:hover {
  box-shadow: 0 6px 28px rgba(14, 64, 99, 0.13);
  transform: translateY(-3px);
}
.bonus-card .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.bonus-card .label {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}
.bonus-card .v {
  font-size: 44px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.bonus-card .v small {
  font-size: 26px;
}
.bonus-card .d {
  font-size: 14px;
  color: var(--ink-2);
  flex: 1;
}
.bonus-card .foot {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
  margin-top: 4px;
}
/* Scambio sul posto — blue card */
.bonus-card.alt {
  background: var(--navy);
  border-color: var(--navy);
}
.bonus-card.alt:hover {
  box-shadow: 0 6px 28px rgba(14, 64, 99, 0.35);
}
.bonus-card.alt .tag {
  color: rgba(255, 255, 255, 0.6);
}
.bonus-card.alt .label {
  color: #fff;
}
.bonus-card.alt .v {
  color: var(--green);
  font-size: 42px;
}
.bonus-card.alt .d {
  color: rgba(255, 255, 255, 0.75);
}
.bonus-card.alt .foot {
  color: rgba(255, 255, 255, 0.5);
}
.calc-strip {
  background: rgba(230, 126, 34, 0.08);
  border: 1px solid rgba(230, 126, 34, 0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.calc-strip .ex-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.calc-strip .calc {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 6px;
  line-height: 1.3;
}
.calc-strip .calc s {
  color: var(--ink-3);
  font-weight: 400;
}
.calc-strip .final {
  color: var(--orange);
  font-weight: 900;
  font-size: 22px;
}
.calc-strip .small {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
}
.promo-note {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 18px;
  background: rgba(14, 64, 99, 0.05);
  border: 1px solid rgba(14, 64, 99, 0.15);
  border-radius: 8px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}
.promo-note .promo-icon {
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}
.alert-box {
  background: rgba(230, 126, 34, 0.1);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.alert-box .ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.alert-box .body {
  font-size: 14px;
  color: var(--ink);
}

.video-grid-vertical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.video-grid-vertical .vertical-video {
  aspect-ratio: 9/16;
  width: 100%;
  background: var(--navy-3);
}

.video-grid-vertical .video-caption {
  padding: 12px;
}

.video-grid-vertical .video-caption .who {
  font-size: 12px;
}

.video-grid-vertical .video-caption .meta {
  font-size: 10px;
}

.video-grid-vertical .video-caption .dur {
  display: none;
}

.video-grid-vertical .play-circle {
  width: 52px;
  height: 52px;
  font-size: 19px;
}

/* ── Steps processo ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 36px;
  position: relative;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: 0 1px 8px rgba(14, 64, 99, 0.06);
  position: relative;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(61, 199, 91, 0.15);
}
.step-card .t {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-card .d {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}
.step-card .when {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(230, 126, 34, 0.08);
  border-radius: 50px;
  padding: 3px 10px;
}

/* ── Compare ── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.compare-col {
  border-radius: var(--radius);
  padding: 28px 24px;
}
.compare-col.bad {
  background: #fff5f5;
  border: 1px solid #f5c6c6;
}
.compare-col.good {
  background: var(--navy);
  border: none;
  box-shadow: 0 4px 24px rgba(14, 64, 99, 0.18);
}
.compare-col h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
}
.compare-col.bad h3 {
  color: var(--navy);
}
.compare-col.good h3 {
  color: #fff;
}
.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-col li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  align-items: flex-start;
}
.compare-col.good li {
  color: rgba(255, 255, 255, 0.85);
}
.compare-col .mk {
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.bad .mk {
  color: #c0392b;
}
.good .mk {
  color: var(--green);
}

/* ── Recensioni ── */
.rev-head {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.rev-score .v {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.rev-score .stars {
  color: #f5c842;
  font-size: 18px;
  letter-spacing: 2px;
}
.rev-score .meta {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 4px;
}
.review-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(14, 64, 99, 0.07);
  transition: box-shadow 0.22s, transform 0.22s;
}
.review-card:hover {
  box-shadow: 0 6px 24px rgba(14, 64, 99, 0.12);
  transform: translateY(-2px);
}
.review-card .stars {
  color: #f5c842;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.review-card .q {
  font-size: 14px;
  color: var(--ink);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
}
.review-by {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rev-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.rev-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.rev-meta {
  font-size: 11px;
  color: var(--ink-3);
}

/* ── FAQ ── */
.faq-row {
  border-bottom: 1px solid var(--line);
}
.faq-row:first-child {
  border-top: 1px solid var(--line);
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-header:hover .faq-q {
  color: var(--green-2);
}
.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
  line-height: 1.4;
}
.faq-sign {
  font-size: 22px;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1;
}
.faq-body {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.faq-row.open .faq-body {
  max-height: 400px;
  padding-bottom: 18px;
}

/* ── Final CTA ── */
.final-cta-box {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 20px;
  padding: 52px 40px;
  color: #fff;
  box-shadow: 0 8px 48px rgba(14, 64, 99, 0.22);
}
.final-cta-box h2 {
  color: #fff;
}
.final-cta-box h2 em {
  font-style: normal;
  color: var(--green);
}
.final-cta-box .sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 12px;
}
.ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.ph-num {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.ph-num b {
  color: #fff;
  display: block;
  font-size: 17px;
  margin-top: 2px;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-3);
  color: rgba(255, 255, 255, 0.8);
  padding: 36px 0 24px;
}
.site-footer b {
  color: #fff;
}
.site-footer .foot-line {
  font-size: 14px;
  line-height: 1.8;
}
.foot-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.foot-links a:hover {
  color: #fff;
}
.foot-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero {
    padding: 48px 0 56px;
  }
  .form-card {
    margin-top: 32px;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 52px 0;
  }
  .header-meta,
  .header-phone {
    display: none;
  }
  .site-header .inner {
    gap: 12px;
  }
  .opt-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* 3 colonne → 2 su tablet/mobile */
  .opt-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .calc-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .final-cta-box {
    padding: 32px 20px;
  }
  .trust-row {
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .site-header .btn-brand {
    padding: 9px 14px;
    font-size: 13px;
  }
  .opt-card {
    padding: 11px 8px;
  }
  .opt-card-lg {
    padding: 14px 10px;
  }
  .opt-icon svg {
    width: 22px;
    height: 22px;
  }
  .form-card {
    padding: 22px 18px 20px;
  }
}

/* ── Form analyzer micro text ── */
.form-analyzer {
  font-size: 11.5px;
  color: var(--ink-3);
  margin: -4px 0 14px;
  line-height: 1.5;
  font-weight: 500;
}

/* ── Sticky mobile CTA ── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px 16px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  z-index: 490;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.sticky-mobile-cta.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 991px) {
  .sticky-mobile-cta {
    display: block;
  }
}
