/* ==========================================================================
   APULIA EDGE - STILE PRINCIPALE
   ========================================================================== */

/* ─── RESET E VARIABILI ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

em, i { font-style: normal; }

:root {
  --adriatico-600: #1A3A5C;
  --adriatico-700: #122845;
  --adriatico-900: #091528;
  --adriatico-50: #EEF3F8;
  --adriatico-100: #D4E3EF;
  --adriatico-200: #A4C2D8;
  --terracotta-600: #C4622D;
  --terracotta-700: #9C4A1E;
  --terracotta-100: #F5DDD2;
  --brick-red: #B91C1C;
  --oro-600: #D4A843;
  --oro-400: #E8C876;
  --horizon-400: #8AABBD;
  --horizon-200: #C8DDE8;
  --neutral-900: #1A2030;
  --neutral-700: #6B6057;
  --neutral-500: #A89E92;
  --neutral-300: #D4C9BC;
  --neutral-100: #F0EAE0;
  --neutral-50: #FDFAF5;
  --on-dark: #FDFAF5;

  --f-head: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Inter', sans-serif;
  --f-mono: 'Roboto Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--neutral-50);
  color: var(--neutral-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITIES (Classi di supporto generiche) ─────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.mono { font-family: var(--f-mono); }
.hline { display: block; height: 1.5px; background: var(--oro-600); }
.tag {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 9999px;
}
.tag--adriatico { background: var(--adriatico-100); color: var(--adriatico-700); }
.tag--terracotta { background: var(--terracotta-100); color: var(--terracotta-700); }
.tag--oro { background: var(--oro-400); color: var(--adriatico-900); }
.tag-gold { color: var(--oro-400); font-style: italic; }

/* ─── TOP STATUS BAR PREMIUM (Sostituisce le vecchie barre) ────── */
#countdown-banner { display: none; }
.status-bar {
  background: var(--adriatico-900);
  border-bottom: 1px solid rgba(212, 168, 67, 0.25);
  padding: 12px 24px; z-index: 1000; position: relative;
}
.status-bar-inner {
  display: flex; justify-content: center; align-items: center; gap: 32px;
  max-width: 1200px; margin: 0 auto; flex-wrap: wrap;
}
.status-item { display: flex; align-items: center; gap: 14px; }
.status-label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--oro-400);
}
.status-value {
  display: flex; align-items: baseline; color: var(--on-dark);
  font-family: var(--f-mono); font-size: 14px; font-weight: 500;
  background: rgba(255, 255, 255, 0.04); padding: 6px 14px;
  border-radius: 4px; border: 1px solid rgba(212, 168, 67, 0.15);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}
.status-divider { width: 1px; height: 18px; background: rgba(212, 168, 67, 0.3); }
.cd-unit { font-size: 10px; color: rgba(253, 250, 245, 0.5); margin-left: 2px; margin-right: 8px; }
.cd-unit:last-child { margin-right: 0; }
.seats-count { color: var(--on-dark); }
.seats-total { font-family: var(--f-body); font-size: 11px; color: rgba(253, 250, 245, 0.5); margin: 0 6px; text-transform: lowercase; }
.seats-total-count { color: rgba(253, 250, 245, 0.8); }

/* ─── NAVIGAZIONE PRINCIPALE ───────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 900; background: var(--adriatico-600);
  border-bottom: 1.5px solid rgba(212, 168, 67, 0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 64px; max-width: 1200px; margin: 0 auto;
}
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(253, 250, 245, 0.65); text-decoration: none; transition: color 200ms;
}
.nav-links a:hover { color: var(--on-dark); }
.nav-cta {
  background: var(--terracotta-600); color: var(--on-dark) !important;
  padding: 9px 22px; border-radius: 4px; font-weight: 600 !important; letter-spacing: 0.04em !important;
}
.nav-cta:hover { background: var(--terracotta-700); }

/* Language Switcher */
.language-switcher { display: flex; align-items: center; gap: 8px; }
.nav-lang-item { list-style: none; }
.lang-btn {
  background: transparent; border: none; color: rgba(253, 250, 245, 0.65);
  font-family: var(--f-body); font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  cursor: pointer; transition: color 200ms; padding: 0; height: 24px; display: flex; align-items: center;
}
.lang-btn:hover { color: var(--on-dark); }
.lang-btn.active { color: var(--oro-400); border-bottom: 2px solid var(--oro-400); }
.lang-divider { color: rgba(253, 250, 245, 0.3); font-size: 11px; }

/* Hamburger Menu (Mobile) */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; height: 2px; width: 24px; background: var(--on-dark); border-radius: 2px; transition: all 220ms; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; background: var(--adriatico-700); border-top: 1px solid rgba(212, 168, 67, 0.2); padding: 16px 20px 24px; gap: 4px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 15px; font-weight: 500; color: rgba(253, 250, 245, 0.75); text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); letter-spacing: 0.03em; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.nav-cta { margin-top: 12px; background: var(--terracotta-600); color: var(--on-dark); padding: 14px 20px; border-radius: 4px; text-align: center; font-weight: 700; border-bottom: none; }

/* ─── STILI SEZIONI COMUNI ─────────────────────────────────────── */
section { padding: 100px 0; }
.section-eyebrow {
  display: flex; align-items: center; gap: 20px; font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neutral-700); margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--oro-600); }
