*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #050505;
  --black2:   #0D0D0D;
  --surface:  #111111;
  --surface2: #181818;
  --green:    #39FF14;
  --green2:   #2BCC0F;
  --green-dim:#1A7A08;
  --green-glow: rgba(57,255,20,0.18);
  --green-glow2: rgba(57,255,20,0.06);
  --text:     #F2F2F2;
  --text-muted: #777777;
  --border:   rgba(57,255,20,0.12);
  --border-dim: rgba(255,255,255,0.06);
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

/* ── FIELD GRID BACKGROUND ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 1.35rem; letter-spacing: 0.04em;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo .mago { color: var(--green); }
.nav-logo .elite-badge {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
  background: var(--green); color: #000;
  padding: 2px 7px; border-radius: 3px;
  vertical-align: middle; margin-left: 2px;
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: #000;
  padding: 0.5rem 1.4rem; border-radius: 5px;
  font-weight: 700; font-size: 0.82rem;
  font-family: 'Rajdhani', sans-serif; letter-spacing: 0.08em;
  text-decoration: none; text-transform: uppercase;
  box-shadow: 0 0 18px var(--green-glow);
  transition: box-shadow 0.2s, opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; box-shadow: 0 0 28px var(--green-glow); }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.nav-mobile-panel {
  display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
  background: rgba(5,5,5,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column; gap: 0.25rem;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-mobile-panel.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile-panel a {
  color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 500;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border-dim);
}
.nav-mobile-panel a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative; overflow: hidden; z-index: 1;
}

/* radial green glow behind title */
.hero::before {
  content: '';
  position: absolute; top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(57,255,20,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* FUT field lines decoration */
.hero-field {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 220px; pointer-events: none; opacity: 0.07;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(57,255,20,0.35);
  border-radius: 100px; padding: 0.4rem 1.1rem;
  font-size: 0.72rem; font-weight: 600; color: var(--green);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 2rem;
  background: rgba(57,255,20,0.05);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* BIG brand name */
.hero-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 700; line-height: 0.92; letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.hero h1 .il { color: var(--text); }
.hero h1 .mago { color: var(--green); text-shadow: 0 0 40px rgba(57,255,20,0.5); }
.hero h1 .di-fut { color: var(--text); }

.hero-elite-wrap { margin: -1.2rem auto 1rem; width: fit-content; }
.hero-elite-img {
  display: block;
  width: clamp(180px, 28vw, 340px);
  height: auto;
  transform: rotate(6deg);
  filter: drop-shadow(0 0 22px rgba(57,255,20,0.45));
}

.hero-elite {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--green); margin-bottom: 2rem;
  position: relative; display: inline-block;
}
.hero-elite::before, .hero-elite::after {
  content: '—';
  color: var(--green-dim); margin: 0 0.8rem;
  font-size: 0.7em; vertical-align: middle;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted); max-width: 500px;
  line-height: 1.75; margin: 0 auto 2.5rem;
}

/* ── HERO HOOK (multi-line punchy copy) ── */
.hero-hook { max-width: 560px; margin: 0 auto 2.5rem; }
.hero-hook p { line-height: 1.5; margin-bottom: 0.35rem; }
.hero-hook .line-1 { font-size: clamp(0.95rem, 2vw, 1.1rem); color: #B8B8B8; white-space: nowrap; }
.hero-hook .line-2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 700;
  letter-spacing: 0.03em; color: var(--text);
  margin: 0.6rem 0 0.9rem;
}
.hero-hook .line-3 { font-size: clamp(0.95rem, 2vw, 1.1rem); color: #B8B8B8; }
.hero-hook .g {
  color: var(--green); font-weight: 700;
  text-shadow: 0 0 18px rgba(57,255,20,0.35);
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 4rem; }
.btn-primary {
  background: var(--green); color: #000;
  padding: 0.9rem 2.2rem; border-radius: 6px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 24px var(--green-glow);
  transition: box-shadow 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { box-shadow: 0 0 36px rgba(57,255,20,0.4); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--text);
  padding: 0.9rem 2.2rem; border-radius: 6px;
  border: 1px solid rgba(57,255,20,0.25);
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

/* stats row */
.hero-stats {
  display: flex; gap: 3.5rem; justify-content: center; flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-dim);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Rajdhani', sans-serif; font-size: 2.4rem; font-weight: 700;
  color: var(--green); line-height: 1;
  text-shadow: 0 0 20px rgba(57,255,20,0.4);
}
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── TICKER ── */
.ticker-bar {
  position: relative; z-index: 2;
  overflow: hidden; height: 42px;
  background: rgba(57,255,20,0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.ticker-inner {
  display: flex; gap: 4rem;
  animation: scroll-ticker 32s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Rajdhani', sans-serif; font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.07em; color: var(--text-muted);
}
.ticker-item .up { color: var(--green); }
.ticker-item .dn { color: #FF4444; }
.ticker-label { color: var(--text); }
@keyframes scroll-ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── PROBLEM ── */
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.problem-card {
  border: 1px solid var(--border-dim); border-radius: 10px;
  padding: 1.75rem; background: var(--black2);
}
.problem-card .x { color: #FF4444; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; display: block; }
.problem-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; position: relative; z-index: 1; }
.container { max-width: 1080px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 1.2rem;
}
.section-title .g { color: var(--green); }
.section-desc { color: var(--text-muted); max-width: 500px; line-height: 1.75; font-size: 0.95rem; }

/* ── ELITE BANNER ── */
.elite-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem 3rem;
  margin-bottom: 5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.elite-banner::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--green);
  box-shadow: 0 0 20px var(--green-glow);
}
.elite-banner-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  flex-shrink: 0;
}
.elite-banner-logo .g { color: var(--green); text-shadow: 0 0 30px rgba(57,255,20,0.5); }
.elite-banner-text h2 {
  font-family: 'Rajdhani', sans-serif; font-size: 1.6rem;
  font-weight: 700; letter-spacing: 0.04em; margin-bottom: 0.4rem;
}
.elite-banner-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.elite-pill {
  margin-left: auto; text-align: center; flex-shrink: 0;
}
.elite-pill-inner {
  background: rgba(57,255,20,0.08); border: 1px solid rgba(57,255,20,0.3);
  border-radius: 10px; padding: 1rem 1.5rem;
}
.elite-pill-name {
  font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700;
  color: var(--green); letter-spacing: 0.12em; line-height: 1;
  text-shadow: 0 0 20px rgba(57,255,20,0.4);
}
.elite-pill-sub { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; }

/* ── CARDS SERVIZI ── */
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: 10px; padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  cursor: pointer;
}
.card:hover { border-color: rgba(57,255,20,0.3); transform: translateY(-2px); }
.card-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.card h3 {
  font-family: 'Rajdhani', sans-serif; font-size: 1.2rem;
  font-weight: 700; margin-bottom: 0.6rem; letter-spacing: 0.02em;
}
.card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.1rem; }
.card-tag {
  display: inline-block; margin-top: auto; align-self: flex-start;
  background: rgba(57,255,20,0.08); color: var(--green);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 100px; padding: 0.2rem 0.75rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
}
.card.featured {
  border-color: rgba(57,255,20,0.3);
  background: linear-gradient(135deg, rgba(57,255,20,0.05) 0%, var(--surface) 60%);
}
.card.featured::after {
  content: 'PIÙ SCELTO';
  position: absolute; top: 1rem; right: 1rem;
  background: var(--green); color: #000;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  padding: 3px 8px; border-radius: 3px;
}

