/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #002868;
  --blue-mid:#0052A5;
  --blue-lt: #4A90D9;
  --red:     #BF0A30;
  --red-lt:  #E8193A;
  --white:   #FFFFFF;
  --offwhite:#F4F6FA;
  --gold:    #FFD700;

  /* Nuovo sistema tipografico */
  --font-display: 'Barlow Condensed', sans-serif; /* titoli hero */
  --font-ui:      'Inter', sans-serif;             /* tutto il resto */

  /* Scala spazi 4-pt base */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--offwhite);
  color: var(--blue);
  overflow-x: hidden;
}

/* ===========================
   BANNER PROMO (sostituisce header)
=========================== */
.promo-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  border-bottom: 3px solid var(--gold);
  flex-wrap: wrap;
}

.promo-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.promo-text {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  text-align: center;
}

.promo-cta {
  background: var(--gold);
  color: var(--blue);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 7px 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}
.promo-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ===========================
   NUDGE POPUP (15 sec)
=========================== */
.nudge-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 10, 40, 0.72);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.nudge-overlay.show {
  display: flex;
  animation: nudgeIn 0.35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes nudgeIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
.nudge-popup {
  background: var(--blue);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 44px 36px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 70px rgba(0,0,0,0.7);
}
.nudge-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.nudge-close:hover { background: var(--red); color: #fff; }
.nudge-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  animation: nudgeShake 0.6s ease 0.4s both;
}
@keyframes nudgeShake {
  0%,100% { transform: rotate(0deg); }
  20%     { transform: rotate(-12deg); }
  40%     { transform: rotate(12deg); }
  60%     { transform: rotate(-8deg); }
  80%     { transform: rotate(8deg); }
}
.nudge-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.nudge-desc {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 24px;
}
.nudge-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--blue);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(255,215,0,0.35);
}
.nudge-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,215,0,0.5);
}

/* ===========================
   MODAL BONUS
=========================== */
.bonus-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 10, 40, 0.82);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.bonus-modal-overlay.open {
  display: flex;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.bonus-modal {
  background: var(--blue);
  border-radius: 16px;
  border: 2px solid rgba(74,144,217,0.3);
  padding: 40px 32px 32px;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}

.bonus-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.bonus-modal-close:hover {
  background: var(--red);
  color: #fff;
}

.bonus-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}

/* ===========================
   HEADER (rimosso — mantenuto per compatibilità)
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  border-bottom: 4px solid var(--red);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.logo-sep {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 900;
}

.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-img--bet { height: 30px; }

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.header-nav a:hover { opacity: 1; }

/* ===========================
   HERO – 2 colonne elegante
=========================== */
.hero {
  position: relative;
  background: var(--blue);
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ---- Blocco top centrato: eyebrow + immagine WC ---- */
.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px 0;
  gap: 0;
}

.hero-top .hero-eyebrow {
  margin-bottom: 0;
}

.hero-wc-img {
  width: min(480px, 72%);
  height: auto;
  display: block;
  margin: -50px auto -60px;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,0.55));
}

/* Stelle sfondo – più sottile */
.hero-bg-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* Grid 2 colonne */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 16px 48px 44px;
  gap: 48px;
}

.hero-col { min-width: 0; }

/* --- Colonna testo --- */
.hero-col--text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 12px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--sp-5);
  width: fit-content;
}

.eyebrow-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1) drop-shadow(0 1px 6px rgba(0,0,0,0.5));
}
.eyebrow-logo--bet { height: 36px; }

.eyebrow-x {
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.7;
}

.eyebrow-label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.2);
  margin-left: 2px;
}

.hero-title {
  /* fallback — non usato direttamente ora */
  font-family: var(--font-display);
  font-weight: 900;
}

/* ---- USA TITLE WRAP ---- */
.usa-title-wrap {
  position: relative;
  margin-bottom: var(--sp-4);
  user-select: none;
}