.section-title { font-family: var(--f-head); font-size: clamp(36px, 4vw, 56px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: var(--adriatico-600); }
.section-title--light { color: var(--on-dark); }
.section-sub { font-family: var(--f-head); font-size: 22px; font-weight: 300; color: var(--neutral-700); margin-top: 12px; }

/* ─── HERO SECTION ─────────────────────────────────────────────── */
#hero {
  background: url('images-landing/sfondo.png') center center / cover no-repeat;
  min-height: 79vh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding: 42px 32px 80px;
}
#hero::before {
  content: ''; position: absolute; right: -120px; top: -100px; width: 800px; height: 800px;
  border-radius: 50%; background: radial-gradient(circle, rgba(212, 168, 67, 0.09) 0%, transparent 65%); pointer-events: none;
}
#hero::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--oro-600), transparent 60%);
}
.hero-inner { max-width: 900px; margin: 0 auto; width: 100%; display: flex; justify-content: center; align-items: center; text-align: center; position: relative; z-index: 1; }
.hero-left { display: flex; flex-direction: column; align-items: center; }
.hero-logo { margin-bottom: 36px; }
.hero-logo img { height: clamp(120px, 20vw, 212px); width: auto; display: block; max-width: 100%; margin: 0 auto; }
.hero-sub { font-size: 18px; color: rgba(253, 250, 245, 0.78); line-height: 1.6; margin-bottom: 16px; max-width: 620px; }
.hero-meta { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: 18px; width: 100%; margin-bottom: 42px; white-space: nowrap; }
.hero-meta-row { display: inline-flex; align-items: center; }
.hero-meta-key { display: none; }
.hero-meta-val {
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-size: 12px; color: rgba(253, 250, 245, 0.82);
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-main-cta {
  display: inline-flex; align-items: center; justify-content: center; background: var(--terracotta-600);
  color: var(--on-dark); text-decoration: none; font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
  padding: 18px 36px; border-radius: 4px; transition: background 200ms, transform 200ms;
}
.hero-main-cta:hover { background: var(--terracotta-700); transform: translateY(-1px); }
.hero-trust { margin-top: 18px; font-family: var(--f-mono); font-size: 12px; color: rgba(253, 250, 245, 0.62); letter-spacing: 0.04em; }

/* ─── MANIFESTO ────────────────────────────────────────────────── */
#manifesto { background: var(--adriatico-900); padding: 120px 32px; position: relative; overflow: hidden; }
#manifesto::before {
  content: ''; position: absolute; right: 0; bottom: 0; width: 600px; height: 400px;
  background: radial-gradient(ellipse at bottom right, rgba(196, 98, 45, 0.1) 0%, transparent 60%);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-mark { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--oro-400); margin-bottom: 36px; display: flex; align-items: center; gap: 16px; }
.manifesto-mark::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--oro-600); }
.manifesto-quote { font-family: var(--f-head); font-size: clamp(28px, 4vw, 52px); font-weight: 300; line-height: 1.3; color: var(--on-dark); margin-bottom: 40px; }
.manifesto-quote strong { font-weight: 600; font-style: normal; color: var(--on-dark); }
.manifesto-attribution { font-family: var(--f-mono); font-size: 13px; color: rgba(253, 250, 245, 0.72); letter-spacing: 0.06em; }

/* ─── PERCHÉ APULIA EDGE ───────────────────────────────────────── */
#perche { background: var(--neutral-50); padding: 100px 32px; }
.perche-inner { max-width: 1200px; margin: 0 auto; }
.perche-header { margin-bottom: 64px; }
.perche-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--neutral-300); border: 1px solid var(--neutral-300); border-radius: 8px; overflow: hidden; }
.perche-card { background: var(--neutral-50); padding: 52px 48px; display: flex; flex-direction: column; gap: 20px; }
.perche-card:nth-child(1) { border-top: 3px solid var(--adriatico-600); }
.perche-card:nth-child(2) { border-top: 3px solid var(--terracotta-600); }
.perche-card:nth-child(3) { border-top: 3px solid var(--oro-600); }
.perche-card:nth-child(4) { border-top: 3px solid var(--horizon-400); }
.perche-num { font-family: var(--f-mono); font-size: 11px; color: var(--neutral-500); letter-spacing: 0.1em; text-transform: uppercase; }
.perche-card-title { font-family: var(--f-head); font-size: 34px; font-weight: 600; color: var(--neutral-900); letter-spacing: -0.02em; line-height: 1.1; }
.perche-card-body { font-size: 16px; color: var(--neutral-700); line-height: 1.65; }
.perche-stat { font-family: var(--f-mono); font-size: 13px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--neutral-300); }
.perche-stat--adriatico { color: var(--adriatico-600); }
.perche-stat--terracotta { color: var(--terracotta-700); }
.perche-stats-row { display: flex; gap: 24px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--neutral-200); }
.perche-stat-kpi { display: flex; flex-direction: column; gap: 2px; }
.perche-stat-kpi-value { font-family: var(--f-head); font-size: 22px; font-weight: 700; color: var(--neutral-900); }
.perche-stat-kpi-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--neutral-500); }