/* ── PROMO ── */
.promo-wrap {
  background: var(--surface);
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: 14px; overflow: hidden;
  position: relative;
}
.promo-wrap::before {
  content: 'SEASON PASS ELITE';
  position: absolute; top: 1.5rem; right: 1.8rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--green-dim);
}
.promo-inner {
  display: flex; align-items: stretch; flex-wrap: wrap;
}
.promo-content {
  flex: 1; min-width: 280px; padding: 3rem;
  border-right: 1px solid rgba(57,255,20,0.1);
}
.promo-content h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  line-height: 1.05; margin-bottom: 1.5rem;
}
.promo-content h2 .g { color: var(--green); }
.promo-features { list-style: none; margin-bottom: 2rem; }
.promo-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-muted); padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-dim);
}
.promo-features li:last-child { border-bottom: none; }
.promo-features li .check { color: var(--green); font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.promo-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.promo-note a { color: var(--green); text-decoration: none; }

.promo-price-col {
  min-width: 240px; padding: 3rem 2.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.75rem;
  background: rgba(57,255,20,0.03);
}
.promo-badge {
  background: rgba(57,255,20,0.1); border: 1px solid rgba(57,255,20,0.25);
  color: var(--green); border-radius: 100px; padding: 0.3rem 1rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.promo-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 5rem; font-weight: 700; color: var(--green); line-height: 1;
  text-shadow: 0 0 30px rgba(57,255,20,0.4);
}
.promo-price sup { font-size: 2rem; vertical-align: top; margin-top: 0.8rem; }
.promo-period { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; margin-top: -0.5rem; }
.promo-cta {
  background: var(--green); color: #000;
  padding: 1rem 2rem; border-radius: 6px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; display: block; width: 100%;
  box-shadow: 0 0 24px var(--green-glow);
  transition: box-shadow 0.2s;
}
.promo-cta:hover { box-shadow: 0 0 36px rgba(57,255,20,0.45); }
.promo-secure { font-size: 0.72rem; color: var(--text-muted); }

/* ── PRICING TIERS ── */
.pricing-intro { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--black2); border: 1px solid var(--border-dim);
  border-radius: 14px; padding: 2.25rem 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(57,255,20,0.07) 0%, var(--black2) 55%);
  border-color: rgba(57,255,20,0.4);
}
.pricing-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #000;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.pricing-tag.promo {
  background: var(--black2); color: var(--green);
  border: 1px solid var(--green);
}
.pricing-name {
  font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 0.3rem;
}
.pricing-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; min-height: 2.4em; }
.pricing-desc .g { color: var(--green); font-weight: 600; }
.pricing-price-row { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.2rem; }
.pricing-price {
  font-family: 'Rajdhani', sans-serif; font-size: 2.8rem; font-weight: 700;
  color: var(--green); line-height: 1;
  text-shadow: 0 0 24px rgba(57,255,20,0.35);
}
.pricing-price sup { font-size: 1.1rem; vertical-align: top; margin-top: 0.4rem; }
.pricing-price-suffix { font-size: 0.85rem; color: var(--text-muted); margin-left: 0.4rem; font-weight: 500; }
.pricing-period { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.pricing-savings {
  display: inline-block; font-size: 0.72rem; font-weight: 600; color: var(--green);
  background: rgba(57,255,20,0.08); border: 1px solid rgba(57,255,20,0.25);
  border-radius: 100px; padding: 0.2rem 0.75rem; margin-bottom: 1.5rem; width: fit-content;
}
.pricing-features { list-style: none; margin-bottom: 1.75rem; flex-grow: 1; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--text-muted); padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-dim);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--green); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.pricing-cta {
  background: transparent; color: var(--text);
  border: 1px solid rgba(57,255,20,0.3);
  padding: 0.9rem 1.5rem; border-radius: 6px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; text-align: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pricing-cta:hover { border-color: var(--green); color: var(--green); }
.pricing-card.featured .pricing-cta {
  background: var(--green); color: #000; border-color: var(--green);
  box-shadow: 0 0 24px var(--green-glow);
}
.pricing-card.featured .pricing-cta:hover { box-shadow: 0 0 36px rgba(57,255,20,0.4); }
.pricing-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 2.5rem; }
.pricing-note a { color: var(--green); text-decoration: none; }