/* Stelle decorative animate */
.usa-star {
  position: absolute;
  color: var(--gold);
  font-size: 0.9rem;
  animation: starFloat 4s ease-in-out infinite;
  opacity: 0.7;
  pointer-events: none;
}
.s1 { top: 4px;  left: -8px;  animation-delay: 0s;    font-size: 0.7rem; }
.s2 { top: -6px; left: 48%;   animation-delay: 0.6s;  font-size: 1rem; }
.s3 { top: 8px;  right: 4px;  animation-delay: 1.1s;  font-size: 0.65rem; }
.s4 { bottom: 0; left: 12%;   animation-delay: 1.7s;  font-size: 0.75rem; }
.s5 { bottom: 4px; right: 18%; animation-delay: 2.3s; font-size: 0.55rem; }

@keyframes starFloat {
  0%, 100% { transform: translateY(0) scale(1);   opacity: 0.7; }
  50%       { transform: translateY(-5px) scale(1.2); opacity: 1; }
}

/* Titolo principale */
.usa-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.usa-title__line1 {
  display: block;
  font-size: clamp(3rem, 6.5vw, 6.2rem);

  /* Bandiera USA come fill del testo */
  background-image:
    /* Canton (stelle) — blu in alto a sinistra */
    linear-gradient(to bottom,
      #BF0A30 0%,   #BF0A30 7.69%,
      #fff    7.69%,#fff    15.38%,
      #BF0A30 15.38%,#BF0A30 23.08%,
      #fff    23.08%,#fff    30.77%,
      #BF0A30 30.77%,#BF0A30 38.46%,
      #fff    38.46%,#fff    46.15%,
      #BF0A30 46.15%,#BF0A30 53.85%,
      #fff    53.85%,#fff    61.54%,
      #BF0A30 61.54%,#BF0A30 69.23%,
      #fff    69.23%,#fff    76.92%,
      #BF0A30 76.92%,#BF0A30 84.62%,
      #fff    84.62%,#fff    92.31%,
      #BF0A30 92.31%,#BF0A30 100%
    );
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* Animazione scorrimento bandiera */
  animation: flagScroll 6s linear infinite;
  background-size: 200% 100%;
}

.usa-title__line2 {
  display: block;
  font-size: clamp(3.8rem, 8vw, 7.8rem);
  letter-spacing: 0.04em;

  /* Bande rosse-bianche orientate orizzontalmente — più visibili sul numero */
  background-image:
    linear-gradient(180deg,
      #BF0A30 0%,   #BF0A30 7.69%,
      #fff    7.69%,#fff    15.38%,
      #BF0A30 15.38%,#BF0A30 23.08%,
      #fff    23.08%,#fff    30.77%,
      #BF0A30 30.77%,#BF0A30 38.46%,
      #fff    38.46%,#fff    46.15%,
      #BF0A30 46.15%,#BF0A30 53.85%,
      #002868 53.85%,#002868 100%
    );
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: flagScroll 4s linear infinite reverse;
  background-size: 200% 100%;
}