/* ─── SPEAKERS ─────────────────────────────────────────────────── */
#speaker { background: var(--adriatico-600); padding: 100px 32px; }
.speaker-inner { max-width: 1200px; margin: 0 auto; }
.speaker-header { margin-bottom: 56px; }
.speaker-header .section-eyebrow { color: rgba(253, 250, 245, 0.72); }
.speaker-eyebrow-line { background: var(--oro-600); display: block; width: 32px; height: 1.5px; margin-right: 0; }
.speaker-header .section-sub { color: rgba(253, 250, 245, 0.82); }
.speaker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.speaker-card { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; }
.speaker-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; background: var(--adriatico-700); }
.speaker-photo-placeholder { display: none; } /* Nascosto da js se l'immagine carica */
.speaker-info { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.speaker-name { font-family: var(--f-head); font-size: 32px; font-weight: 600; color: var(--on-dark); letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.speaker-title-label { font-size: 14px; color: rgba(253, 250, 245, 0.65); line-height: 1.4; margin-bottom: 12px; }
.speaker-session { font-size: 12px; color: rgba(253, 250, 245, 0.72); line-height: 1.5; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-family: var(--f-mono); letter-spacing: 0.02em; }
.speaker-footnote { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(253, 250, 245, 0.72); padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); }

/* Featured Speaker (Cameron) */
.speaker-card--featured { display: grid; grid-template-columns: 1fr; gap: 0; margin-bottom: 40px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; overflow: hidden; }
.speaker-card--featured .speaker-info { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; }

/* ─── AGENDA & EXPERIENCE STRIP ────────────────────────────────── */
#agenda { padding: 0; background: var(--neutral-100); }
.venue-strip { position: relative; height: 480px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; }
.venue-strip-cell { position: relative; overflow: hidden; min-height: 160px; background: var(--adriatico-700); }
.venue-strip-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; position: absolute; inset: 0; }
.venue-strip-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9, 21, 40, 0.6) 0%, transparent 60%); }
.venue-strip-caption { position: absolute; bottom: 24px; left: 24px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(253, 250, 245, 0.65); }
.venue-strip-badge { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.venue-strip-badge-inner { text-align: center; background: rgba(9, 21, 40, 0.65); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(212, 168, 67, 0.35); border-radius: 6px; padding: 32px 52px; }
.venue-strip-badge-date { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--oro-400); margin-bottom: 12px; }
.venue-strip-badge-name { font-family: var(--f-head); font-size: 44px; font-weight: 600; color: #FDFAF5; line-height: 1; letter-spacing: -0.02em; }
.venue-strip-badge-sub { font-family: var(--f-head); font-size: 20px; font-weight: 300; color: rgba(253, 250, 245, 0.6); margin-top: 8px; }

.exp-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 3px; }
.exp-cell { position: relative; height: 240px; overflow: hidden; }
.exp-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.exp-cell-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9, 21, 40, 0.72) 0%, transparent 55%); }
.exp-cell-caption { position: absolute; bottom: 20px; left: 24px; }
.exp-cell-day { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--oro-400); margin-bottom: 6px; }
.exp-cell-title { font-family: var(--f-head); font-size: 24px; font-weight: 600; color: #FDFAF5; line-height: 1.1; }
.exp-cell--stat { background: var(--adriatico-600); display: flex; align-items: center; justify-content: center; padding: 32px; }
.exp-cell-stat-inner { text-align: center; }
.exp-cell-stat-num { font-family: var(--f-mono); font-size: 56px; color: var(--oro-400); line-height: 1; font-weight: 500; }
.exp-cell-stat-label { font-family: var(--f-head); font-size: 22px; font-weight: 600; color: #FDFAF5; margin-top: 10px; line-height: 1.2; }
.exp-cell-stat-sub { font-family: var(--f-mono); font-size: 11px; color: rgba(253, 250, 245, 0.72); margin-top: 14px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Tabs Agenda */
.agenda-inner--padded { padding-top: 80px; padding-bottom: 100px; }
.agenda-header { margin-bottom: 64px; }
.agenda-tabs { display: flex; gap: 2px; margin-bottom: 40px; background: var(--neutral-300); border-radius: 6px; padding: 3px; width: fit-content; }
.agenda-tab { padding: 10px 28px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 4px; cursor: pointer; border: none; background: transparent; color: var(--neutral-500); transition: all 180ms; font-weight: 500; }
.agenda-tab.active { background: var(--adriatico-600); color: var(--on-dark); }
.agenda-day { display: none; }
.agenda-day.active { display: block; }
.agenda-day-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; }
.agenda-day-title { font-family: var(--f-head); font-size: 36px; font-weight: 600; color: var(--adriatico-600); letter-spacing: -0.02em; }
.agenda-day-sub { font-family: var(--f-head); font-size: 18px; font-weight: 300; color: var(--neutral-500); margin-top: 6px; }
.agenda-badge { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 18px; border-radius: 4px; color: var(--on-dark); flex-shrink: 0; margin-top: 4px; }
.agenda-badge--1 { background: var(--adriatico-600); }
.agenda-badge--2 { background: var(--terracotta-600); }
.agenda-badge--3 { background: var(--oro-600); color: var(--adriatico-900); }

/* Righe Programma */
.agenda-rows { display: flex; flex-direction: column; }
.agenda-row { display: grid; grid-template-columns: 160px 1fr; gap: 32px; padding: 22px 0; border-bottom: 1px solid var(--neutral-300); align-items: start; }
.agenda-row:last-child { border-bottom: none; }
.agenda-time { font-family: var(--f-mono); font-size: 13px; color: var(--terracotta-700); letter-spacing: 0.04em; padding-top: 2px; }
.agenda-time--terra { color: var(--terracotta-700); }
.agenda-time--muted { color: var(--neutral-700); }
.agenda-row:nth-child(2) .agenda-time, .agenda-row:nth-child(4) .agenda-time { color: var(--adriatico-600); }
.agenda-desc { display: flex; flex-direction: column; gap: 5px; }
.agenda-main { font-size: 16px; font-weight: 600; color: var(--neutral-900); }
.agenda-sub { font-size: 14px; color: var(--neutral-700); line-height: 1.5; }
.agenda-optional { font-family: var(--f-mono); font-size: 12px; color: var(--neutral-700); }
.upsell-tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--oro-400); color: var(--adriatico-900); padding: 2px 8px; border-radius: 3px; margin-left: 8px; vertical-align: middle; }

