:root {
  --bg: #fff;
  --text: #0f172a; /* slate-900 */
  --muted: #64748b; /* slate-500 */
  --border: #e8eaee;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);

  --orange: #ef7e1a; /* accent arancio */
  --orange-10: rgba(245, 158, 11, 0.1);
  --blue: #0054a6;
  --blue-10: rgba(37, 99, 235, 0.1);
  --green: rgb(34, 197, 94);
  --green-10: rgba(16, 185, 129, 0.1);
}

/* =====================
   FONT FACE DEFINITIONS
   ===================== */

/* Exo 2 — titoli */
@font-face {
  font-family: "Exo2";
  src: url("../assets/fonts/Exo2-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Exo2";
  src: url("../assets/fonts/Exo2-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Nunito — corpo testo */
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  font-family: "Nunito", sans-serif;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial;
    
}

/* Tutti i titoli usano Exo2 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Exo2", sans-serif;
  letter-spacing: -0.5px;
}

/* Helper class se vuoi forzare l’italic */
.font-italic {
  font-style: italic;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.logo {
  width: 40%;
  height: 40%;
}

.logo_footer {
   width: 25%;
  height: 25%;
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  padding: 18px;
}

.header-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
}
.brand-text {
  letter-spacing: 0.2px;
}

/* Hero */
.hero {
  padding: 3rem 0 5rem;
}

.hero-right {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-overlay {
  position: relative;
}

/* 🟠 Testo sovrapposto */
.hero-text {
  position: absolute;
  top: 25%;
  left: 3%;
  color: #ffffff;
  z-index: 2;
  max-width: 420px;
}

.hero-text h1 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-text p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* 🔹 Responsivo */

@media (max-width: 992px) {
  .hero {
  padding: 1rem 2rem;

  }
}
@media (max-width: 768px) {

  .hero {
  padding: 2rem 0px 4rem;

  }

  .hero-text {
    top: 10%;
    left: 5%;
    max-width: 80%;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

.hero-cta {
  margin-top: 2rem;

}

.btn-orange {
  display: inline-block;
  background-color: var(--orange);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: var(--orange);
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.pill-soon {
  background: var(--orange-10);
  color: var(--orange);
}

.blink {
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-flex;
}
.blink-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0.35;
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.blink-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  80% {
    transform: scale(2.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin: 2rem 0 2rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
.accent {
  color: var(--orange);
}
.hero-subtitle {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 640px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4rem;
}
@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.2s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--orange);
  color: #fff;
}

.stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.stat-value {
  font-size: 28px;
  font-weight: 800;
}
.stat-label {
  color: var(--muted);
  font-size: 13px;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

.hero-right {
  position: relative;
}
.glow {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background: radial-gradient(
      1200px 400px at 40% 30%,
      rgba(245, 158, 11, 0.15),
      transparent 60%
    ),
    radial-gradient(
      1000px 300px at 80% 60%,
      rgba(37, 99, 235, 0.12),
      transparent 60%
    );
  filter: blur(40px);
  opacity: 0.6;
  border-radius: 40px;
}
.hero-image {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Features */
.features {
  padding: 18px 0 56px;
}
.cards {
  display: grid;
  gap: 18px;
  max-width: 1435px;
  margin: 2rem auto;
}
@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.icon-orange {
  background: var(--orange-10);
  color: var(--orange);
}
.icon-blue {
  background: var(--blue-10);
  color: var(--blue);
}
.icon-green {
  background: var(--green-10);
  color: var(--green);
}
.svg {
  width: 24px;
  height: 24px;
}
.card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 2px 0 6px;
}
.card-text {
  color: var(--muted);
}

/* Early adopter */
.early {
  background: #fff;
  padding: 56px 0;
}
.early-box {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.badge-line {
  text-align: center;
  margin-bottom: 8px;
}
.mini-pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--orange-10);
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
}
.early-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin: 10px 0;
}
.early-subtitle {
  text-align: left;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 16px;
}
.flash {
  text-align: center;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 10px 12px;
  display: inline-block;
  margin: 10px auto;
}

.early-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;      /* stretch children to full width */
  justify-content: flex-start;
  margin-top: 12px;
  align-items: center;
}
.early-form > * {
  width: 70%;
}
@media (min-width: 640px) {
  .early-form {
    flex-direction: column;  /* keep stacked on desktop too */
  }
}
.input {
  width: 100%;
  max-width: 700px; /* increased length of inputs */
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
  outline: none;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.early-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}
.early-benefits {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.benefit {
  background: #fff;
  border: none
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
  color: #0f172a;
}
.b-ico {
  margin-right: 6px;
}

/* Contenitore generale */
.early-benefits {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 3rem auto 0;
  text-align: center;
}

/* Singolo blocco */
.benefit {
  flex: 1 1 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Icona circolare */
.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
}

/* Colori di sfondo */
.bg-orange-light {
  background-color: #fff3eb;
  color: #ff7a00;
}

.bg-blue-light {
  background-color: #ebf3ff;
  color: #2d6bff;
}

/* Testo */
.benefit h3 {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #1e1e1e;
  margin: 0;
}

.benefit p {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 56px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
  }
}
.copy {
  color: var(--muted);
  font-size: 14px;
}

/* MODAL */
/* Overlay */
.lm-overlay{
  position: fixed; inset:0; background: rgba(15,23,42,.55);
  display:none; align-items:center; justify-content:center;
  padding:24px; z-index: 999;
}
.lm-overlay[aria-hidden="false"]{ display:flex; }

/* Dialog */
.lm-dialog{
  width:100%; max-width: 960px; max-height: 90vh; overflow:auto;
  background:#fff; border:1px solid rgba(0,0,0,.06);
  border-radius:16px; box-shadow: 0 20px 60px rgba(0,0,0,.25);
  padding:24px 28px; position:relative;
  animation: lmIn .18s ease-out;
}
@keyframes lmIn{ from{ transform: translateY(8px); opacity:0 } to{ transform:none; opacity:1 } }

.lm-close{
  position:absolute; top:10px; right:12px; width:40px; height:40px;
  border:none; background:transparent; font-size:28px; line-height:1; cursor:pointer;
  color:#9aa1ac;
}
.lm-close:hover{ color:#111; }

/* Header */
.lm-header{ margin-bottom: 16px; }
.lm-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px; font: 600 13px/1 Nunito, system-ui, sans-serif;
  background: rgba(255,122,0,.12); color:var(--orange); margin-bottom:8px;
}
.lm-dot{ position:relative; width:8px; height:8px; border-radius:999px; background:var(--orange); display:inline-block; }
.lm-ping{ position:absolute; inset:-6px; border-radius:999px; border:2px solid var(--orange); opacity:.45; animation: lmPing 1.4s infinite; }
@keyframes lmPing{ 0%{ transform:scale(.4); opacity:.7 } 100%{ transform:scale(1.6); opacity:0 } }

.lm-title{ font:700 28px/1.2 Exo2, system-ui, sans-serif; color:#111; margin:0 0 6px; }
.lm-desc{ font: 400 16px/1.6 Nunito, system-ui, sans-serif; color:#64748b; margin:0; }

/* Grid features */
.lm-grid{
  margin-top:18px; display:grid; gap:14px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 720px){ .lm-grid{ grid-template-columns: 1fr; } }

.lm-card{
  border:1px solid rgba(0,0,0,.06); border-radius:12px; background:#fff;
  padding:18px; transition:.2s box-shadow, .2s transform;
}
.lm-card:hover{ box-shadow:0 10px 24px rgba(0,0,0,.08); transform: translateY(-1px); }

.lm-ico{ width:48px; height:48px; border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:10px; }
.bg-primary-10{ background: rgba(255,122,0,.12); color:var(--orange); }
.bg-secondary-10{ background: rgba(45,107,255,.12); color:#2d6bff; }
.bg-accent-10{ background: rgba(255,159,10,.12); color:#ff9f0a; }
.ico-svg{ width:24px; height:24px; }

.lm-card h3{ font: 700 16px/1.3 Exo2, system-ui, sans-serif; color:#111; margin:0 0 6px; }
.lm-card p{ font: 400 14px/1.6 Nunito, system-ui, sans-serif; color:#6b7280; margin:0; }

/* Benefits */
.lm-benefits{ margin-top:22px; padding:18px; border-radius:14px;
  background: linear-gradient(135deg, rgba(255,122,0,.06), rgba(45,107,255,.06));
  border:1px solid rgba(255,122,0,.18);
}
.lm-benefits-title{
  display:flex; align-items:center; gap:8px;
  font: 700 18px/1.3 Exo2, system-ui, sans-serif; color:#111; margin:0 0 12px;
}
.ico-check{ width:20px; height:20px; color:var(--orange); }

.lm-benefits-list{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.lm-benefits-list li{
  display:flex; align-items:flex-start; gap:8px; color:#6b7280; font: 400 14px/1.6 Nunito, system-ui, sans-serif;
}

/* CTA */
.lm-cta{
  margin-top:18px; text-align:center; padding:18px; border-radius:12px; background:#f6f7f9;
}
.lm-cta h3{ font:700 18px/1.3 Exo2, system-ui, sans-serif; color:#111; margin:0 0 6px; }
.lm-cta p{ font:400 14px/1.6 Nunito, system-ui, sans-serif; color:#6b7280; margin:0 0 12px; }

/* Riusa il tuo bottone arancione */
.btn-orange{
  display:inline-block; background: var(--orange); color:#fff; font:600 16px/1 Nunito, system-ui, sans-serif;
  padding:.9rem 2.2rem; border-radius:8px; text-decoration:none;
  box-shadow:0 6px 18px rgba(255,122,0,.35); transition:.2s transform, .2s box-shadow, .2s background;
}
.btn-orange:hover{ background:#e96d00; transform: translateY(-2px); box-shadow:0 10px 24px rgba(255,122,0,.4); }

/*PROMOZIONE*/
.tiers-timeline {
  max-width: 900px;
  margin: 18px auto 0;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  border-radius: 12px;
}

.tiers-title {
  margin: 0 0 12px;
  font: 700 18px/1.2 Exo2, system-ui, sans-serif;
  color: #111;
}

.tiers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

/* Riga singolo tier */
.tier-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px;
  background: #fafbfc;
}

.tier-step {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  font: 700 14px/1 Exo2, system-ui, sans-serif;
  color: #fff; background: #9aa1ac;
}

/* contenuto */
.tier-body {
  display: grid;
  gap: 6px;
}
.tier-name {
  font: 700 15px/1.2 Exo2, system-ui, sans-serif; color:#111;
}
.tier-reward {
  font: 600 14px/1.3 Nunito, system-ui, sans-serif; color: var(--orange);
}
.tier-meta {
  font: 13px/1.3 Nunito, system-ui, sans-serif; color:#6b7280;
}

/* barra per il tier attivo */
.tier-bar {
  height: 8px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}
.tier-bar-fill {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width .3s ease;
}

/* stato */
.tier-status {
  font: 12px/1.2 Nunito, system-ui, sans-serif;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.tier--done   .tier-step { background:var(--orange); }     /* verde */
.tier--done   .tier-status { background:red; color:#fff; }
.tier--active .tier-step { background:var(--orange); }     /* arancio */
.tier--active .tier-status { background:green; color:#fff; }
.tier--next   .tier-step { background:var(--orange); }     /* blu */
.tier--next   .tier-status { background:#dbeafe; color:#1e3a8a; }

@media (max-width: 640px) {
  .tier-item {
    grid-template-columns: 28px 1fr;
    grid-auto-rows: auto;
  }
  .tier-status {
    justify-self: start;
    margin-top: 6px;
  }
}

/*GUIDA*/
/* ===== Free Guide & Bonus styles (moved from inline) ===== */
.bonus-strip{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.mini-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  background:#f2f4f7;
  color:#111;
  font-weight:700;
  font-size:.85rem;
}
.mini-pill--orange{
  background:rgba(255,122,0,.12);
  color:#cc5f00;
}
.bonus-text{
  font-weight:600;
}
.btn.btn-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:#ff7a00;
  font-weight:700;
}
.btn.btn-link:hover{
  text-decoration:underline;
}

.early-bonus{
  margin:12px 0;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.form-note{
  margin-top:15px;
  color:#6b7280;
  font-size:.95rem;
}

.bonus-guide{
  margin-top:32px;
}
.guide-box{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  padding:20px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  background:#fff;
}
.no-margin{ margin:0; }

.guide-points{
  margin:0;
  padding-left:18px;
  color:#374151;
}

/* PDF icon */
.ico-pdf{
  width:18px;
  height:18px;
  color:#ff7a00; /* paths use currentColor */
}
.mini-pill .ico-pdf{ margin-right:4px; }

.badge-line{ display:flex; align-items:center; gap:8px; }

/* Valorizzazione economica della guida */
.mini-pill--value{
  background: rgba(16,185,129,.12); /* verde tenue */
  color: #0f766e;                   /* verde scuro leggibile */
}

/* Nota sotto il box promo */
.guide-note{
  margin-top: 8px;
  color: #475569;       /* slate-600 */
  font-size: .95rem;
}

/* Strikethrough + Gratis dentro il pill valore */
.mini-pill--value s{
  text-decoration: line-through;
  opacity: .85;
  margin-right: 6px;
}
.mini-pill--value .free{
  color: #0f766e;      /* verde consistente col tema */
  font-weight: 800;
}
/* =====================
   SUCCESS PAGE (scoped)
   Sposta qui gli stili della pagina di successo.
   Usa la classe `success-page` sul <body> per evitare collisioni globali.
   ===================== */
.success-page {
  /* sfondo e centering solo per la pagina di successo */
  background: linear-gradient(180deg, #fffaf5 0%, #f8f9fb 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-page .success-container {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 1200px;
  width: 90%;
}

.success-page .success-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

.success-page .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #2563eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-page .success-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.success-page h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.success-page p.subtext {
  color: #475569;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.5;
}

.success-page .benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.success-page .benefit {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1.5rem 1rem;
}

.success-page .benefit h3 {
  margin: .5rem 0;
  font-size: 1rem;
  font-weight: 700;
}

.success-page .benefit p {
  font-size: .9rem;
  color: #64748b;
}

.success-page .download-btn {
  display: inline-block;
  background: var(--orange);
  color: #ffffff;
  font-weight: 600;
  padding: .9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(255,122,0,.25);
}

.success-page .download-btn:hover {
  background: #ea580c;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255,122,0,.35);
}

.success-page footer {
  margin-top: 2rem;
  font-size: .9rem;
  color: #64748b;
}

.success-page footer a {
  color: var(--orange);
  text-decoration: none;
}


/* --- Hard reset anti-overflow --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { width: 100%; max-width: 100%;  }


/* === Mobile (smartphone, ≤ 576px) === */
@media (max-width: 576px) {
  /* Stili mobile qui */
  .hero-text {
    top: 25%;
    max-width: 50%;
  }

  .hero-title {
    text-align:  center;
  }

  .hero-text h1 {
    position: relative;
    font-size: 1rem;
    
  }
  .hero-cta {
    margin-top: 1rem;
  }

  .early-benefits {
    flex-direction: column;
    align-items: center; /* centra ogni .benefit */
    gap: 2rem;           /* un po' meno spazio verticale */
  }

  .early-benefits .benefit {
    width: 100%;
    max-width: 320px;    /* evita che si allarghino troppo */
  }

  .early {
    padding: 0;
  }

  .early-bonus {
    gap: 20px;
  }

  body {
    padding: 0 10px;
  }
}