/* ── COME FUNZIONA ── */
.steps-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  margin-top: 0;
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; padding-bottom: 2.5rem; position: relative; }
.step:last-child { padding-bottom: 0; }
.step-num-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(57,255,20,0.08); border: 1px solid rgba(57,255,20,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--green);
}
.step-line { width: 1px; flex: 1; background: rgba(57,255,20,0.1); margin-top: 0.4rem; min-height: 36px; }
.step:last-child .step-line { display: none; }
.step-body { padding-top: 0.5rem; }
.step-body h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; max-width: 400px; }
.step-body a { color: var(--green); text-decoration: none; }

/* ── ABOUT / TRUST ── */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.about-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.2rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stat {
  background: var(--surface); border: 1px solid var(--border-dim); border-radius: 10px;
  padding: 1.5rem; text-align: center;
}
.about-stat-num {
  font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700;
  color: var(--green); text-shadow: 0 0 20px rgba(57,255,20,0.4);
}
.about-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border-dim); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center;
  color: var(--text); font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 600;
}
.faq-q .icon { color: var(--green); font-size: 1.2rem; transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding-bottom: 1.4rem; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.review-card {
  background: var(--surface); border: 1px solid var(--border-dim);
  border-radius: 10px; padding: 1.5rem;
}
.review-stars { color: var(--green); font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.1rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(57,255,20,0.1); border: 1px solid rgba(57,255,20,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--green);
}
.review-name { font-size: 0.85rem; font-weight: 600; }
.review-sub { font-size: 0.72rem; color: var(--text-muted); }

/* ── CTA FINALE ── */
.cta-box {
  background: var(--surface);
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: 14px; padding: 4.5rem 2rem;
  text-align: center; position: relative; overflow: hidden;
  max-width: 720px; margin: 0 auto;
}
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(57,255,20,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 700;
  line-height: 1; margin-bottom: 0.3rem;
}
.cta-brand .g { color: var(--green); text-shadow: 0 0 30px rgba(57,255,20,0.5); }
.cta-sub { color: var(--text-muted); max-width: 420px; margin: 0 auto 2rem; line-height: 1.7; font-size: 0.95rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Variante compatta orizzontale (bassa e larga) */
.cta-box-compact {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: 1.75rem 2.5rem; max-width: 980px; text-align: left;
}
.cta-box-compact::before { display: none; }
.cta-compact-text h3 {
  font-family: 'Rajdhani', sans-serif; font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.2rem;
}
.cta-compact-text h3 .g { color: var(--green); text-shadow: 0 0 20px rgba(57,255,20,0.4); }
.cta-compact-text p { color: var(--text-muted); font-size: 0.85rem; }
.cta-box-compact .cta-actions { flex-shrink: 0; justify-content: flex-end; }
@media (max-width: 700px) {
  .cta-box-compact { flex-direction: column; text-align: center; padding: 1.75rem; }
  .cta-box-compact .cta-actions { justify-content: center; }
}

/* ── FOOTER ── */
footer {
  background: var(--black2); border-top: 1px solid var(--border-dim);
  padding: 2.5rem 2rem; position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--text);
}
.footer-logo .g { color: var(--green); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 7px;
  background: var(--surface); border: 1px solid var(--border-dim);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { border-color: var(--green); box-shadow: 0 0 14px var(--green-glow2); transform: translateY(-1px); }
.footer-copy { width: 100%; text-align: center; color: var(--text-muted); font-size: 0.75rem; border-top: 1px solid var(--border-dim); padding-top: 1.5rem; margin-top: 0.5rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .hero-hook .line-1 { white-space: normal; font-size: 0.95rem; }
  nav { padding: 1rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-mobile-panel { display: flex; }
  section { padding: 4rem 1.25rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 3rem; }
  .promo-content { border-right: none; border-bottom: 1px solid rgba(57,255,20,0.1); }
  .elite-banner { padding: 2rem 1.5rem; }
  .elite-pill { margin-left: 0; }
  .hero-stats { gap: 2rem; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { margin-top: 0.5rem; }
}

/* ── PAGE HEADER (sotto-pagine) ── */
.page-header { padding: 8rem 2rem 3rem; text-align: center; }
.page-header .back-link {
  display: inline-block; margin-bottom: 1.25rem;
  color: var(--text-muted); font-size: 0.85rem; text-decoration: none;
}
.page-header .back-link:hover { color: var(--green); }
.page-header h1 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 0.02em;
}
.page-header p { color: var(--text-muted); max-width: 560px; margin: 1rem auto 0; font-size: 0.95rem; line-height: 1.7; }

/* ── ELITE TEASER (homepage) ── */
.teaser-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; margin: 2.5rem 0 2.5rem;
}
.teaser-card { border: 1px solid var(--border-dim); border-radius: 10px; padding: 1.75rem; background: var(--black2); }
.teaser-card .icon-check { color: var(--green); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; display: block; }
.teaser-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }
.teaser-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

/* ── LANDING HERO ENTRANCE ANIMATION ── */
.landing-hero { min-height: calc(100vh - 60px); display: flex; flex-direction: column; justify-content: center; }
.landing-hero [class*="reveal-in-"] { opacity: 0; animation: heroFadeUp 0.7s ease forwards; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.landing-hero .reveal-in-1 { animation-delay: 0.05s; }
.landing-hero .reveal-in-2 { animation-delay: 0.18s; }
.landing-hero .reveal-in-3 { animation-delay: 0.32s; }
.landing-hero .reveal-in-4 { animation-delay: 0.5s; }
.landing-hero .reveal-in-5 { animation-delay: 0.65s; }
.landing-hero .reveal-in-6 { animation-delay: 0.85s; }
.landing-hero .reveal-in-7 { animation-delay: 1s; }
@media (prefers-reduced-motion: reduce) {
  .landing-hero [class*="reveal-in-"] { opacity: 1; animation: none; }
}

/* ── THANK YOU PAGE ── */
.thankyou-section { padding: 9rem 2rem 5rem; min-height: 100vh; }
.thankyou-container { max-width: 560px; text-align: center; }
.thankyou-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(57,255,20,0.1); border: 2px solid var(--green);
  color: var(--green); font-size: 2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px rgba(57,255,20,0.3);
}
.thankyou-title {
  font-family: 'Rajdhani', sans-serif; font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700; margin-bottom: 1rem;
}
.thankyou-title .g { color: var(--green); text-shadow: 0 0 24px rgba(57,255,20,0.4); }
.thankyou-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2.5rem; }
.thankyou-text strong { color: var(--text); }