/* ─── VENUE ────────────────────────────────────────────────────── */
#venue { background: var(--adriatico-600); padding: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.venue-left { padding: 100px 80px 80px; display: flex; flex-direction: column; gap: 40px; }
.venue-left-top { display: flex; flex-direction: column; gap: 16px; }
.venue-eyebrow { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oro-400); }
.venue-title { font-family: var(--f-head); font-size: clamp(36px, 3vw, 52px); font-weight: 600; color: var(--on-dark); letter-spacing: -0.02em; line-height: 1.05; }
.venue-sub { font-family: var(--f-head); font-size: 20px; font-weight: 300; color: rgba(253, 250, 245, 0.6); }
.venue-table { display: flex; flex-direction: column; }
.venue-row { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.venue-row:last-child { border-bottom: none; }
.venue-key { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(253, 250, 245, 0.72); padding-top: 2px; }
.venue-val { font-size: 15px; color: rgba(253, 250, 245, 0.8); line-height: 1.4; }
.venue-right { background: url('images-landing/metamare-slide.jpg') center center / cover no-repeat; padding: 0; position: relative; }
.venue-right-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(9, 21, 40, 0.45) 0%, rgba(9, 21, 40, 0.15) 100%); }

/* ─── BANNER POLIGNANO E ALBEROBELLO ───────────────────────────── */
#polignano { background: url('images-landing/polignano a mare.webp') center center / cover no-repeat; position: relative; padding: 72px 32px; }
#polignano::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(9, 21, 40, 0.80) 0%, rgba(9, 21, 40, 0.50) 100%); }
.polignano-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 64px; position: relative; z-index: 1; }
.polignano-left { max-width: 600px; }
.polignano-eyebrow { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oro-400); margin-bottom: 20px; display: flex; align-items: center; gap: 16px; }
.polignano-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--oro-600); }
.polignano-title { font-family: var(--f-head); font-size: 48px; font-weight: 600; color: var(--on-dark); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; }
.polignano-body { font-size: 16px; color: rgba(253, 250, 245, 0.65); line-height: 1.65; }
.polignano-body--light { margin-top: 16px; color: rgba(253, 250, 245, 0.9); }
.polignano-right { flex-shrink: 0; }
.polignano-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--oro-400); text-decoration: none; border-bottom: 1px solid rgba(212, 168, 67, 0.3); padding-bottom: 4px; transition: color 200ms, border-color 200ms; }
.polignano-link:hover { color: var(--on-dark); border-color: var(--oro-600); }

#alberobello { background: url('images-landing/alberobello.png') center center / cover no-repeat; position: relative; padding: 72px 32px; }
#alberobello::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(9, 21, 40, 0.75) 0%, rgba(156, 74, 30, 0.45) 100%); }
#alberobello .polignano-inner { flex-direction: row-reverse; }

/* ─── OUTCOMES ─────────────────────────────────────────────────── */
#outcomes { background: var(--neutral-50); padding: 100px 32px; }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.outcomes-card { background: #FFFFFF; border: 1px solid var(--neutral-200, #EAE2D6); border-radius: 6px; padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; }
.outcomes-num { font-family: var(--f-head); font-size: 42px; font-weight: 700; color: var(--terracotta-600); line-height: 1; }
.outcomes-title { font-family: var(--f-head); font-size: 20px; font-weight: 600; color: var(--adriatico-900); line-height: 1.3; }
.outcomes-body { font-size: 14px; color: var(--neutral-700); line-height: 1.6; }

