:root {
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --dark: #080808;
  --card-bg: #0e0e0e;
  --header-h: 72px;
  --urgency-h: 40px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}
a { text-decoration: none; color: inherit; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════
   CRO #1 — URGENCY BAR
   Barra fissa in cima: crea scarsità e senso di 
   urgenza senza essere aggressiva.
═══════════════════════════════════════════════ */
.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--urgency-h);
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1001;
  cursor: pointer;
  transition: background 0.3s;
}
.urgency-bar:hover { background: var(--gold-light); }
.urgency-bar .ub-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #000;
  opacity: 0.5;
  animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.urgency-bar .ub-close {
  position: absolute;
  right: 16px;
  background: none; border: none;
  cursor: pointer;
  color: rgba(0,0,0,0.5);
  font-size: 1rem;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.urgency-bar .ub-close:hover { color: #000; }

/* ─── HEADER (shift-down when urgency bar visible) ─── */
header {
  position: fixed;
  width: 100%;
  top: var(--urgency-h);
  height: var(--header-h);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.4s, border-color 0.4s, top 0.3s;
  border-bottom: 1px solid transparent;
}
header.no-urgency { top: 0; }
header.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(201,169,110,0.12);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.logo span { color: var(--gold); }
nav { display: flex; gap: 32px; align-items: center; }
nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
nav a:hover { opacity: 1; color: var(--gold); }
nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold) !important;
  opacity: 1 !important;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--gold); color: #000 !important; }
.nav-cta::after { display: none !important; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 24px;
  padding-top: calc(var(--header-h) + var(--urgency-h));
  overflow: hidden;
}
.hero.no-urgency { padding-top: var(--header-h); }
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.55) 60%, rgba(8,8,8,0.95) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  margin-top: 20px;
  font-size: 1rem;
  opacity: 0;
  color: rgba(255,255,255,0.6);
  animation: fadeUp 0.9s 0.7s ease forwards;
  letter-spacing: 0.02em;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}

/* ═══════════════════════════════════════════════
   CRO #2 — HERO TRUST STRIP
   Sotto i bottoni: 3 micro-proof inline che 
   abbattono le ultime resistenze prima dello scroll.
═══════════════════════════════════════════════ */
.hero-trust {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s ease forwards;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-trust-item .ht-icon { color: var(--gold); font-size: 0.9rem; }

.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 1.4s ease forwards;
}
.scroll-indicator span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.4; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; border: none;
  min-height: 48px; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.3); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline:hover { border-color: #fff; transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); }
.btn-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); color: #fff; }
.btn-instagram:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-tiktok { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.btn-tiktok::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #25F4EE33, #FE2C5533); opacity: 0; transition: opacity 0.3s; }
.btn-tiktok:hover::before { opacity: 1; }
.btn-tiktok:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

/* ─── SECTIONS ─── */
section { padding: 110px 60px; }
.section-label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1rem; opacity: 0.55; max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }
.divider { width: 40px; height: 2px; background: var(--gold); margin: 16px auto 0; }

/* ═══════════════════════════════════════════════
   CRO #3 — SOCIAL PROOF NUMBERS STRIP
   Barra orizzontale tra Hero e Portfolio con numeri
   d'impatto: trasmette credibilità immediata.
═══════════════════════════════════════════════ */
.proof-strip {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 40px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proof-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.proof-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* ─── PORTFOLIO ─── */
#portfolio { background: var(--dark); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.card {
  position: relative; overflow: hidden; border-radius: 8px;
  aspect-ratio: 3/4; opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease; cursor: pointer;
}
.card.show { opacity: 1; transform: translateY(0); }
.card:nth-child(2) { transition-delay: 0.15s; }
.card:nth-child(3) { transition-delay: 0.3s; }
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.card:hover img { transform: scale(1.07); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; transition: background 0.4s;
}
.card:hover .card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.card-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }
.card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-6px); transition: opacity 0.3s, transform 0.3s;
}
.card:hover .card-arrow { opacity: 1; transform: translateY(0); }
.card-arrow svg { width: 14px; height: 14px; }
.portfolio-cta { text-align: center; margin-top: 48px; }

/* ─── ABOUT ─── */
#about { background: #090909; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 8px; display: block; }
.about-img-wrap::before {
  content: ''; position: absolute; inset: -12px -12px 12px 12px;
  border: 1px solid var(--gold); border-radius: 8px; opacity: 0.3; pointer-events: none;
}
.about-content .section-label { display: block; }
.about-content .section-title { text-align: left; }
.about-content .section-sub { margin: 0; }
.about-text { margin-top: 20px; font-size: 1rem; line-height: 1.8; opacity: 0.65; }
.about-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); display: block; }
.stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; margin-top: 4px; display: block; }