.thankyou-box {
  display: flex; align-items: center; gap: 1rem; text-align: left;
  background: var(--surface); border: 1px solid var(--border-dim);
  border-radius: 10px; padding: 1.1rem 1.25rem; margin-bottom: 0.9rem;
}
.thankyou-step-num {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--green); color: #000; font-weight: 700;
  font-family: 'Rajdhani', sans-serif; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}
.thankyou-step-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

.thankyou-cta {
  display: inline-block; margin: 1.75rem 0 1.25rem;
  background: var(--green); color: #000;
  padding: 1rem 2rem; border-radius: 6px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: 0.04em; text-decoration: none;
  box-shadow: 0 0 26px var(--green-glow);
  transition: box-shadow 0.2s;
}
.thankyou-cta:hover { box-shadow: 0 0 38px rgba(57,255,20,0.4); }

.thankyou-note { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 2rem; }
.thankyou-home-link { color: var(--text-muted); font-size: 0.85rem; text-decoration: none; }
.thankyou-home-link:hover { color: var(--green); }

/* ── COME FUNZIONA: FEATURE ROW + TELEGRAM DEMO ── */
.tg-feature-row {
  display: grid; grid-template-columns: 300px 1fr; gap: 3rem;
  align-items: center; margin: 3rem 0 3.5rem;
}
.tg-feature-text .tg-feature-num {
  font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: var(--green); letter-spacing: 0.15em;
}
.tg-feature-text h3 {
  font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700;
  margin: 0.4rem 0 0.75rem;
}
.tg-feature-text p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; max-width: 420px; }