/* ─── TICKET / PRICING ─────────────────────────────────────────── */
#ticket { background: var(--neutral-50); padding: 100px 32px; }
.ticket-inner { max-width: 1200px; margin: 0 auto; }
.ticket-header { margin-bottom: 44px; }
.ticket-availability { display: flex; align-items: baseline; gap: 8px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--neutral-300); }
.ticket-availability-label { font-size: 13px; font-weight: 500; color: var(--neutral-700); letter-spacing: 0.06em; }
.ticket-availability-count { font-size: 24px; font-weight: 600; color: var(--terracotta-600); font-family: var(--f-mono); }
.ticket-availability-total { font-size: 13px; font-weight: 500; color: var(--neutral-700); font-family: var(--f-mono); }
.ticket-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-bottom: 36px; align-items: stretch; }
.ticket-card { border-radius: 6px; padding: 34px 28px; display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden; }
.ticket-card--event,
.ticket-card--standard { background: var(--neutral-100); border: 1.5px solid var(--neutral-300); }
.ticket-card--session,
.ticket-card--bundle { background: var(--adriatico-600); border: 1.5px solid var(--adriatico-600); }
.ticket-recommended { position: absolute; top: 0; right: 28px; background: #D12129; color: #fff; font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 14px; border-radius: 0 0 5px 5px; }
.ticket-recommended--soldout { background: var(--brick-red); color: #fff; letter-spacing: 0.14em; font-weight: 800; }
.ticket-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; min-height: 18px; }
.ticket-card--event .ticket-label,
.ticket-card--standard .ticket-label { color: var(--adriatico-600); }
.ticket-card--session .ticket-label,
.ticket-card--bundle .ticket-label { color: var(--oro-400); }
.ticket-price { display: flex; flex-direction: column; gap: 7px; min-height: 132px; }
.ticket-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.ticket-early { font-family: var(--f-mono); font-size: clamp(38px, 4.2vw, 52px); line-height: 0.95; font-weight: 600; }
.ticket-card--event .ticket-early,
.ticket-card--standard .ticket-early { color: var(--adriatico-600); }
.ticket-card--session .ticket-early,
.ticket-card--bundle .ticket-early { color: var(--oro-400); }
.ticket-price-desc { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.35; }
.ticket-card--event .ticket-price-desc,
.ticket-card--standard .ticket-price-desc { color: var(--neutral-700); }
.ticket-card--session .ticket-price-desc,
.ticket-card--bundle .ticket-price-desc { color: rgba(253, 250, 245, 0.72); }
.ticket-listino { font-family: var(--f-mono); font-size: 15px; text-decoration: line-through; text-decoration-color: var(--brick-red); text-decoration-thickness: 3px; color: var(--brick-red); white-space: nowrap; }
.ticket-div { height: 1.5px; }
.ticket-card--event .ticket-div,
.ticket-card--standard .ticket-div { background: var(--neutral-300); }
.ticket-card--session .ticket-div,
.ticket-card--bundle .ticket-div { background: rgba(255, 255, 255, 0.15); }
.ticket-features { display: flex; flex-direction: column; gap: 9px; }
.ticket-feat { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; line-height: 1.35; }
.ticket-feat-note { display: block; margin-top: 2px; font-size: 12px; opacity: 0.72; }
.ticket-card--event .ticket-feat,
.ticket-card--standard .ticket-feat { color: var(--neutral-900); }
.ticket-card--session .ticket-feat,
.ticket-card--bundle .ticket-feat { color: var(--on-dark); }
.ticket-card--standard .tick * { stroke: var(--adriatico-600); }
.ticket-feat--no { opacity: 0.4; }
.tick { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }
.ticket-btn { display: block; text-align: center; text-decoration: none; padding: 13px 18px; border-radius: 4px; font-weight: 700; font-size: 13px; letter-spacing: 0.04em; margin-top: auto; transition: background 200ms, color 200ms; }
.ticket-btn--soldout { opacity: 1; cursor: not-allowed; background: transparent !important; border: 1.5px solid var(--brick-red) !important; color: var(--brick-red) !important; }
.stripe-link { width: 100%; background: var(--terracotta-600) !important; border-color: var(--terracotta-600) !important; color: var(--on-dark) !important; box-shadow: none !important; }
.ticket-discount-note { text-align: center; margin-top: 20px; font-size: 13px; color: var(--neutral-700); font-family: var(--f-mono); }
.ticket-card--standard .disclaimer-full { color: var(--neutral-700); }
.ticket-card--session .ticket-listino { color: #f0c36a; text-decoration-color: #f0c36a; }
.ticket-card--session .ticket-rush-price { color: var(--oro-400); }
.ticket-card--session .ticket-rush-close { color: rgba(253, 250, 245, 0.72); }
.disclaimer-full { color: #fff; padding: 0; font-size: 11px; line-height: 1.35; opacity: 0.7; }

/* ─── RUSH / PHASE WINDOWS ─────────────────────────────────────── */
.rush-hero-banner {
  display: none;
  background: var(--terracotta-600);
  color: #fff;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
}
.rush-hero-banner a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
body.phase-1 .rush-hero-banner--phase1,
body.phase-2 .rush-hero-banner--phase2 { display: flex; align-items: center; justify-content: center; gap: 12px; }
.banner-code { font-size: 15px; font-weight: 900; letter-spacing: 0.12em; color: #fff; }
.banner-code-label { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; }
.banner-sep { color: rgba(255,255,255,0.5); font-size: 13px; }
.banner-timer { display: flex; align-items: baseline; gap: 0; font-size: 15px; font-weight: 700; }
.banner-cd-unit { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.7); margin-left: 1px; margin-right: 6px; }
.banner-cd-unit:last-child { margin-right: 0; }
.ticket-rush-price {
  font-family: var(--f-mono);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 800;
  color: var(--terracotta-600);
  line-height: 1.1;
  margin-top: 4px;
}
.ticket-rush-close,
.ticket-rush-timer,
.ticket-microcopy,
.ticket-closed-note,
.ticket-tier-note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.35;
}
.ticket-rush-close,
.ticket-tier-note { color: var(--neutral-700); font-style: italic; }
.ticket-rush-timer {
  color: var(--brick-red);
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-radius: 4px;
  padding: 8px 10px;
  margin-top: 4px;
  width: fit-content;
}
.ticket-microcopy { color: var(--neutral-700); text-align: center; margin-top: -8px; }
.ticket-closed-note { color: var(--brick-red); font-style: italic; margin-bottom: -8px; }
body.phase-1 .phase2-only,
body.phase-2 .phase1-only { display: none !important; }
body.phase-2 .ticket-card--event {
  border-color: rgba(185, 28, 28, 0.45);
  background: #fff;
}
body.phase-2 .ticket-card--event .ticket-early {
  color: var(--brick-red);
  text-decoration: line-through;
  text-decoration-color: var(--brick-red);
  text-decoration-thickness: 3px;
}
body.phase-2 .ticket-card--event::before {
  content: "SOLD OUT";
  position: absolute;
  top: 0;
  right: 44px;
  background: var(--brick-red);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 18px;
  border-radius: 0 0 5px 5px;
}
.phase2-event-closed { display: none; }
body.phase-2 .phase2-event-closed { display: block; }
body.phase-2 .ticket-btn--event {
  pointer-events: none;
  background: transparent !important;
  border: 1.5px solid var(--brick-red) !important;
  color: var(--brick-red) !important;
}
.phase-bonus-card {
  margin-top: 28px;
  background: var(--oro-600);
  color: var(--adriatico-900);
  border-radius: 6px;
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid rgba(9, 21, 40, 0.12);
}
.phase-bonus-icon { font-size: 28px; line-height: 1; }
.phase-bonus-title {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.phase-bonus-body { font-size: 16px; line-height: 1.55; }
.agenda-secret-tagline {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--brick-red);
  font-style: italic;
}
.rush-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--adriatico-600);
  color: #fff;
  box-shadow: 0 -12px 30px rgba(9, 21, 40, 0.22);
}
.rush-sticky.visible { display: block; }
.rush-sticky-inner {
  min-height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.rush-sticky-copy {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.sticky-short { display: none; }
.sticky-short s { color: rgba(255,255,255,0.5); text-decoration-color: rgba(255,255,255,0.5); }
.sticky-short strong { color: var(--oro-400); }
.rush-sticky-cta {
  background: var(--terracotta-600);
  color: #fff;
  text-decoration: none;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 4px;
  white-space: nowrap;
}
.rush-sticky-close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* ─── INCLUSO ──────────────────────────────────────────────────── */
#incluso { background: var(--neutral-50); padding: 100px 32px; }
.incluso-inner { max-width: 1200px; margin: 0 auto; }
.incluso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.incluso-col { display: flex; flex-direction: column; gap: 0; }
.incluso-header { display: flex; align-items: center; gap: 12px; padding: 18px 28px; border-radius: 5px 5px 0 0; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.incluso-header--yes { background: var(--adriatico-600); color: var(--on-dark); }
.incluso-header--no { background: var(--neutral-300); color: var(--neutral-700); }
.incluso-list { list-style: none; display: flex; flex-direction: column; }
.incluso-item { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--neutral-700); line-height: 1.5; padding: 13px 28px; border: 1px solid var(--neutral-300); border-top: none; }
.incluso-item:last-child { border-radius: 0 0 5px 5px; }
.incluso-icon { flex-shrink: 0; margin-top: 3px; font-size: 14px; }
.incluso-icon--yes { color: var(--adriatico-600); }
.incluso-icon--no { color: var(--neutral-700); }
.incluso-note { color: var(--neutral-700); font-size: 13px; }

/* ─── COME PRENOTARE ───────────────────────────────────────────── */
#prenotare { background: var(--adriatico-900); padding: 100px 32px; position: relative; overflow: hidden; }
#prenotare::before { content: ''; position: absolute; right: -80px; bottom: -80px; width: 600px; height: 400px; background: radial-gradient(ellipse at bottom right, rgba(196, 98, 45, 0.1) 0%, transparent 60%); }
.prenotare-inner { max-width: 1200px; margin: 0 auto; }
.prenotare-inner .section-eyebrow { color: rgba(253, 250, 245, 0.72); }
.prenotare-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.prenotare-step { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; padding: 40px 36px; display: flex; flex-direction: column; gap: 18px; }
.step-num { font-family: var(--f-mono); font-size: 40px; color: var(--oro-400); line-height: 1; }
.step-title { font-family: var(--f-head); font-size: 28px; font-weight: 600; color: var(--on-dark); letter-spacing: -0.01em; }
.step-body { font-size: 15px; color: rgba(253, 250, 245, 0.6); line-height: 1.6; }
.prenotare-cta-wrap { margin-top: 56px; text-align: center; }
.prenotare-cta-wrap .ticket-btn,
.cta-final-btns .ticket-btn { width: auto; min-width: 200px; font-size: 15px !important; padding: 18px 36px !important; }
.ticket-btn--event { background: var(--oro-400) !important; border-color: var(--oro-400) !important; color: var(--adriatico-900) !important; }
.prenotare-cta-link { font-family: var(--f-mono); font-size: 18px; color: var(--terracotta-600); letter-spacing: 0.04em; text-decoration: none; }

/* ─── FAQ ──────────────────────────────────────────────────────── */
#faq { background: var(--neutral-50); padding: 100px 32px; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { margin-bottom: 56px; }
.faq-item { border-bottom: 1px solid var(--neutral-300); }
.faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 24px 0; cursor: pointer; font-size: 17px; font-weight: 600; color: var(--neutral-900); list-style: none; user-select: none; }
.faq-q::after { content: '+'; font-family: var(--f-mono); font-size: 20px; color: var(--terracotta-600); flex-shrink: 0; margin-top: 2px; transition: transform 200ms; }
details[open] .faq-q::after { content: '−'; }
.faq-a { font-size: 15px; color: var(--neutral-700); line-height: 1.7; padding-bottom: 24px; }

/* ─── CTA FINALE ───────────────────────────────────────────────── */
#cta-final { background: var(--adriatico-900); padding: 120px 32px; text-align: center; position: relative; overflow: hidden; }
#cta-final::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(212, 168, 67, 0.07) 0%, transparent 60%); }
.cta-final-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-final-label { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oro-400); margin-bottom: 28px; display: inline-flex; align-items: center; gap: 14px; }
.cta-final-label::before, .cta-final-label::after { content: ''; display: block; width: 24px; height: 1.5px; background: var(--oro-600); }
.cta-final-title { font-family: var(--f-head); font-size: clamp(36px, 5vw, 64px); font-weight: 600; color: var(--on-dark); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.cta-final-title .highlight { color: var(--oro-400); }
.cta-final-sub { font-family: var(--f-head); font-size: 22px; font-weight: 300; color: rgba(253, 250, 245, 0.55); margin-bottom: 48px; }
.cta-final-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--terracotta-600); color: var(--on-dark); text-decoration: none; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; padding: 18px 36px; border-radius: 4px; transition: background 200ms; }
.btn-primary:hover { background: var(--terracotta-700); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(253, 250, 245, 0.7); text-decoration: none; font-size: 15px; font-weight: 500; letter-spacing: 0.02em; padding: 18px 36px; border-radius: 4px; border: 1px solid rgba(255, 255, 255, 0.2); transition: all 200ms; }
.btn-outline:hover { color: var(--on-dark); border-color: rgba(255, 255, 255, 0.4); }
.cta-final-note { font-family: var(--f-mono); font-size: 12px; color: rgba(253, 250, 245, 0.55); margin-top: 40px; letter-spacing: 0.04em; }