/* ═══════════════════════════════════════════════
   CRO #4 — TESTIMONIANZE
   La sezione più potente per la conversione eventi.
   Clienti reali = fiducia istantanea.
═══════════════════════════════════════════════ */
#testimonials { background: #060606; padding: 100px 60px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 60px auto 0;
}
.testimonial-card {
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.testimonial-card.show { opacity: 1; transform: translateY(0); }
.testimonial-card:nth-child(2) { transition-delay: 0.12s; }
.testimonial-card:nth-child(3) { transition-delay: 0.24s; }
.testimonial-card:hover { border-color: rgba(201,169,110,0.2); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars span { color: var(--gold); font-size: 0.85rem; }
.testimonial-text {
  font-size: 0.93rem;
  line-height: 1.75;
  opacity: 0.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim, #8a6f3e), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: #000;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; }
.testimonial-event { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-top: 2px; }
.testimonial-quote-mark {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
  user-select: none;
}

/* ─── SERVICES ─── */
#services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.service-card {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 36px 30px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s;
}
.service-card.show { opacity: 1; transform: translateY(0); }
.service-card:nth-child(2) { transition-delay: 0.15s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-4px); }

/* ═══════════════════════════════════════════════
   CRO #5 — SERVICE CARD LINK TO CONTACT
   Ogni service card ha un mini-CTA che porta 
   direttamente alla richiesta preventivo.
═══════════════════════════════════════════════ */
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.2s, gap 0.2s;
  cursor: pointer;
  background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  padding: 0;
}
.service-card-cta:hover { opacity: 1; gap: 10px; }
.service-card-cta svg { width: 12px; height: 12px; }