@keyframes flagScroll {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Bandine decorative sotto il titolo */
.usa-stripes-deco {
  display: flex;
  gap: 2px;
  margin-top: var(--sp-2);
  height: 4px;
}
.usa-stripes-deco div {
  flex: 1;
  border-radius: 2px;
}
.usa-stripes-deco div:nth-child(odd)  { background: var(--red); }
.usa-stripes-deco div:nth-child(even) { background: var(--white); opacity: 0.6; }

/* "con:" sotto il titolo */
.hero-title__with {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: clamp(0.7rem, 1.1vw, 0.82rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-6);
}

/* ---- Testo descrittivo hero ---- */
.hero-desc {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.hero-desc strong {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

/* ---- Bottone regalo in hero (uguale al gift-btn ma più compatto) ---- */
.hero-gift-btn {
  margin-top: var(--sp-4);
  padding: 14px 32px;
  font-size: 0.95rem;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}

/* ---- Feature list sempre visibile ---- */
.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 100%;
  margin-bottom: var(--sp-6);
}

.feat-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  transition: background 0.2s;
}
.feat-item:hover { background: rgba(255,255,255,0.07); }

.feat-icon-wrap {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.feat-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.feat-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.feat-item__text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.feat-item__text span {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ---- Loghi federazioni sotto la lista ---- */
.hero-team-logos {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.07);
}
.hero-team-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.hero-team-logos img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ---- CTA bottone stile Mondiali ---- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid var(--white);
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(191,10,48,0.4);
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.cta-btn:hover {
  background: var(--red-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(191,10,48,0.55);
}
.cta-btn:hover::after { transform: translateX(100%); }

/* --- Colonna mappa --- */
.hero-col--map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.map-label {
  color: rgba(255,255,255,0.45);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.map-wrapper {
  width: 100%;
  background: #071628;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(74,144,217,0.3);
  box-shadow: 0 12px 48px rgba(0,0,0,0.55);
}

#usaMapContainer svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Bande stripes */
.hero-stripes {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.stripe { height: 7px; }
.stripe.red   { background: var(--red); }
.stripe.white { background: var(--white); }

/* ---- Callout NY ---- */
.ny-arrow-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 12;
  overflow: visible;
}

.ny-callout {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  animation: fadeInLeft 0.6s 2.5s ease forwards;
  z-index: 10;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateY(-50%) translateX(-12px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes arrowFadeIn {
  from { opacity: 0; }
  to   { opacity: 0.9; }
}

.ny-callout-body {
  background: var(--blue);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
}

.ny-callout-title {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,215,0,0.3);
  padding-bottom: 8px;
  text-align: center;
}

/* Nuova struttura match-row con loghi */
.match-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.match-team {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.match-team.right {
  flex-direction: row-reverse;
  text-align: right;
}

.team-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  flex-shrink: 0;
}

.team-name {
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.vs-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 3px;
  flex-shrink: 0;
}

.match-date {
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  font-family: var(--font-ui);
  white-space: nowrap;
  margin-left: auto;
  padding-left: 6px;
}

.match-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 4px 0;
}

/* ===========================
   MAP SECTION standalone – rimossa
=========================== */
.map-section { display: none; }

.section-label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--blue);
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.section-title.white { color: var(--white); }

.map-wrapper {
  max-width: 920px;
  margin: 0 auto;
  background: #0a1f44;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 50px rgba(0,40,104,0.35);
  border: 3px solid var(--blue-mid);
  overflow: hidden;
}

/* SVG generato da D3 */
#usaMapContainer svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Stati USA */
.state-path {
  fill: var(--blue-mid);
  stroke: #4A90D9;
  stroke-width: 0.7;
  transition: fill 0.2s;
}
.state-path:hover { fill: #1a6bbf; cursor: default; }

/* Bordo nazione */
.nation-border {
  fill: none;
  stroke: #90baeb;
  stroke-width: 1.2;
}

/* Griglia oceano */
.map-graticule {
  fill: none;
  stroke: rgba(74,144,217,0.15);
  stroke-width: 0.5;
}

/* Linea di volo */
.flight-arc {
  fill: none;
  stroke: var(--red-lt);
  stroke-width: 2.5;
  stroke-dasharray: 8 5;
  stroke-linecap: round;
  opacity: 0.9;
}

/* Punti città */
.city-dot {
  fill: var(--gold);
  stroke: var(--white);
  stroke-width: 2;
}
.city-dot-pulse {
  fill: var(--gold);
  opacity: 0.4;
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0%   { r: 8; opacity: 0.5; }
  100% { r: 22; opacity: 0; }
}

/* Etichette città */
.city-label {
  fill: var(--white);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px #000;
  pointer-events: none;
}
.city-badge {
  fill: rgba(0,0,0,0.55);
  rx: 4;
}

/* Aereo SVG custom */
.plane-path {
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.6));
}
.plane-group {
  pointer-events: none;
}

/* ===========================
   GIFT / REGALO SECTION
=========================== */
.gift-section {
  background: linear-gradient(135deg, var(--blue) 0%, #001844 100%);
  padding: var(--sp-9) var(--sp-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gift-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.gift-inner {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 0 auto;
}

/* SVG regalo */
.gift-svg-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-5);
  cursor: pointer;
}
.gift-svg {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 8px 24px rgba(191,10,48,0.4));
  transition: transform 0.3s ease;
}
.gift-svg-wrap:hover .gift-svg { transform: scale(1.05) rotate(-2deg); }

/* Animazione coperchio al click */
.gift-svg .gift-lid {
  transform-origin: center 55px;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.gift-svg .gift-bow-l,
.gift-svg .gift-bow-r {
  transition: transform 0.4s ease, opacity 0.4s;
  transform-origin: 60px 41px;
}
.gift-open .gift-lid   { transform: translateY(-28px) rotate(-8deg); }
.gift-open .gift-bow-l { transform: translate(-8px, -22px) rotate(-20deg); opacity: 0.7; }
.gift-open .gift-bow-r { transform: translate(8px, -22px) rotate(20deg); opacity: 0.7; }

.gift-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-3);
}

.gift-desc {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.gift-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 16px 44px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(191,10,48,0.5);
  transition: background 0.2s, transform 0.15s;
}
.gift-btn:hover {
  background: var(--red-lt);
  transform: scale(1.03);
}
.gift-btn svg { flex-shrink: 0; }

/* ===========================
   COMPARATORE BONUS
=========================== */
.comparator-section {
  background: var(--blue);
  padding: 70px 24px 60px;
  text-align: center;
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 40px auto 0;
}

.bonus-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}
.bonus-card.featured {
  border: 3px solid var(--gold);
  background: linear-gradient(160deg, #fff 60%, #fff8e1 100%);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--blue);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.bonus-logo-placeholder {
  background: var(--offwhite);
  border: 2px dashed var(--blue-lt);
  border-radius: 8px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-mid);
  margin-bottom: 16px;
  letter-spacing: 1px;
  overflow: hidden;
}
.bonus-logo-placeholder--dark {
  background: #1a1a2e;
  border-color: var(--gold);
}
.bonus-logo-img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.card-disclaimer {
  margin-top: 10px;
  font-size: 0.68rem;
  color: #888;
  line-height: 1.4;
  text-align: center;
}