/* ─── FOOTER ───────────────────────────────────────────────────── */
footer { background: var(--adriatico-900); border-top: 1px solid rgba(212, 168, 67, 0.2); padding: 48px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px; }
.footer-logo img { height: 22px; width: auto; opacity: 0.7; }
.footer-links { display: flex; gap: 36px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(253, 250, 245, 0.72); text-decoration: none; letter-spacing: 0.04em; transition: color 200ms; }
.footer-links a:hover { color: rgba(253, 250, 245, 0.7); }
.footer-copy { font-family: var(--f-mono); font-size: 12px; color: rgba(253, 250, 245, 0.55); letter-spacing: 0.04em; width: 100%; margin-top: 8px; }
.footer-copy--legal { margin-top: 12px; opacity: 0.7; }
.footer-copy--links { margin-top: 10px; }
.footer-legal-link { color: rgba(253, 250, 245, 0.55); text-decoration: underline; text-underline-offset: 3px; margin-right: 20px; }
.footer-legal-link:last-child { margin-right: 0; }

/* ─── TWEAKS PANEL (Pannello editor nascosto) ──────────────────── */
#tweaks-panel { display: none; position: fixed; bottom: 24px; right: 24px; z-index: 9999; background: white; border: 1px solid #D4C9BC; border-radius: 8px; padding: 24px; width: 280px; box-shadow: 0 8px 32px rgba(26, 58, 92, 0.15); flex-direction: column; gap: 20px; font-family: Inter, sans-serif; }
.tweaks-title { font-size: 13px; font-weight: 700; color: #1A3A5C; letter-spacing: 0.06em; text-transform: uppercase; }
.tweaks-label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: #6B6057; }
.tweaks-color-input { height: 32px; border: 1px solid #D4C9BC; border-radius: 4px; cursor: pointer; }
.tweaks-range-val { font-family: monospace; font-size: 12px; color: #A89E92; }
.tweaks-checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #6B6057; cursor: pointer; }
.tweaks-language { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid #D4C9BC; padding-top: 12px; }
.tweaks-radio-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6B6057; cursor: pointer; }
.tweaks-radio-label input[type="radio"] { cursor: pointer; width: 16px; height: 16px; }

/* ─── EXIT INTENT MODAL (PULITO E DEFINITIVO) ──────────────────── */
#exit-modal { display: none; position: fixed; inset: 0; z-index: 9998; align-items: center; justify-content: center; padding: 16px !important; }
#exit-modal.visible { display: flex; }
.popup-backdrop { position: absolute; inset: 0; background: rgba(9, 21, 40, 0.82); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); cursor: pointer; }
.exit-modal-box { position: relative; z-index: 1; background: var(--adriatico-700); border: 1px solid rgba(212, 168, 67, 0.3); border-radius: 8px; padding: 36px 32px 32px !important; max-width: 440px; width: 100%; text-align: center; box-shadow: 0 32px 80px rgba(9, 21, 40, 0.6); max-height: calc(100vh - 64px); overflow-y: auto; overscroll-behavior: contain; }
/* Scrollbar opzionale */
.exit-modal-box::-webkit-scrollbar { width: 6px; }
.exit-modal-box::-webkit-scrollbar-thumb { background: rgba(212, 168, 67, 0.35); border-radius: 999px; }

.exit-modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 28px; line-height: 1; color: rgba(253, 250, 245, 0.4); cursor: pointer; transition: color 180ms; font-family: var(--f-mono); }
.exit-modal-close:hover { color: var(--on-dark); }
.popup-eyebrow { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--oro-400); margin-bottom: 16px; }
.popup-title { font-family: var(--f-head); font-size: 26px !important; font-weight: 600; color: var(--on-dark); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 6px !important; }
.popup-sub { font-size: 14px; color: rgba(253, 250, 245, 0.6); line-height: 1.6; margin-bottom: 12px !important; }