.service-icon { width: 48px; height: 48px; border: 1px solid rgba(201,169,110,0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 20px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; opacity: 0.55; line-height: 1.7; }
.services-cta { text-align: center; margin-top: 50px; }

/* ─── PROCESS ─── */
#process { background: #090909; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 1000px; margin: 0 auto; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: calc(16.66% + 20px); right: calc(16.66% + 20px); height: 1px; background: linear-gradient(to right, var(--gold), rgba(201,169,110,0.2)); }
.process-step { padding: 0 30px; text-align: center; opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.process-step.show { opacity: 1; transform: translateY(0); }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.4s; }
.step-num { width: 56px; height: 56px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); background: var(--dark); position: relative; z-index: 1; }
.process-step h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 12px; }
.process-step p { font-size: 0.88rem; opacity: 0.5; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   CRO #6 — FAQ ACCORDION
   Abbatte le obiezioni più comuni prima della 
   richiesta: "Quanto costa?", "Dove operi?", 
   "Quanto tempo ci vuole?". Fondamentale per 
   gli eventi dove le persone confrontano.
═══════════════════════════════════════════════ */
#faq { background: var(--dark); padding: 100px 60px; }
.faq-list { max-width: 760px; margin: 60px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-q {
  width: 100%; background: none; border: none; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 400;
  letter-spacing: 0.02em;
  text-align: left; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 16px;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: transform 0.35s, border-color 0.3s, background 0.3s;
  color: var(--gold);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); background: rgba(201,169,110,0.08); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-a p { font-size: 0.92rem; line-height: 1.8; opacity: 0.6; }
.faq-a a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════════════
   CRO #7 — CONTACT SECTION REDESIGN
   Form più chiaro con: tipo-evento selector,
   campo data, urgency copy, e doppio CTA 
   (form + WhatsApp in evidenza uguale).
═══════════════════════════════════════════════ */
#contact { background: var(--dark); }
.contact-inner { max-width: 740px; margin: 0 auto; }

/* Intestazione del form con contesto di fiducia */
.contact-intro {
  text-align: center;
  margin-bottom: 36px;
  padding: 20px;
  background: rgba(201,169,110,0.05);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 8px;
}
.contact-intro p { font-size: 0.88rem; line-height: 1.6; opacity: 0.7; }
.contact-intro strong { color: var(--gold); font-weight: 500; }

.contact-box {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 44px 40px;
}

/* Tipo evento: chip selector visivo */
.form-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.form-chip {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  background: transparent; color: rgba(255,255,255,0.55);
  user-select: none;
}
.form-chip:hover { border-color: var(--gold); color: var(--gold); }
.form-chip.selected { border-color: var(--gold); background: rgba(201,169,110,0.12); color: var(--gold); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.5; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none; appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-group select option { background: #1a1a1a; color: #fff; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); background: rgba(201,169,110,0.04); }
.form-group input::placeholder, .form-group textarea::placeholder { opacity: 0.3; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.6) sepia(1) saturate(2) hue-rotate(0deg); cursor: pointer; }

/* Submit button con copy a urgenza */
.btn-submit-wrap { margin-top: 8px; }
.btn-submit-wrap .btn { width: 100%; font-size: 14px; padding: 18px 28px; letter-spacing: 0.1em; }
.btn-submit-note { text-align: center; font-size: 0.72rem; opacity: 0.35; margin-top: 10px; letter-spacing: 0.06em; }

.contact-divider { display: flex; align-items: center; gap: 16px; margin: 28px 0; opacity: 0.3; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-divider::before, .contact-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.2); }

/* WhatsApp CTA potenziata */
.btn-whatsapp-full {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; width: 100%; padding: 18px 28px;
  background: #25D366; color: #fff;
  border-radius: 4px; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}
.btn-whatsapp-full:hover { background: #1ebe5c; transform: translateY(-2px); }
.btn-whatsapp-full .wa-sub { font-size: 0.7rem; opacity: 0.75; letter-spacing: 0.08em; display: block; margin-top: 2px; text-transform: none; font-weight: 300; }
.btn-whatsapp-full .wa-text { display: flex; flex-direction: column; align-items: flex-start; }

/* ═══════════════════════════════════════════════
   CRO #8 — FLOATING WHATSAPP BUTTON (mobile)
   Bottone fisso in basso a destra: sempre visibile
   su mobile dove il form è più lontano.
═══════════════════════════════════════════════ */
.float-wa {
  display: none;
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 998;
  background: #25D366;
  color: #fff;
  border: none; border-radius: 50px;
  padding: 14px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  cursor: pointer; text-decoration: none;
  animation: floatIn 0.6s 2s ease both;
}
.float-wa:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.45); }
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SOCIAL SECTION ─── */
.social-section { background: #070707; padding: 80px 60px; text-align: center; border-top: 1px solid rgba(255,255,255,0.04); }
.social-container { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ─── FOOTER ─── */
footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 28px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1rem; opacity: 0.6; }
.footer-copy { font-size: 12px; opacity: 0.3; letter-spacing: 0.05em; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.fade { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade.show { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  section { padding: 90px 40px; }
  #faq, #testimonials { padding: 90px 40px; }
  .proof-strip { padding: 36px 40px; }
  .about-inner { gap: 50px; }
}

/* ─── MOBILE MENU OVERLAY ─── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-overlay.show { opacity: 1; }

@media (max-width: 768px) {
  :root { --header-h: 64px; --urgency-h: 36px; }
  header { padding: 0 20px; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.show { pointer-events: auto; }
  nav {
    position: fixed; top: calc(var(--header-h) + var(--urgency-h)); right: 0; bottom: 0; width: 280px;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: flex-start; padding: 40px 30px; gap: 24px;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(201,169,110,0.12);
    z-index: 999;
    overflow-y: auto;
  }
  nav.no-urgency { top: var(--header-h); }
  nav.show { transform: translateX(0); }
  nav a { font-size: 15px; opacity: 0.7; }
  .nav-cta { width: 100%; text-align: center; }
  .menu-toggle { display: flex; }
  section { padding: 70px 20px; }
  #faq, #testimonials { padding: 70px 20px; }
  .social-section { padding: 60px 20px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); padding: 28px 20px; gap: 20px; }
  .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 16px 0; }
  .proof-item:nth-child(2n) { border-right: none; }
  .proof-item:last-child, .proof-item:nth-last-child(2) { border-bottom: none; }
  .grid { grid-template-columns: 1fr; gap: 14px; }
  .card { aspect-ratio: 16/10; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 320px; margin: 0 auto; }
  .about-content .section-title, .about-content .section-label, .about-text { text-align: center; }
  .about-stats { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .process-grid::before { display: none; }
  .contact-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  footer { justify-content: center; text-align: center; }
  .hero-trust { gap: 16px; }
  /* Floating WA visible su mobile */
  .float-wa { display: flex; }
  /* Nascondi urgency bar su mobile per spazio */
  .urgency-bar { font-size: 0.65rem; gap: 6px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .form-chips { gap: 6px; }
  .form-chip { font-size: 0.72rem; padding: 7px 12px; }
}