.bonus-amount {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 4px;
}
.bonus-amount strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue);
}

.bonus-type {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.bonus-features {
  list-style: none;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 24px;
}

.bonus-cta {
  display: inline-block;
  padding: 12px 32px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.bonus-cta:hover { background: var(--blue-mid); }
.bonus-cta.featured-cta {
  background: var(--red);
  box-shadow: 0 4px 16px rgba(191,10,48,0.35);
}
.bonus-cta.featured-cta:hover { background: var(--red-lt); }

.disclaimer {
  margin-top: 32px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #000d1f;
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
  line-height: 1.8;
  border-top: 4px solid var(--red);
}
.footer-note { color: rgba(255,255,255,0.35); font-size: 0.75rem; }

/* ===========================
   LIVE SECTION – contenuti quotidiani
=========================== */
.live-section {
  background: var(--offwhite);
  padding: 80px 24px;
  text-align: center;
}

.live-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.live-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 22px;
  box-shadow: 0 4px 24px rgba(0,40,104,0.1);
  border-top: 4px solid var(--blue-mid);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.live-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,40,104,0.18);
}
.live-card.highlight-card {
  border-top-color: var(--red);
  background: linear-gradient(160deg, #fff 70%, #fff0f2 100%);
}

.live-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.live-card h4 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.live-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ===========================
   RESPONSIVE HERO
=========================== */
/* ===========================
   RESPONSIVE — TABLET (≤860px)
=========================== */
@media (max-width: 860px) {

  /* Banner promo */
  .promo-banner {
    padding: 8px 16px;
    gap: 10px;
  }
  .promo-text { font-size: 0.75rem; }
  .promo-cta  { font-size: 0.72rem; padding: 6px 14px; }

  /* Hero top */
  .hero-top { padding: 16px 16px 0; }
  .hero-wc-img { width: min(340px, 80%); margin: -36px auto -44px; }
  .eyebrow-logo     { height: 32px; }
  .eyebrow-logo--bet{ height: 28px; }

  /* Hero grid: 1 colonna, mappa prima (via order) */
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 20px 16px 28px;
    gap: 20px;
  }
  .hero-col--map  { order: 1; }
  .hero-col--text { order: 2; }

  /* Callout NY: sotto la mappa su mobile */
  .ny-callout {
    display: flex !important;
    position: static;
    transform: none;
    opacity: 1;
    animation: none;
    margin-top: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .ny-callout-body {
    min-width: unset;
    width: 100%;
  }

  /* Testo hero */
  .hero-col--text { padding-top: 0; }
  .hero-desc { font-size: 0.85rem; margin-bottom: 14px; }

  /* Feature list compatta */
  .feat-list { gap: 8px; margin-bottom: 16px; }
  .feat-item { padding: 10px 12px; }
  .feat-icon-wrap { width: 28px; height: 28px; }
  .feat-icon-wrap svg { width: 16px; height: 16px; }
  .feat-item__text strong { font-size: 0.85rem; }

  /* Bottone regalo centrato su mobile */
  .hero-gift-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
  }

  /* Gift section */
  .gift-section { padding: 48px 16px; }
  .gift-svg { width: 90px; height: 90px; }
  .gift-title { font-size: clamp(1.3rem, 5vw, 2rem); }
  .gift-desc { font-size: 0.85rem; }
  .gift-btn { padding: 13px 28px; font-size: 0.9rem; }
}