/* Phone mockup */
.tg-demo-phone {
  width: 260px; height: 480px; margin: 0 auto;
  background: #111; border-radius: 34px; border: 7px solid #1c1c1c;
  position: relative; overflow: hidden;
  box-shadow: 0 0 50px rgba(57,255,20,0.12), 0 20px 50px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.tg-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 18px; background: #1c1c1c; border-radius: 0 0 14px 14px; z-index: 10;
}
.tg-demo-header {
  background: #17212b; padding: 12px 14px 9px; padding-top: 28px;
  display: flex; align-items: center; gap: 9px;
  border-bottom: 1px solid #0e161d; position: relative; z-index: 5;
}
.tg-demo-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #39FF14, #1a7a08);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #000; font-size: 0.75rem; font-family: 'Rajdhani', sans-serif;
  flex-shrink: 0;
}
.tg-demo-title { color: #fff; font-size: 0.78rem; font-weight: 600; }
.tg-demo-sub { color: #6b8ba3; font-size: 0.62rem; }
.tg-demo-body { background: #0e1621; height: calc(100% - 68px); position: relative; overflow: hidden; }
.tg-demo-scroll {
  display: flex; flex-direction: column; gap: 7px;
  padding: 12px 9px; position: absolute; bottom: 0; left: 0; right: 0;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.tg-demo-scroll .bubble {
  background: #182533; color: #e8f0f5; font-size: 0.66rem; line-height: 1.4;
  padding: 7px 10px; border-radius: 11px 11px 11px 3px;
  max-width: 90%; opacity: 0; transform: scale(0.9);
  animation: tgPop 0.35s ease forwards;
}
.tg-demo-scroll .bubble.buy { border-left: 3px solid #39FF14; }
.tg-demo-scroll .bubble.sell { border-left: 3px solid #FF4444; }
.tg-demo-scroll .bubble.final { border-left: 3px solid #39FF14; background: #14301c; max-width: 96%; font-weight: 600; }
.tg-demo-scroll .bubble b { color: #39FF14; }
@keyframes tgPop { to { opacity: 1; transform: scale(1); } }

/* Feature mini grid (5 cards) */
.feature-mini-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.1rem;
}
.feature-mini-card {
  background: var(--surface); border: 1px solid var(--border-dim);
  border-radius: 10px; padding: 1.4rem;
}
.feature-mini-icon { font-size: 1.4rem; margin-bottom: 0.6rem; display: block; }
.feature-mini-card h4 {
  font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem;
}
.feature-mini-card p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.6; }

@media (max-width: 900px) {
  .tg-feature-row { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .tg-feature-text p { margin: 0 auto; }
}