/* ─── ACTIVE CAMPAIGN COMPACT FORM NEL MODAL ───────────────────── */
#exit-modal .ac-modal-wrapper form { padding: 0 !important; margin: 12px 0 0 0 !important; background: transparent !important; }
#exit-modal .ac-modal-wrapper ._form_element { margin-bottom: 12px !important; position: relative; width: 100% !important; text-align: left !important; }
#exit-modal .ac-modal-wrapper ._form-label { display: none !important; }

#exit-modal .ac-modal-wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
  width: 100% !important; min-height: 44px !important; height: 44px !important;
  color: #FDFAF5 !important; background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important; border-radius: 4px !important;
  font-family: var(--f-body) !important; font-size: 14px !important;
  box-shadow: none !important; -webkit-text-fill-color: #FDFAF5 !important;
}
.iti__tel-input{padding-left:110px !important;}
#exit-modal .ac-modal-wrapper input:-webkit-autofill,
#exit-modal .ac-modal-wrapper input:-webkit-autofill:hover, 
#exit-modal .ac-modal-wrapper input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px var(--adriatico-900) inset !important;
  -webkit-text-fill-color: #FDFAF5 !important;
  transition: background-color 5000s ease-in-out 0s;
}

#exit-modal .ac-modal-wrapper .iti { display: block !important; width: 100% !important; height: 44px !important; }
#exit-modal .ac-modal-wrapper .iti__flag-container { z-index: 5 !important; }
#exit-modal .ac-modal-wrapper .iti input[type="tel"],
#exit-modal .ac-modal-wrapper input[type="tel"] { padding-left: 110px !important; }

#exit-modal .ac-modal-wrapper ._submit {
  width: 100% !important; min-height: 48px !important; background: var(--terracotta-600) !important;
  color: #FDFAF5 !important; border: none !important; border-radius: 4px !important;
  font-weight: 700 !important; font-size: 15px !important; margin-top: 8px !important; cursor: pointer !important;
}
#exit-modal .ac-modal-wrapper ._submit:hover { background: var(--terracotta-700) !important; }
#exit-modal .ac-modal-wrapper ._form-branding { display: none !important; }

#exit-modal .ac-modal-wrapper ._form-thank-you {
  color: var(--oro-400) !important; font-size: 16px !important; padding: 16px !important;
  border: 1px dashed var(--oro-400) !important; background: rgba(212, 168, 67, 0.1) !important; border-radius: 6px !important;
}


