/* =========================================================
   Il Bollettatore — Landing page styles
   Palette pulled from the flyer:
   - Deep navy background: #0b1d3a / #061128
   - Vivid green: #7BC142 (primary CTA)
   - Brand green dark: #2e8b3a
   - Vivid blue: #2196F3 / #00A6FF
   - Logo navy: #142F66
   - Cream text: #f4f6fb
========================================================= */

:root {
  --navy-900: #061128;
  --navy-800: #0b1d3a;
  --navy-700: #102649;
  --navy-600: #16335e;
  --navy-500: #1c4076;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);

  --green-500: #7BC142;
  --green-600: #6AAE36;
  --green-700: #4f8a25;
  --green-glow: rgba(123,193,66,.45);

  --blue-500: #2196F3;
  --blue-400: #4FB3FF;
  --blue-300: #7CC8FF;

  --logo-blue: #142F66;

  --text: #f3f6fc;
  --text-soft: #cdd5e3;
  --text-mute: #93a0b8;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;

  --shadow-sm: 0 6px 18px rgba(0,0,0,.25);
  --shadow:    0 14px 40px rgba(0,0,0,.35);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.45);

  --font: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--navy-900);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ===== Background atmosphere ===== */
.bg-grid {
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(33,150,243,.18), transparent 60%),
    radial-gradient(900px 500px at 20% 10%, rgba(123,193,66,.14), transparent 60%),
    linear-gradient(180deg, #07142d 0%, #061128 40%, #050d22 100%);
  z-index: -3;
}
.bg-grid::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 80%);
  opacity: .35;
}