/* ===========================
   RESPONSIVE — MOBILE (≤480px)
=========================== */
@media (max-width: 480px) {

  /* Banner: stack verticale */
  .promo-banner {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    text-align: center;
  }
  .promo-logo { height: 22px; }
  .promo-text { font-size: 0.72rem; line-height: 1.5; }
  .promo-cta  { width: 100%; justify-content: center; padding: 10px; }

  /* Hero top */
  .hero-top { padding: 12px 12px 0; }
  .hero-eyebrow { gap: 8px; }
  .eyebrow-logo     { height: 26px; }
  .eyebrow-logo--bet{ height: 22px; }
  .eyebrow-x { font-size: 1rem; }
  .eyebrow-label { font-size: 0.65rem; padding-left: 8px; }
  .hero-wc-img { width: 75%; margin: -28px auto -36px; }

  /* Hero grid */
  .hero-grid { padding: 16px 12px 24px; gap: 16px; }

  /* Mappa: altezza ridotta su piccolo schermo */
  .map-wrapper { border-radius: 8px; }

  /* Feature list: 2 colonne su mobile */
  .feat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .feat-item { padding: 8px 10px; }
  .feat-item__text strong { font-size: 0.75rem; letter-spacing: 0; }

  /* Bottone regalo full width */
  .hero-gift-btn { width: 100%; justify-content: center; font-size: 0.82rem; }

  /* Gift */
  .gift-inner { padding: 0 4px; }
  .gift-title { font-size: clamp(1.1rem, 6vw, 1.6rem); }

  /* Modal bonus: full screen su mobile */
  .bonus-modal-overlay { padding: 0; align-items: flex-end; }
  .bonus-modal {
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
    padding: 28px 16px 24px;
  }
  .bonus-grid { grid-template-columns: 1fr; gap: 14px; }
  .bonus-modal-title { font-size: 1.2rem; margin-bottom: 20px; }

  /* Footer */
  .site-footer { font-size: 0.72rem; padding: 18px 16px; }
}