/* ─── TABLET (≤ 900px) ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 20px; }
  #hero { padding: 60px 20px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-logo img { height: clamp(100px, 28vw, 180px); }
  .hero-card { max-width: 100%; }
  
  #perche, #speaker, #ticket, #outcomes, #incluso, #prenotare, #faq { padding: 72px 20px; }
  .perche-grid, .ticket-grid, .incluso-grid, .prenotare-steps { grid-template-columns: 1fr; }
  .perche-card { padding: 40px 32px; }
  .ticket-card { padding: 30px 24px; }
  .outcomes-grid { display: flex !important; flex-direction: column; }
  .speaker-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .speaker-card--featured { grid-template-columns: 1fr; }
  .speaker-card--featured .speaker-photo { aspect-ratio: 16/9; }
  .speaker-card--featured .speaker-photo-placeholder { width: 100%; min-height: 160px; }
  
  .venue-strip { grid-template-columns: 1fr; height: auto; }
  .venue-strip-cell { min-height: 200px; }
  .venue-strip-badge-inner { padding: 20px 28px; }
  .venue-strip-badge-name { font-size: 28px; }
  .exp-strip { grid-template-columns: repeat(2, 1fr); }
  
  .agenda-inner { padding-top: 56px; padding-bottom: 72px; }
  .agenda-row { grid-template-columns: 100px 1fr; gap: 16px; }
  
  #venue { grid-template-columns: 1fr; }
  .venue-left { padding: 64px 32px; }
  .venue-right { min-height: 280px; padding: 40px 32px; }
  
  .polignano-inner { flex-direction: column; gap: 32px; }
  #alberobello .polignano-inner { flex-direction: column; }
  .polignano-title { font-size: 36px; }
  #polignano, #alberobello { padding: 64px 20px; }
  
  #cta-final { padding: 80px 20px; }
  .cta-final-btns { flex-direction: column; align-items: stretch; }
  .prenotare-cta-wrap { flex-direction: column; }
  .prenotare-cta-wrap .ticket-btn,
  .cta-final-btns .ticket-btn { width: 100%; min-width: 0; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
  
  footer { padding: 40px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-links { gap: 20px; }
  #manifesto { padding: 80px 20px; }
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
}

/* ─── MOBILE (≤ 600px) ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .nav-inner { height: 56px; padding: 0 16px; }
  .nav-logo img { height: 22px; }
  
  .status-bar { padding: 8px 12px; }
  .status-bar-inner { gap: 10px; flex-direction: row; flex-wrap: nowrap; justify-content: center; }
  .status-divider { display: none; }
  .status-item { width: auto; justify-content: center; }
  .status-item:last-child { display: none; }
  .status-label { font-size: 9px; letter-spacing: 0.08em; }
  .status-value { font-size: 12px; padding: 4px 10px; }
  .rush-hero-banner { font-size: 11px; line-height: 1.45; padding: 12px 16px; }
  
  #hero { padding: 48px 16px 56px; }
  .hero-logo img { height: clamp(80px, 32vw, 150px); }
  .hero-tagline { font-size: 22px; margin-bottom: 32px; }
  .hero-meta { flex-wrap: wrap; white-space: normal; gap: 8px; }
  .hero-meta-row { white-space: nowrap; }
  .hero-sub { font-size: 16px; padding: 0 8px; }
  .hero-meta-key, .hero-meta-val { font-size: 13px; }
  .hero-card { padding: 32px 24px; }
  .hero-card-amount { font-size: 40px; }
  
  #manifesto, #perche, #speaker, #ticket, #incluso, #prenotare, #faq, #cta-final { padding: 64px 16px; }
  .manifesto-quote { font-size: 24px; }
  .perche-card, .prenotare-step { padding: 32px 24px; }
  .ticket-card { padding: 28px 20px; }
  .perche-card-title { font-size: 28px; }
  
  .speaker-grid { grid-template-columns: 1fr; }
  .speaker-photo, .speaker-photo-placeholder { aspect-ratio: 4/3; }
  
  .exp-strip { grid-template-columns: 1fr; }
  .agenda-inner { padding: 48px 16px 64px; }
  .agenda-tabs { width: 100%; overflow-x: auto; }
  .agenda-tab { padding: 10px 18px; font-size: 11px; white-space: nowrap; }
  .agenda-row { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .agenda-time { font-size: 12px; }
  .agenda-day-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  
  .venue-left { padding: 48px 16px; }
  .venue-right { padding: 32px 16px; min-height: 220px; }
  .venue-big { font-size: 56px; }
  .venue-row { grid-template-columns: 100px 1fr; gap: 12px; }
  
  #polignano, #alberobello { padding: 56px 16px; }
  .polignano-title { font-size: 30px; }
  .polignano-body { font-size: 15px; }
  
  .ticket-early { font-size: 48px; }
  .phase-bonus-card { flex-direction: column; padding: 24px 20px; }
  .rush-sticky-inner { min-height: 60px; gap: 10px; justify-content: space-between; text-align: left; }
  .rush-sticky-copy { font-size: 11px; line-height: 1.35; }
  .rush-sticky-cta { font-size: 10px; padding: 10px 12px; }
  .sticky-full { display: none; }
  .sticky-short { display: inline; }
  .incluso-item { padding: 12px 20px; font-size: 14px; }
  .faq-q { font-size: 15px; padding: 20px 0; }
  .cta-final-title { font-size: clamp(30px, 9vw, 48px); }
  
  footer { padding: 36px 16px; }
  .footer-links { flex-direction: column; gap: 14px; }
  .section-title, .polignano-title { font-size: clamp(28px, 8vw, 40px); }
  
  #exit-modal { padding: 18px 12px !important; }
  #exit-modal .exit-modal-box { max-height: calc(100vh - 36px) !important; padding: 36px 20px 28px !important; }
  #exit-modal .popup-title { font-size: 24px !important; }
}