.bg-orbs {
  position: fixed; inset: 0; pointer-events: none; z-index: -2;
}
.orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
  animation: drift 22s ease-in-out infinite alternate;
}
.orb-green { background: #7BC142; top: -120px; left: -120px; }
.orb-blue  { background: #2196F3; bottom: -160px; right: -120px; animation-duration: 28s; }
.orb-cyan  { background: #5edcff; top: 40%; left: 55%; width: 360px; height: 360px; opacity: .22; animation-duration: 34s; }

@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(60px,-40px,0) scale(1.07); }
  100% { transform: translate3d(-40px,30px,0) scale(.95); }
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6,17,40,.65);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand-logo {
  height: 38px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
.nav {
  display: flex; gap: 26px;
}
.nav a {
  font-weight: 600; font-size: 14px;
  color: var(--text-soft);
  position: relative; padding: 6px 2px;
  transition: color .2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--green-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }

@media (max-width: 820px) {
  .nav { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800; font-size: 15px;
  letter-spacing: .2px;
  cursor: pointer; user-select: none;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-wa {
  background: linear-gradient(180deg, #7BC142 0%, #5fa530 100%);
  color: #08220a;
  box-shadow:
    0 8px 24px rgba(123,193,66,.35),
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -2px 0 rgba(0,0,0,.18);
}
.btn-wa:hover {
  box-shadow:
    0 14px 36px rgba(123,193,66,.55),
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -2px 0 rgba(0,0,0,.18);
}
.btn-wa em { font-style: normal; }

.btn-wa-sm { padding: 10px 16px; font-size: 14px; }
.btn-wa-lg { padding: 16px 28px; font-size: 17px; }
.btn-wa-xl { padding: 22px 36px; font-size: 20px; border-radius: 999px; }

.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.25); }

.btn .ico { width: 22px; height: 22px; color: #08220a; flex: 0 0 22px; }
.btn-wa-sm .ico { width: 18px; height: 18px; flex-basis: 18px; }
.btn-wa-xl .ico { width: 28px; height: 28px; flex-basis: 28px; }

.pulse {
  position: relative;
  animation: pulseGlow 2.6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 10px 28px rgba(123,193,66,.35),
      inset 0 1px 0 rgba(255,255,255,.35),
      inset 0 -2px 0 rgba(0,0,0,.18),
      0 0 0 0 rgba(123,193,66,.55);
  }
  50% {
    box-shadow:
      0 14px 40px rgba(123,193,66,.55),
      inset 0 1px 0 rgba(255,255,255,.4),
      inset 0 -2px 0 rgba(0,0,0,.18),
      0 0 0 14px rgba(123,193,66,0);
  }
}

/* ===== Hero ===== */
.hero { padding: 70px 0 30px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { order: -1; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(123,193,66,.12);
  border: 1px solid rgba(123,193,66,.35);
  color: #cdeec0;
  font-weight: 700; font-size: 13px;
  margin: 0 0 18px;
  text-transform: uppercase; letter-spacing: 1px;
}
.dot { display: none; }

.display {
  font-weight: 900;
  font-size: clamp(48px, 8.5vw, 116px);
  line-height: .95;
  letter-spacing: -1px;
  margin: 0 0 12px;
}
.display .line { display: block; }
.ink-white { color: #ffffff; }
.ink-green { color: var(--green-500); text-shadow: 0 6px 32px rgba(123,193,66,.4); }
.ink-blue  { color: var(--blue-400); }

.tagline {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin: 6px 0 24px;
  max-width: 30ch;
}
.hl { font-weight: 800; }
.hl-blue  { color: var(--blue-400); }
.hl-green { color: var(--green-500); }

.hero-points {
  list-style: none; padding: 0; margin: 18px 0 28px;
  display: grid; gap: 14px;
  max-width: 560px;
}
.hero-points li {
  display: grid; grid-template-columns: 52px 1fr; align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.hero-points li:hover {
  transform: translateY(-2px);
  border-color: rgba(123,193,66,.35);
  background: linear-gradient(180deg, rgba(123,193,66,.07), rgba(255,255,255,.02));
}
.badge {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  color: #062108;
  background: var(--green-500);
  box-shadow: 0 6px 16px rgba(123,193,66,.35), inset 0 -2px 0 rgba(0,0,0,.18);
}
.badge svg { width: 24px; height: 24px; }

.cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin: 6px 0 18px;
}
.tag-strap {
  margin-top: 18px;
  font-weight: 700; font-size: 15px; color: var(--text-soft);
  letter-spacing: .3px;
}

/* ===== Hero visual ===== */
.hero-visual {
  position: relative;
}

@media (min-width: 981px) {
  .hero-visual {
    height: 880px;
    perspective: 1400px;
  }
}

/* Mobile/tablet: visual stacks above copy, flows in document */
@media (max-width: 980px) {
  .hero { padding-bottom: 40px; }
  .hero-visual {
    order: -1;
    position: relative;
    height: auto;
    perspective: none;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    padding-bottom: 32px;
  }
  .bill-card {
    position: relative;
    width: 42%;
    max-width: 210px;
    flex-shrink: 0;
    align-self: flex-end;
  }
  .card3d-wrap {
    position: relative;
    width: 50%;
    max-width: 260px;
    aspect-ratio: 340 / 220;
    height: auto;
    flex-shrink: 0;
    perspective: 1100px;
  }
  .amazon-logo-img { width: 55%; max-width: 100px; }
  .amz-amount { font-size: clamp(24px, 7vw, 48px); }
  .amz-sub { font-size: 10px; margin-top: 2px; margin-bottom: 4px; }
  .card3d-face-front { justify-content: flex-start; gap: 0; padding: 14px 18px; }
  .bill-circle { font-size: 11px; padding: 4px 7px; }
}

@media (max-width: 540px) {
  .hero-visual { gap: 8px; padding-bottom: 24px; }
  .bill-card { width: 44%; max-width: 180px; }
  .card3d-wrap { width: 52%; max-width: 220px; }
  .amazon-logo-img { width: 50%; max-width: 80px; }
  .amz-amount { font-size: clamp(20px, 6vw, 36px); }
  .amz-sub { font-size: 9px; margin-top: 1px; margin-bottom: 2px; }
  .bill-circle { font-size: 8px; padding: 3px 5px; white-space: nowrap; transform: rotate(0deg); }
  .bill-head { flex-direction: column; gap: 6px; }
  .card3d-wrap { aspect-ratio: 3 / 5; }
  .amz-amount { font-size: clamp(12px, 4vw, 22px); }
}

/* ----- Bill mock card ----- */
/* Mobile base styles (position: relative, sizing handled above) */
.bill-card {
  width: 260px;
  background: linear-gradient(180deg, #fff 0%, #f1f4fa 100%);
  color: #14213d;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-7deg);
  z-index: 1;
}

/* Desktop only: absolutely position bill inside the tall hero-visual */
@media (min-width: 981px) {
  .bill-card {
    position: absolute;
    top: 340px; left: 8%;
  }
}
.bill-head { display: flex; justify-content: space-between; align-items: flex-start; }
.bill-title { font-size: 13px; font-weight: 800; color: #14213d; line-height: 1.15; }
.bill-title span { font-weight: 700; font-size: 11px; color: #555; }
.bill-circle {
  position: relative;
  font-weight: 900; font-size: 12px;
  color: #d22; padding: 5px 9px;
  border: 2px solid #d22; border-radius: 50%;
  transform: rotate(8deg);
  background: rgba(255,235,235,.6);
}
.bill-rows {
  display: grid; gap: 6px; margin: 12px 0;
}
.bill-rows span {
  display: block; height: 6px; border-radius: 4px;
  background: linear-gradient(90deg, #d4d9e4 0%, #eef1f8 100%);
}
.bill-rows span:nth-child(2) { width: 90%; }
.bill-rows span:nth-child(3) { width: 70%; }
.bill-rows span:nth-child(4) { width: 84%; }
.bill-rows span:nth-child(5) { width: 60%; }
.bill-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 64px; padding: 6px 0 0;
  border-top: 1px dashed #c6cdde;
}
.bill-chart span {
  flex: 1; background: linear-gradient(180deg, #2196F3, #1670d0);
  border-radius: 3px 3px 0 0;
  animation: bar 2.4s ease-in-out infinite;
}
.bill-chart span:nth-child(2) { background: linear-gradient(180deg, #7BC142, #4f8a25); animation-delay: .1s; }
.bill-chart span:nth-child(3) { animation-delay: .2s; }
.bill-chart span:nth-child(4) { background: linear-gradient(180deg, #7BC142, #4f8a25); animation-delay: .3s; }
.bill-chart span:nth-child(5) { animation-delay: .4s; }
.bill-chart span:nth-child(6) { background: linear-gradient(180deg, #7BC142, #4f8a25); animation-delay: .5s; }

@keyframes bar {
  0%, 100% { transform: scaleY(1); transform-origin: bottom; }
  50%      { transform: scaleY(.72); transform-origin: bottom; }
}

.float-slow { animation: floatSlow 6s ease-in-out infinite; }
@keyframes floatSlow {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50%      { transform: rotate(-5deg) translateY(-10px); }
}

/* ----- 3D Amazon Gift Card ----- */
/* Mobile base: sizing handled by the mobile media query above */
.card3d-wrap {
  width: 340px; height: 220px;
  perspective: 1100px;
  z-index: 2;
}

/* Desktop only: absolutely position card inside the tall hero-visual */
@media (min-width: 981px) {
  .card3d-wrap {
    position: absolute;
    right: 0; top: 400px;
  }
}
.card3d-wrap-lg {
  position: relative; inset: auto;
  width: min(420px, 92%); height: 270px;
  margin: 10px auto;
}

.card3d {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-18deg);
  animation: cardFloat 7s ease-in-out infinite;
}

@keyframes cardFloat {
  0%   { transform: rotateX(8deg)  rotateY(-22deg) translateY(0); }
  50%  { transform: rotateX(10deg) rotateY(-14deg) translateY(-12px); }
  100% { transform: rotateX(8deg)  rotateY(-22deg) translateY(0); }
}

.card3d-face {
  position: absolute; inset: 0;
  border-radius: 18px;
  overflow: hidden;
  backface-visibility: hidden;
}
.card3d-face-front {
  background:
    radial-gradient(120% 80% at 10% 0%, #2a2a2a 0%, #131313 55%, #050505 100%);
  box-shadow:
    0 30px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 -2px 0 rgba(0,0,0,.4) inset;
  padding: 22px 26px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.card3d-face-back {
  transform: rotateY(180deg) translateZ(2px);
  background: #0a0a0a;
}

/* Card sheen — diagonal gradient that sweeps automatically */
.card3d-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(115deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,.18) 47%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.18) 53%,
    rgba(255,255,255,0) 65%);
  mix-blend-mode: screen;
  transform: translateX(-60%);
  opacity: 0;
  pointer-events: none;
  animation: sheen 5s ease-in-out infinite;
}
@keyframes sheen {
  0%, 12%   { transform: translateX(-60%); opacity: 0; }
  20%       { opacity: 1; }
  60%       { opacity: 1; }
  72%, 100% { transform: translateX(60%);  opacity: 0; }
}

/* Subtle holographic shimmer overlay */
.card3d-shimmer {
  position: absolute; inset: 0;
  background:
    radial-gradient(160% 80% at 0% 0%,   rgba(255,255,255,.10), transparent 50%),
    radial-gradient(160% 80% at 100% 100%, rgba(255,180,80,.12), transparent 55%);
  pointer-events: none;
}

/* Soft drop shadow under card (separate layer) */
.card3d-shadow {
  position: absolute; left: 6%; right: 6%;
  bottom: -28px; height: 36px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55) 0%, transparent 70%);
  filter: blur(6px);
  z-index: -1;
}

/* Amazon branding inside card — uses provided assets/amazon_logo.png (white text + orange smile) */
.amazon-logo-img {
  width: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
}

.amz-sub {
  font-size: 13px; color: #cfcfcf; letter-spacing: 1.5px;
  text-transform: lowercase; margin-top: 4px;
}
.amz-amount {
  font-weight: 900;
  font-size: 64px; line-height: 1;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,.5);
  letter-spacing: -2px;
}

/* Chip + magnetic strip details for realism */
.amz-chip { display: none; }

.amz-strip {
  position: absolute; left: 0; right: 0;
  bottom: 0; height: 12px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  opacity: .85;
}

/* ===== Section headings ===== */
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: -.5px;
}
.section-sub {
  color: var(--text-soft);
  font-size: 17px;
  margin: 0 0 40px;
}

/* ===== Vantaggi ===== */
.vantaggi { padding: 80px 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cards-grid { grid-template-columns: 1fr; } }

.vcard {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .4s ease, border-color .5s ease, background .5s ease, box-shadow .5s ease;
  overflow: hidden;
}
.vcard::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 0%, rgba(123,193,66,.18) 0%, rgba(33,150,243,.10) 45%, transparent 75%);
  opacity: 0;
  transition: opacity .55s ease;
  border-radius: inherit;
  pointer-events: none;
}
.vcard:hover {
  transform: translateY(-6px);
  border-color: rgba(123,193,66,.22);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.vcard:hover::before { opacity: 1; }

.vcard-ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  margin-bottom: 16px;
}
.vcard-ico svg { width: 28px; height: 28px; }
.ico-green-bg {
  background: linear-gradient(160deg, #7BC142, #4f8a25);
  color: #fff;
  box-shadow: 0 10px 24px rgba(123,193,66,.35), inset 0 -2px 0 rgba(0,0,0,.2);
}
.ico-blue-bg {
  background: linear-gradient(160deg, #2196F3, #0f5fa3);
  color: #fff;
  box-shadow: 0 10px 24px rgba(33,150,243,.35), inset 0 -2px 0 rgba(0,0,0,.2);
}
.vcard h3 {
  font-size: 19px; font-weight: 800; margin: 0 0 8px;
}
.vcard p {
  margin: 0; color: var(--text-soft); font-size: 15px;
}

/* ===== Come funziona ===== */
.come-funziona { padding: 70px 0; }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 32px 28px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s ease, border-color .3s ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(33,150,243,.35); }
.step-num {
  position: absolute; top: -24px; left: 28px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(160deg, #7BC142, #4f8a25);
  color: #fff;
  font-weight: 900; font-size: 22px;
  box-shadow: 0 10px 22px rgba(123,193,66,.4);
}
.step-ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(33,150,243,.12);
  color: var(--blue-400);
  margin: 14px 0 14px;
}
.step-ico svg { width: 26px; height: 26px; }
.step h3 { margin: 0 0 8px; font-size: 20px; font-weight: 800; }
.step p { margin: 0 0 16px; color: var(--text-soft); }
.step-btn { margin-top: 4px; }

/* ===== Tariffe ===== */
.tariffe { padding: 70px 0; }
.tariffe-wrap { text-align: center; }
.tariffe-head { margin-bottom: 30px; }
.tariffe-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tariffe-card-title {
  background: linear-gradient(90deg, #0f1f3d 0%, #1c356b 100%);
  padding: 16px 20px;
  font-weight: 900; letter-spacing: 3px; font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
.tariffe-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
  font-size: 16px;
}
.tariffe-table th, .tariffe-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.tariffe-table th {
  background: rgba(255,255,255,.03);
  color: var(--text-mute);
  font-weight: 700; letter-spacing: 1px; font-size: 12px;
  text-transform: uppercase;
}
.tariffe-table tr:last-child td { border-bottom: none; }
.row-best td { background: rgba(123,193,66,.10); color: #d5ecbc; font-weight: 800; }
.tariffe-foot {
  font-size: 13px; color: var(--text-mute); padding: 14px 20px;
  background: rgba(255,255,255,.02);
  margin: 0;
}

/* ===== Bonus ===== */
.bonus { padding: 80px 0; }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .bonus-grid { grid-template-columns: 1fr; } }
.bonus-copy .section-title { line-height: 1.02; margin-bottom: 18px; }
.bonus-copy p { color: var(--text-soft); font-size: 17px; max-width: 50ch; }
.bonus-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 10px; }
.bonus-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
}
.check {
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(123,193,66,.18);
  color: var(--green-500);
  font-weight: 900;
  flex-shrink: 0;
}

.bonus-visual { display: grid; place-items: center; }

/* ===== Docs ===== */
.docs { padding: 70px 0; }
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .docs-grid { grid-template-columns: 1fr; } }
.doc-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px; align-items: center;
  padding: 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.doc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(123,193,66,.4);
  background: linear-gradient(180deg, rgba(123,193,66,.08), rgba(255,255,255,.02));
}
.doc-ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(160deg, #1c4076, #102649);
  color: var(--blue-400);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.doc-ico svg { width: 28px; height: 28px; }
.doc-body h3 { margin: 0 0 4px; font-size: 17px; font-weight: 800; }
.doc-body p { margin: 0; font-size: 14px; color: var(--text-soft); }
.doc-dl {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-500); color: #08220a;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(123,193,66,.35);
  transition: transform .3s ease;
}
.doc-card:hover .doc-dl { transform: translateY(2px); }
.doc-dl svg { width: 22px; height: 22px; }

/* ===== Final CTA ===== */
.cta-final { padding: 90px 0; }
.cta-final-inner {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(123,193,66,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid var(--line-2);
  border-radius: 32px;
  padding: 60px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-final-inner h2 {
  font-size: clamp(28px, 4.4vw, 44px);
  margin: 0 0 12px;
  font-weight: 900;
}
.cta-final-inner p { margin: 0 0 28px; color: var(--text-soft); font-size: 18px; }

/* ===== Footer ===== */
.site-footer {
  background: #04091a;
  border-top: 1px solid var(--line);
  padding: 50px 0 24px;
  margin-top: 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand img { height: 42px; margin-bottom: 12px; }
.footer-brand p { color: var(--text-mute); font-size: 14px; max-width: 36ch; margin: 0; }
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 640px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-cols h4 {
  font-size: 13px; letter-spacing: 2px;
  color: var(--green-500); margin: 0 0 10px; text-transform: uppercase;
}
.footer-cols p { margin: 4px 0; color: var(--text-soft); font-size: 14px; }
.footer-cols a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  margin-top: 30px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  color: var(--text-mute); font-size: 13px;
}
.foot-strap { font-weight: 700; }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px;
  z-index: 60;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 36px rgba(37,211,102,.55);
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float-pulse { display: none; }

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
.reveal.is-in {
  opacity: 1; transform: translateY(0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .hero { padding-top: 50px; }
  .vantaggi { padding: 30px 0 60px; }
  .nav { display: none; }
  .header-inner .btn-wa-sm span { display: none; }
  .btn-wa-sm { padding: 10px; }
  .display { font-size: clamp(36px, 9vw, 48px); }
  .eyebrow { font-size: 11px; letter-spacing: 0.3px; padding: 5px 10px; }
  .bill-card { max-width: 150px; }
  .card3d-wrap { max-width: 185px; }
}
