/* ── Keyboard Focus Accessibility ── */
*:focus-visible {
  outline: 2px solid #A137BF;
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #A137BF;
  outline-offset: 2px;
}
/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: #A137BF;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 16px;
}

/* ============================================
   CLUB RESERVATION® V2 — REDESIGN 2026
   Apple-Inspired. Minimal. Powerful.
   Palette: Viola Premium
   ============================================ */

/* ============================================
   CLUB RESERVATION® — REDESIGN 2026
   Stile: Minimal & Pulito | Palette: Viola
   ============================================ */

:root {
  --primary: #A137BF;
  --primary-light: #C477D9;
  --primary-dark: #4F2273;
  --primary-50: #FBF5FD;
  --primary-100: #F3E5F8;
  --primary-200: #E8CFF0;
  --primary-600: #A137BF;
  --primary-700: #6D3399;
  --primary-800: #4F2273;
  --primary-900: #3B1659;
  --text: #000000;
  --text-secondary: #64648b;
  --text-light: #9191ab;
  --bg: #ffffff;
  --bg-soft: #faf9ff;
  --bg-muted: #f4f2ff;
  --border: #e8e5f0;
  --border-light: #f0eef5;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(161,55,191,0.04);
  --shadow-md: 0 4px 16px rgba(161,55,191,0.06);
  --shadow-lg: 0 12px 40px rgba(161,55,191,0.08);
  --shadow-xl: 0 20px 60px rgba(161,55,191,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-soft);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-100);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-label i {
  font-size: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

/* Gradient highlight for key words — reusable */
.v2-grad {
  background: linear-gradient(135deg, #A137BF 0%, #C477D9 60%, #DDB8ED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-grad-warm {
  background: linear-gradient(135deg, #A137BF 0%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  margin-top: 16px;
  line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(161,55,191,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(161,55,191,0.4);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--white);
}
.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: var(--primary-50);
}

.btn-ghost {
  color: var(--primary);
  padding: 10px 0;
}
.btn-ghost:hover {
  color: var(--primary-dark);
}
.btn-ghost i {
  transition: transform var(--transition);
}
.btn-ghost:hover i {
  transform: translateX(4px);
}


/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* Light hero: dark text */
.navbar:not(.scrolled) .navbar-links a { color: rgba(26,18,53,0.6); }
.navbar:not(.scrolled) .navbar-links a:hover { color: #1a1235; }
.navbar:not(.scrolled) .navbar-logo img { filter: none; }
.navbar:not(.scrolled) .mobile-toggle span { background: #1a1235; }
.navbar:not(.scrolled) .navbar-cta .btn-outline { color: rgba(26,18,53,0.8); border-color: rgba(26,18,53,0.15); }
.navbar:not(.scrolled) .navbar-cta .btn-outline:hover { background: rgba(26,18,53,0.06); border-color: rgba(26,18,53,0.25); color: #1a1235; }

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .navbar-links a { color: var(--text-secondary); }
.navbar.scrolled .navbar-links a:hover { color: var(--primary); }
.navbar.scrolled .navbar-logo img { filter: none; }
.navbar.scrolled .mobile-toggle span { background: var(--text); }
.navbar.scrolled .navbar-cta .btn-outline { color: var(--text); border-color: var(--border); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-logo img {
  height: 24px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 24px;
}

.navbar-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.navbar-links a:hover {
  color: var(--primary);
}

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

.navbar-cta .btn {
  padding: 9px 18px;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
  left: 12px;
  transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}
.mobile-toggle span:nth-child(1) { top: 14px; }
.mobile-toggle span:nth-child(2) { top: 21px; }
.mobile-toggle span:nth-child(3) { top: 28px; }

/* Animated X state */
.mobile-toggle.active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide-in panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: var(--white);
  z-index: 1001;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu-header .navbar-logo img {
  height: 28px;
}

.mobile-menu-links {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.mobile-menu a.mobile-link {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: none;
}
.mobile-menu a.mobile-link:hover,
.mobile-menu a.mobile-link:active {
  background: var(--primary-50);
  color: var(--primary);
}

.mobile-menu-cta {
  margin: 16px 24px 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary) !important;
  color: #fff !important;
  border: none;
}

@media (max-width: 900px) {
  .navbar-links, .navbar-cta { display: none; }
  .mobile-toggle { display: flex; }
}


/* ============================================
   V2 HERO, MARQUEE, STATS
   ============================================ */

/* ============================================
   V2 HERO, MARQUEE, STATS REDESIGN
   Apple-inspired. Minimal. Powerful.
   ============================================ */

/* ============================================
   HERO SECTION — Full-viewport cinematic hero
   ============================================ */

.v2-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
  background: #f8f6fc;
}

/* ── LAYER 1: Animated aurora mesh ── */
.v2-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -20%; right: -20%; bottom: -20%;
  background:
    radial-gradient(ellipse 50% 45% at 25% 40%, rgba(161,55,191,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 75% 25%, rgba(142,53,172,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 60% 80%, rgba(219,39,119,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 35% 30% at 85% 55%, rgba(37,99,235,0.05) 0%, transparent 45%);
  background-size: 140% 140%;
  animation: v2-aurora-shift 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes v2-aurora-shift {
  0%, 100% { background-position: 0% 0%; transform: scale(1) rotate(0deg); }
  33% { background-position: 30% -10%; transform: scale(1.05) rotate(1deg); }
  66% { background-position: -15% 15%; transform: scale(0.98) rotate(-1deg); }
}

/* ── LAYER 2: Noise texture overlay ── */
.v2-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 2;
}

/* ── LAYER 3: Aurora blobs — morphing colored orbs ── */
.v2-hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.v2-hero-aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.v2-hero-aurora-orb:nth-child(1) {
  width: 600px; height: 600px;
  top: -10%; left: -5%;
  background: radial-gradient(circle, rgba(161,55,191,0.10) 0%, transparent 70%);
  animation: v2-aurora-orb1 16s ease-in-out infinite;
}

.v2-hero-aurora-orb:nth-child(2) {
  width: 450px; height: 450px;
  top: 20%; right: 5%;
  background: radial-gradient(circle, rgba(142,53,172,0.08) 0%, rgba(99,102,241,0.04) 50%, transparent 70%);
  animation: v2-aurora-orb2 20s ease-in-out infinite;
}

.v2-hero-aurora-orb:nth-child(3) {
  width: 350px; height: 350px;
  bottom: 5%; left: 30%;
  background: radial-gradient(circle, rgba(219,39,119,0.06) 0%, transparent 70%);
  animation: v2-aurora-orb3 22s ease-in-out infinite;
}

.v2-hero-aurora-orb:nth-child(4) {
  width: 280px; height: 280px;
  top: 50%; right: 20%;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
  animation: v2-aurora-orb4 18s ease-in-out infinite;
}

@keyframes v2-aurora-orb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(80px, 40px) scale(1.15); }
  50% { transform: translate(30px, 100px) scale(0.95); }
  75% { transform: translate(-50px, 60px) scale(1.08); }
}
@keyframes v2-aurora-orb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, 50px) scale(1.12); }
  66% { transform: translate(40px, -40px) scale(0.92); }
}
@keyframes v2-aurora-orb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(50px, -60px) scale(1.1); }
  70% { transform: translate(-30px, 30px) scale(0.93); }
}
@keyframes v2-aurora-orb4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -40px) scale(1.18); }
}

/* ── LAYER 4: Star particles ── */
.v2-hero-stars {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.v2-hero-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(161,55,191,0.25);
  border-radius: 50%;
  animation: v2-star-twinkle 4s ease-in-out infinite;
}

.v2-hero-star:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; animation-duration: 3s; }
.v2-hero-star:nth-child(2) { top: 22%; left: 45%; animation-delay: 0.8s; width: 1px; height: 1px; }
.v2-hero-star:nth-child(3) { top: 8%; right: 15%; animation-delay: 1.5s; animation-duration: 5s; }
.v2-hero-star:nth-child(4) { top: 35%; right: 8%; animation-delay: 0.3s; width: 3px; height: 3px; }
.v2-hero-star:nth-child(5) { bottom: 30%; left: 12%; animation-delay: 2s; animation-duration: 3.5s; }
.v2-hero-star:nth-child(6) { top: 55%; left: 35%; animation-delay: 1s; width: 1px; height: 1px; }
.v2-hero-star:nth-child(7) { top: 15%; left: 72%; animation-delay: 2.5s; }
.v2-hero-star:nth-child(8) { bottom: 20%; right: 25%; animation-delay: 0.5s; width: 1px; height: 1px; animation-duration: 6s; }

@keyframes v2-star-twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.02); }
}

/* Hero grid background SVG */
.v2-hero-bg-grid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 3;
  filter: none; opacity: 0.06;
}

/* Hero container wrapper */
.v2-hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Hero content — left side */
.v2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: v2HeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.v2-hero-content.animated {
  animation-delay: 0s;
}

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

/* Hero tag — glassy premium badge */
.v2-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(161,55,191,0.08);
  border: 1px solid rgba(161,55,191,0.18);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #A137BF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: v2HeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  opacity: 0;
}

.v2-hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52,211,153,0.6);
  animation: v2Pulse 2s ease-in-out infinite;
}

@keyframes v2Pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(52,211,153,0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 20px rgba(52,211,153,0.9); }
}

/* Hero headline — massive, dark on light */
.v2-hero h1 {
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #1a1235;
  /* No opacity/animation here — each .v2-hero-word handles its own reveal */
}

/* ── Headline word-by-word reveal ── */
.v2-hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: v2WordReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.v2-hero-word:nth-child(1) { animation-delay: 0.1s; }
.v2-hero-word:nth-child(2) { animation-delay: 0.18s; }
.v2-hero-word:nth-child(3) { animation-delay: 0.26s; }
.v2-hero-word:nth-child(4) { animation-delay: 0.34s; }
.v2-hero-word:nth-child(5) { animation-delay: 0.42s; }
.v2-hero-word:nth-child(6) { animation-delay: 0.55s; }

@keyframes v2WordReveal {
  to { opacity: 1; transform: translateY(0); }
}

.v2-hero h1 .gradient {
  background: linear-gradient(135deg, #A137BF 0%, #9735B0 20%, #6D3399 45%, #B84ED0 70%, #A137BF 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  /* Dual animation: word reveal (once) + gradient shift (infinite) */
  animation: v2WordReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards,
             v2GradShift 6s ease-in-out 0.55s infinite;
}

@keyframes v2GradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Breathing glow behind gradient text */
.v2-hero h1 .gradient::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -10%;
  right: -10%;
  height: 24px;
  background: linear-gradient(90deg, transparent, rgba(161,55,191,0.15), rgba(184,78,208,0.12), rgba(161,55,191,0.08), transparent);
  border-radius: 50%;
  filter: blur(14px);
  animation: v2-glow-breathe 4s ease-in-out infinite;
}

@keyframes v2-glow-breathe {
  0%, 100% { opacity: 0.5; transform: scaleX(0.9); }
  50% { opacity: 1; transform: scaleX(1.1); }
}

/* Hero subtitle */
.v2-hero-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  line-height: 1.55;
  color: rgba(26,18,53,0.6);
  max-width: 460px;
  animation: v2HeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
  opacity: 0;
}

/* Social proof micro-line */
.v2-hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: v2HeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.v2-hero-proof-avatars {
  display: flex;
}

.v2-hero-proof-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #f8f6fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  margin-left: -6px;
}

.v2-hero-proof-avatars span:first-child { margin-left: 0; }
.v2-hero-proof-avatars span:nth-child(1) { background: linear-gradient(135deg, #A137BF, #C477D9); color: #fff; }
.v2-hero-proof-avatars span:nth-child(2) { background: linear-gradient(135deg, #059669, #10b981); color: #fff; }
.v2-hero-proof-avatars span:nth-child(3) { background: linear-gradient(135deg, #d946ef, #f0abfc); color: #fff; }
.v2-hero-proof-avatars span:nth-child(4) { background: rgba(161,55,191,0.08); color: rgba(26,18,53,0.5); border-color: rgba(161,55,191,0.15); }

.v2-hero-proof-text {
  font-size: 0.78rem;
  color: rgba(26,18,53,0.5);
  line-height: 1.4;
}

.v2-hero-proof-text strong {
  color: rgba(26,18,53,0.85);
  font-weight: 700;
}

/* ── Live ticket ticker ── */
.v2-hero-ticker {
  font-size: 0.78rem;
  color: rgba(26,18,53,0.45);
  margin-top: 4px;
}

.v2-hero-ticker strong {
  color: #A137BF;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ── Rotating testimonial ── */
.v2-hero-testimonial {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(26,18,53,0.45);
  max-width: 420px;
  line-height: 1.5;
  min-height: 2.2em;
  transition: opacity 0.4s ease;
}

.v2-hero-testimonial .v2-test-author {
  font-style: normal;
  font-weight: 600;
  color: rgba(26,18,53,0.6);
  font-size: 0.7rem;
  margin-top: 4px;
  display: block;
}

/* ── Microcopy under CTAs ── */
.v2-hero-microcopy {
  font-size: 0.72rem;
  color: rgba(26,18,53,0.35);
  margin-top: -4px;
  letter-spacing: 0.02em;
}

/* Hero CTA actions */
.v2-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: v2HeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
  opacity: 0;
  margin-top: 4px;
}

.v2-hero-actions .btn {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-hero-actions .btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8E35AC 0%, #A137BF 50%, #6D3399 100%);
  border: 1px solid rgba(192,132,252,0.35);
  box-shadow: 0 4px 24px rgba(161,55,191,0.5), 0 0 0 1px rgba(161,55,191,0.15), inset 0 1px 0 rgba(255,255,255,0.12);
}

.v2-hero-actions .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8E35AC 0%, #A137BF 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.v2-hero-actions .btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.v2-hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(161,55,191,0.6), 0 0 0 1px rgba(161,55,191,0.2), inset 0 1px 0 rgba(255,255,255,0.18);
}

.v2-hero-actions .btn-outline {
  background: rgba(26,18,53,0.05);
  border: 1px solid rgba(26,18,53,0.15);
  color: rgba(26,18,53,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.v2-hero-actions .btn-outline:hover {
  background: rgba(26,18,53,0.08);
  border-color: rgba(26,18,53,0.25);
  color: #1a1235;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── HERO RIGHT — Event Marquee ── */
.v2-hero-events-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: v2HeroFadeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

@keyframes v2HeroFadeIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.92); filter: blur(4px); }
  60% { filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* ── Ambient glow behind marquee ── */
.v2-hero-events-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,55,191,0.06) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
  animation: v2-ambientPulse 6s ease-in-out infinite;
}

@keyframes v2-ambientPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

/* ── Stack label (above cards) ── */
.v2-hero-stack-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,18,53,0.4);
  margin-bottom: 24px;
}

.v2-hero-stack-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
  animation: v2LivePulse 1.5s ease-in-out infinite;
}

/* ── Live counter below stack ── */
.v2-hero-stack-counter {
  margin-top: 12px;
  font-size: 0.68rem;
  color: rgba(26,18,53,0.35);
  text-align: center;
  letter-spacing: 0.02em;
}

.v2-hero-stack-counter strong {
  color: var(--accent-light, #fbbf24);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ── Live counter below stack ── */
.v2-hero-stack-counter {
  margin-top: 12px;
  font-size: 0.68rem;
  color: rgba(26,18,53,0.35);
  text-align: center;
  letter-spacing: 0.02em;
}

.v2-hero-stack-counter strong {
  color: var(--accent-light, #fbbf24);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Scroll indicator */
.v2-hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: v2HeroFadeUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
}

.v2-scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(161,55,191,0.4);
  border-bottom: 2px solid rgba(161,55,191,0.4);
  transform: rotate(-45deg);
  animation: v2Bounce 2.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════
   HERO EVENT MARQUEE — Vertical infinite scroll
   ══════════════════════════════════════════════ */

/* ── Marquee viewport (masked) ── */
.v2-hero-events-marquee {
  position: relative;
  width: 320px;
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* ── Infinite scroll track ── */
.v2-hero-events-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: v2HeroEventsScroll 30s linear infinite;
  will-change: transform;
}

.v2-hero-events-marquee:hover .v2-hero-events-track {
  animation-play-state: paused;
}

@keyframes v2HeroEventsScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 8px)); }
}

/* ── Event card in marquee ── */
.v2-hero-event-card {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 12px 32px -8px rgba(26,18,53,0.20),
    0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  margin: 0 auto;
}

.v2-hero-event-card:hover {
  transform: scale(1.03);
  box-shadow:
    0 20px 50px -10px rgba(26,18,53,0.30),
    0 0 40px -8px var(--flyer-glow, rgba(161,55,191,0.15));
}

/* ── Event card image ── */
.v2-hero-event-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.v2-hero-event-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background: linear-gradient(to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.45) 50%,
    transparent 100%
  );
  z-index: 2;
}

/* ── Event content overlay ── */
.v2-hero-event-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v2-hero-event-card-venue {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flyer-highlight, #D4A0E2);
}

.v2-hero-event-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.v2-hero-event-card-date {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.v2-hero-event-card-date i {
  font-size: 0.45rem;
  color: rgba(255,255,255,0.35);
}

/* ── Badge pill (top-left on marquee cards) ── */
.v2-hero-event-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}

.v2-hero-event-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.v2-hero-event-pill.pill-live {
  background: rgba(16,185,129,0.25);
  color: #34d399;
  box-shadow: 0 0 14px rgba(16,185,129,0.3);
}

.v2-hero-event-pill.pill-live .pill-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #34d399;
  animation: v2LivePulse 1.5s ease-in-out infinite;
}

.v2-hero-event-pill.pill-soon {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.v2-hero-event-pill.pill-sold {
  background: rgba(245,158,11,0.25);
  color: #fbbf24;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .v2-hero-events-track {
    animation: none !important;
  }
  .v2-hero-word { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ── Responsive hero events marquee ── */
@media (max-width: 768px) {
  .v2-hero-events-marquee {
    width: 280px;
    height: 400px;
  }
  .v2-hero-event-card {
    width: 260px;
    height: 170px;
    border-radius: 16px;
  }
  .v2-hero-event-card-title { font-size: 0.9rem; }
  .v2-hero-events-wrap { margin-top: 24px; }
}

@media (max-width: 400px) {
  .v2-hero-events-marquee {
    width: 260px;
    height: 360px;
  }
  .v2-hero-event-card {
    width: 240px;
    height: 155px;
  }
}



@keyframes v2Bounce {
  0%, 100% {
    opacity: 0.4;
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: rotate(-45deg) translateY(8px);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   MARQUEE SECTION — Sleek infinite scroll
   ============================================ */

.v2-marquee-section {
  padding: 40px 0;
  background: linear-gradient(90deg,
    #f8f6fc 0%,
    #faf8ff 100%
  );
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(161, 55, 191, 0.08);
  animation: slideInDown 0.8s ease-out;
}

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

.v2-marquee-container {
  position: relative;
}

.v2-marquee-track {
  display: flex;
  animation: marqueeScroll 45s linear infinite;
  gap: 0;
  will-change: transform;
}

.v2-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 16px));
  }
}

.v2-marquee-item {
  flex-shrink: 0;
  padding: 0 40px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1d1d1f;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.v2-marquee-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.3);
  transition: all 0.3s ease;
}

.v2-marquee-track:hover .v2-marquee-item::before {
  background: rgba(29, 29, 31, 0.6);
  transform: scale(1.4);
}

/* ============================================
   STATS SECTION — Counter-style value prop
   ============================================ */

.v2-stats-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.v2-stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 50% at 10% 50%, rgba(161,55,191,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 50%, rgba(196,119,217,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.v2-stats-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.v2-stats-text {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.v2-stats-text h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

.v2-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  animation: fadeInUp 0.8s ease-out 0.15s forwards;
  opacity: 0;
}

.v2-stat-card {
  padding: 48px 28px;
  background: linear-gradient(160deg, #fff 0%, #faf8ff 100%);
  border: 1px solid rgba(161,55,191,0.08);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.v2-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(161,55,191,0.05) 0%,
    rgba(196,119,217,0.02) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.v2-stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #A137BF, #C477D9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v2-stat-card:hover {
  border-color: rgba(161,55,191,0.15);
  background: #fff;
  box-shadow: 0 16px 50px rgba(161,55,191,0.1), 0 2px 8px rgba(0,0,0,0.03);
  transform: translateY(-8px);
}

.v2-stat-card:hover::before { opacity: 1; }
.v2-stat-card:hover::after { transform: scaleX(1); }

.v2-stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #A137BF 0%, #C477D9 50%, #A137BF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Counter animation */
.v2-stat-number.counting {
  animation: countUp 2s ease-out forwards;
}

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

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 1024px) {
  .v2-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .v2-hero-content { align-items: center; }
  .v2-hero-subtitle { max-width: 520px; margin: 0 auto; }
  .v2-hero-tag { margin: 0 auto; }
  .v2-hero-proof { justify-content: center; }
  .v2-hero-actions { justify-content: center; }

  .v2-hero-events-wrap {
    margin: 32px auto 0;
    max-width: 300px;
  }

  .v2-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .v2-marquee-item {
    padding: 0 28px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 768px) {
  .v2-hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .v2-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .v2-hero h1 {
    font-size: clamp(2.4rem, 7vw, 3.2rem);
  }

  .v2-hero-content {
    gap: 22px;
  }

  .v2-hero-events-wrap {
    margin-top: 24px;
  }

  .v2-stats-section {
    padding: 60px 0;
  }

  .v2-stats-text {
    margin-bottom: 50px;
  }

  .v2-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v2-stat-card {
    padding: 36px 20px;
  }

  .v2-marquee-section {
    padding: 32px 0;
  }

  .v2-marquee-item {
    padding: 0 20px;
    font-size: 0.75rem;
  }

  .v2-hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .v2-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .v2-hero {
    padding: 90px 0 50px;
  }

  .v2-hero h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .v2-hero-subtitle {
    font-size: 0.92rem;
  }

  .v2-hero-events-wrap {
    margin-top: 16px;
  }

  .v2-stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .v2-marquee-item {
    padding: 0 16px;
  }
}


/* ============================================
   V2 DEMO SECTION — Autofattura-inspired
   ============================================ */
.v2-demo-section {
  padding: 120px 40px;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.v2-demo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.v2-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left: text content */
.v2-demo-text {
  max-width: 520px;
}

.v2-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--v2-primary-100, #F3E5F8);
  color: var(--v2-primary, #A137BF);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.v2-demo-badge i {
  font-size: 0.7rem;
}

.v2-demo-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text, #111);
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
}

.v2-demo-text h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #A137BF, #C477D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-demo-text > p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary, #555);
  margin: 0 0 32px 0;
}

/* Feature highlights */
.v2-demo-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.v2-demo-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.v2-demo-highlight-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--v2-primary-100, #F3E5F8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v2-primary, #A137BF);
  font-size: 1rem;
}

.v2-demo-highlight-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text, #111);
  margin-bottom: 2px;
}

.v2-demo-highlight-text span {
  font-size: 0.875rem;
  color: var(--text-secondary, #666);
  line-height: 1.5;
}

.v2-demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--v2-primary, #A137BF);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(161, 55, 191, 0.25);
}

.v2-demo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(161, 55, 191, 0.35);
  background: #6D3399;
}

.v2-demo-cta i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.v2-demo-cta:hover i {
  transform: translateX(3px);
}

/* Right: video player */
.v2-demo-visual {
  position: relative;
}

.v2-demo-player {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16/9;
}

.v2-demo-player::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(161,55,191,0.3), rgba(196,119,217,0.15), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.v2-demo-player > div {
  width: 100%;
  height: 100%;
}

.v2-demo-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating accent behind player */
.v2-demo-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,55,191,0.12) 0%, transparent 70%);
  top: -60px;
  right: -60px;
  pointer-events: none;
  z-index: -1;
}

.v2-demo-glow-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,119,217,0.10) 0%, transparent 70%);
  bottom: -40px;
  left: -40px;
  pointer-events: none;
  z-index: -1;
}

/* Responsive */
@media (max-width: 900px) {
  .v2-demo-section {
    padding: 80px 24px;
    margin-bottom: 0;
  }
  .v2-demo-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .v2-demo-text {
    max-width: 100%;
    text-align: center;
  }
  .v2-demo-highlights {
    align-items: center;
  }
  .v2-demo-highlight {
    text-align: left;
  }
  .v2-demo-text h2 {
    font-size: 2rem;
  }
}


/* ============================================
   V2 ECOSISTEMA, CLUBRCHAT, EMAIL MARKETING
   ============================================ */

/* ============================================================================
   V2 REDESIGN: ECOSISTEMA, CLUBRCHAT, EMAIL MARKETING
   Apple-inspired, minimal, powerful design system
   ============================================================================ */

/* Color Variables */
:root {
  --v2-primary: #A137BF;
  --v2-primary-light: #C477D9;
  --v2-primary-100: #F3E5F8;
  --v2-whatsapp: #25d366;
  --v2-dark: #151515;
  --v2-dark-alt: #1f1f1f;
  --v2-gray-light: #f5f5f5;
  --v2-gray-medium: #e5e5e5;
  --v2-text-primary: #151515;
  --v2-text-secondary: rgba(21, 21, 21, 0.6);
}

/* ============================================================================
   ECOSISTEMA SECTION
   Clean split layout: video + feature list with subtle depth
   ============================================================================ */

.v2-ecosistema {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
}

.v2-ecosistema-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.v2-ecosistema-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.v2-ecosistema-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 9 / 12;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.v2-ecosistema-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-ecosistema-content h2 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 1.5rem 0;
  color: var(--v2-text-primary);
  letter-spacing: -0.02em;
}

.v2-ecosistema-content p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--v2-text-secondary);
  margin-bottom: 2rem;
}

.v2-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--v2-primary-100);
  color: var(--v2-primary);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

.v2-section-label i {
  font-size: 1rem;
}

.v2-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.v2-feature-list-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.v2-feature-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--v2-primary-100);
  color: var(--v2-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v2-feature-list-item:hover .v2-feature-list-icon {
  background: var(--v2-primary);
  color: #ffffff;
  transform: translateY(-4px);
}

.v2-feature-list-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--v2-text-primary);
  margin-bottom: 0.25rem;
}

.v2-feature-list-item span {
  display: block;
  font-size: 0.9375rem;
  color: var(--v2-text-secondary);
  line-height: 1.5;
}

.v2-ecosistema-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: var(--v2-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--v2-primary);
  cursor: pointer;
}

.v2-ecosistema-cta:hover {
  background: #6D3399;
  border-color: #6D3399;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(161, 55, 191, 0.25);
}

.v2-ecosistema-cta i {
  font-size: 0.875rem;
}

/* Reveal animation class */
.v2-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.v2-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ecosistema responsive */
@media (max-width: 991px) {
  .v2-ecosistema {
    padding: 4rem 0;
  }

  .v2-ecosistema-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .v2-ecosistema-content {
    order: -1;
  }

  .v2-ecosistema-content h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .v2-ecosistema {
    padding: 3rem 0;
  }

  .v2-ecosistema-container {
    padding: 0 1.5rem;
  }

  .v2-ecosistema-media {
    aspect-ratio: 3 / 4;
    border-radius: 16px;
  }

  .v2-ecosistema-split {
    gap: 2rem;
  }

  .v2-ecosistema-content h2 {
    font-size: 1.875rem;
  }

  .v2-ecosistema-content p {
    font-size: 1rem;
  }

  .v2-feature-list {
    gap: 1.25rem;
  }

  .v2-feature-list-item {
    gap: 1rem;
  }

  .v2-feature-list-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .v2-feature-list-item strong {
    font-size: 0.9375rem;
  }

  .v2-feature-list-item span {
    font-size: 0.875rem;
  }
}

/* ============================================================================
   CLUBRCHAT SECTION
   Black background, WhatsApp green accents, full-viewport immersion
   Cinematic dark section, huge title with gradient text
   ============================================================================ */

.v2-clubrchat {
  background: var(--v2-dark);
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.v2-clubrchat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 211, 102, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(161, 55, 191, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.v2-clubrchat-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.v2-clubrchat-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.v2-clubrchat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 24px;
  color: var(--v2-whatsapp);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

.v2-clubrchat-eyebrow i {
  font-size: 1rem;
}

.v2-clubrchat-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.v2-crc-gradient {
  background: linear-gradient(135deg, var(--v2-whatsapp) 0%, #2fb555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-clubrchat-subtitle {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2.5rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.v2-clubrchat-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.v2-crc-btn-primary,
.v2-crc-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.v2-crc-btn-primary {
  background: var(--v2-whatsapp);
  color: #000000;
  border-color: var(--v2-whatsapp);
}

.v2-crc-btn-primary:hover {
  background: #2fb555;
  border-color: #2fb555;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.v2-crc-btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.v2-crc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.v2-clubrchat-video-stage {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.v2-clubrchat-phone-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: v2-glow-pulse 4s ease-in-out infinite;
}

@keyframes v2-glow-pulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.v2-clubrchat-phone-frame {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 19;
  border-radius: 40px;
  overflow: hidden;
  background: #000000;
  border: 12px solid #1a1a1a;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
              inset 0 0 20px rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.v2-clubrchat-phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 28px;
  background: #000000;
  border-radius: 0 0 20px 20px;
  z-index: 20;
}

.v2-clubrchat-phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-clubrchat-features {
  margin-top: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v2-crc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.v2-crc-feature {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v2-crc-feature:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.3);
  transform: translateY(-8px);
}

.v2-crc-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(47, 181, 85, 0.15));
  border-radius: 16px;
  color: var(--v2-whatsapp);
  font-size: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v2-crc-feature:hover .v2-crc-feature-icon {
  background: linear-gradient(135deg, var(--v2-whatsapp), #2fb555);
  color: #ffffff;
  transform: scale(1.1);
}

.v2-crc-feature h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: #ffffff;
}

.v2-crc-feature p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ClubRChat responsive */
@media (max-width: 991px) {
  .v2-clubrchat {
    padding: 4rem 0;
  }

  .v2-clubrchat-title {
    font-size: 2.75rem;
  }

  .v2-clubrchat-subtitle {
    font-size: 1.0625rem;
  }

  .v2-clubrchat-video-stage {
    height: 500px;
  }

  .v2-clubrchat-phone-frame {
    width: 280px;
  }

  .v2-clubrchat-phone-glow {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 767px) {
  .v2-clubrchat {
    padding: 3rem 0;
  }

  .v2-clubrchat-container {
    padding: 0 1.5rem;
  }

  .v2-clubrchat-title {
    font-size: 2rem;
  }

  .v2-clubrchat-subtitle {
    font-size: 1rem;
  }

  .v2-clubrchat-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .v2-crc-btn-primary,
  .v2-crc-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .v2-clubrchat-video-stage {
    height: 450px;
    margin-bottom: 2rem;
  }

  .v2-clubrchat-phone-frame {
    width: 260px;
  }

  .v2-clubrchat-phone-glow {
    width: 350px;
    height: 350px;
  }

  .v2-crc-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .v2-crc-feature {
    padding: 1.5rem;
  }
}

/* ============================================================================
   EMAIL MARKETING SECTION
   Bento-grid style cards, clean and modern, 1 large + 4 small cards
   ============================================================================ */

/* ============================================================================
   MARKETING INTEGRATO — Dark Cinematic Section
   Immersive dark theme, glowing cards, device mockups, animated metrics
   ============================================================================ */

/* ══════════════════════════════════════════════
   MARKETING INTEGRATO — Bento Light with Previews
   ══════════════════════════════════════════════ */

.v2-mkt {
  padding: 3.5rem 0 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.v2-mkt-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.v2-mkt-header {
  text-align: center;
  margin-bottom: 2rem;
}

.v2-mkt .v2-section-label {
  background: rgba(161,55,191,0.08);
  color: #A137BF;
  border: 1px solid rgba(161,55,191,0.12);
}

.v2-mkt-header h2 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
  color: var(--text);
  letter-spacing: -0.035em;
}

.v2-mkt-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #A137BF 0%, #C477D9 50%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-mkt-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 480px;
  line-height: 1.6;
}

/* ===== Marketing — iPhone Lock Screen Layout ===== */
.v2-mkt-phone-section {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 2rem;
}

/* ---- Left text ---- */
.v2-mkt-phone-text {
  flex: 1;
  min-width: 0;
}

.v2-mkt-phone-claim {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-weight: 500;
}

.v2-mkt-phone-name-wrap {
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

.v2-mkt-phone-name {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #A137BF 0%, #C477D9 50%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1.2;
  position: relative;
}

/* Blinking cursor after name */
.v2-mkt-phone-name::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: #A137BF;
  margin-left: 4px;
  vertical-align: baseline;
  border-radius: 2px;
  animation: v2-mkt-cursor 1s step-end infinite;
}

@keyframes v2-mkt-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.v2-mkt-phone-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Channel stats row */
.v2-mkt-phone-channels {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.v2-mkt-phone-ch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.v2-mkt-phone-ch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.v2-mkt-phone-ch span {
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-left: 4px;
}

/* ---- Right: iPhone device ---- */
.v2-mkt-phone-device {
  flex-shrink: 0;
  position: relative;
}

.v2-mkt-iphone {
  width: 300px;
  background: #000;
  border-radius: 48px;
  border: 8px solid #2a2a2e;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 40px 100px rgba(0,0,0,0.35),
    0 15px 40px rgba(161,55,191,0.1);
  position: relative;
}

.v2-mkt-iphone-status {
  height: 36px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
}

.v2-mkt-iphone-notch {
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 0 0 18px 18px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.v2-mkt-iphone-status-r {
  display: flex;
  gap: 5px;
  font-size: 0.62rem;
  color: #fff;
}

/* Lock screen */
.v2-mkt-iphone-lock {
  text-align: center;
  padding: 4px 0 8px;
  background: linear-gradient(180deg, #0f0a20 0%, #1a0f35 50%, #150d2a 100%);
  position: relative;
}

.v2-mkt-iphone-time {
  font-size: 3.2rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 3px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.v2-mkt-iphone-date {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 4px;
}

.v2-mkt-iphone-lock-icon {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

/* ---- Notification cards ---- */
.v2-mkt-notifs {
  padding: 8px 10px 10px;
  background: linear-gradient(180deg, #150d2a 0%, #110a22 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v2-mkt-notif {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: all 0.35s ease;
  animation: v2-mkt-notif-in 0.5s ease both;
  border: 1px solid rgba(255,255,255,0.06);
}

.v2-mkt-notif:nth-child(1) { animation-delay: 0.1s; }
.v2-mkt-notif:nth-child(2) { animation-delay: 0.25s; }
.v2-mkt-notif:nth-child(3) { animation-delay: 0.4s; }
.v2-mkt-notif:nth-child(4) { animation-delay: 0.55s; }

@keyframes v2-mkt-notif-in {
  0% { opacity: 0; transform: translateY(-20px) scale(0.96); }
  60% { opacity: 1; transform: translateY(3px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.v2-mkt-notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
  font-weight: 600;
}

/* Email icon - Apple Mail blue gradient */
.v2-mkt-notif-icon--email {
  background: linear-gradient(135deg, #007AFF, #5856D6);
  border-left: 2px solid rgba(0,122,255,0.4);
}

/* SMS icon - Apple Messages green */
.v2-mkt-notif-icon--sms {
  background: linear-gradient(135deg, #34C759, #30D158);
  border-left: 2px solid rgba(52,199,89,0.4);
}

/* WhatsApp icon - WhatsApp green */
.v2-mkt-notif-icon--wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-left: 2px solid rgba(37,211,102,0.4);
}

/* Push notification icon - Purple/pink gradient */
.v2-mkt-notif-icon--push {
  background: linear-gradient(135deg, #A137BF, #C477D9);
  border-left: 2px solid rgba(161,55,191,0.4);
}

.v2-mkt-notif-body {
  flex: 1;
  min-width: 0;
}

.v2-mkt-notif-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  gap: 8px;
}

.v2-mkt-notif-app {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
}

.v2-mkt-notif-app-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.v2-mkt-notif-app-sep {
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
}

.v2-mkt-notif-time {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.v2-mkt-notif-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1px;
}

.v2-mkt-notif-desc {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.25;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bottom home indicator */
.v2-mkt-iphone-home {
  height: 20px;
  background: #110a22;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-mkt-iphone-home::after {
  content: '';
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}

/* ===== Metrics strip ===== */
.v2-mkt-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid #ebebef;
  border-radius: 16px;
  overflow: hidden;
}

.v2-mkt-metric {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.v2-mkt-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #ebebef;
}

.v2-mkt-metric-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.v2-mkt-metric-value .v2-mkt-accent {
  background: linear-gradient(135deg, #A137BF, #C477D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-mkt-metric-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* CTA */
.v2-mkt-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.v2-mkt-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #A137BF, #6D3399);
  color: #fff;
  border-radius: 14px;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(161,55,191,0.25);
}

.v2-mkt-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(161,55,191,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .v2-mkt-phone-section {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .v2-mkt-phone-text { order: 1; }
  .v2-mkt-phone-device { order: 2; }
  .v2-mkt-phone-channels {
    align-items: center;
  }
  .v2-mkt-iphone { width: 280px; }
  .v2-mkt-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .v2-mkt-iphone { width: 260px; border-width: 8px; border-radius: 40px; }
  .v2-mkt-notif { padding: 10px 12px; }
  .v2-mkt-phone-name { font-size: 1.8rem; }
  .v2-mkt-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .v2-mkt-metric {
    padding: 1.25rem 0.75rem;
  }
  .v2-mkt-metric-value {
    font-size: 1.5rem;
  }
}


.v2-biglietteria {
  background: linear-gradient(180deg, #fff 0%, #faf8ff 50%, #fff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.v2-biglietteria::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(161,55,191,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(196,119,217,0.025) 0%, transparent 60%);
  pointer-events: none;
}

.v2-biglietteria-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

/* Certification badges container */
.v2-cert-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* SIAE / Agenzia Entrate inline badge */
.v2-siae-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 100px;
  padding: 8px 20px 8px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.v2-siae-inline:hover {
  border-color: rgba(161,55,191,0.15);
  box-shadow: 0 4px 16px rgba(161,55,191,0.08);
}
.v2-siae-inline img {
  height: 24px;
  width: auto;
  object-fit: contain;
}
.v2-siae-inline i {
  font-size: 0.6875rem;
  opacity: 0.7;
}

.v2-biglietteria-header h2 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.v2-biglietteria-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, #C477D9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-biglietteria-header p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 480px;
  line-height: 1.6;
}

/* ===== INTERACTIVE SHOWCASE ===== */
.v2-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left: Tabs */
.v2-showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v2-showcase-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #ebebef;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.v2-showcase-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #A137BF, #C477D9);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v2-showcase-tab:hover {
  border-color: rgba(161,55,191,0.15);
  background: #faf8ff;
}

.v2-showcase-tab.active {
  border-color: rgba(161,55,191,0.18);
  box-shadow: 0 4px 20px rgba(161,55,191,0.08);
  background: linear-gradient(135deg, #faf8ff, #f3eeff);
}

.v2-showcase-tab.active::before {
  transform: scaleY(1);
}

.v2-showcase-tab-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(161,55,191,0.06);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.v2-showcase-tab.active .v2-showcase-tab-icon {
  background: linear-gradient(135deg, #A137BF, #C477D9);
  color: #fff;
  box-shadow: 0 3px 12px rgba(161,55,191,0.25);
}

.v2-showcase-tab-text { flex: 1; min-width: 0; }

.v2-showcase-tab-text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 2px 0;
}

.v2-showcase-tab-text p {
  font-size: 0.78rem;
  color: #86868b;
  margin: 0;
  line-height: 1.4;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.v2-showcase-tab.active .v2-showcase-tab-text p {
  max-height: 60px;
  opacity: 1;
}

.v2-showcase-tab-arrow {
  font-size: 0.7rem;
  color: #ccc;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.v2-showcase-tab.active .v2-showcase-tab-arrow {
  color: var(--primary);
  transform: translateX(2px);
}

/* Right: Device */
.v2-showcase-device {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.v2-showcase-device::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,55,191,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: v2-blob-float 10s ease-in-out infinite;
}

.v2-showcase-phone {
  width: 300px;
  background: #fff;
  border-radius: 36px;
  padding: 16px;
  box-shadow:
    0 24px 64px rgba(161,55,191,0.1),
    0 8px 24px rgba(0,0,0,0.05),
    0 0 0 1px rgba(161,55,191,0.05);
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-showcase-phone:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 80px rgba(161,55,191,0.14),
    0 12px 32px rgba(0,0,0,0.07),
    0 0 0 1px rgba(161,55,191,0.08);
}

.v2-showcase-phone-notch {
  width: 80px;
  height: 6px;
  background: #e8e8ed;
  border-radius: 3px;
  margin: 0 auto 16px;
}

/* Screens */
.v2-showcase-screen {
  display: none;
  animation: v2-screenFadeIn 0.4s ease-out;
}

.v2-showcase-screen.active {
  display: block;
}

@keyframes v2-screenFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.v2-screen-header {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 2px;
}

.v2-screen-subheader {
  font-size: 0.75rem;
  color: #86868b;
  margin-bottom: 14px;
}

.v2-screen-card {
  background: #f8f9fc;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

.v2-screen-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.75rem;
  color: #555;
}

.v2-screen-row + .v2-screen-row {
  border-top: 1px solid rgba(0,0,0,0.04);
}

.v2-screen-row-promo {
  color: #10b981;
  font-weight: 600;
}

.v2-screen-row-promo i { font-size: 0.625rem; margin-right: 3px; }

.v2-screen-accent {
  font-weight: 700;
  color: #A137BF;
}

.v2-screen-success {
  color: #10b981;
  font-weight: 600;
}

.v2-screen-success i { margin-right: 3px; font-size: 0.6875rem; }

.v2-screen-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 4px 0;
}

.v2-screen-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #A137BF, #6D3399);
  color: #fff;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 14px rgba(161,55,191,0.25);
  margin-bottom: 8px;
}

.v2-screen-badge {
  text-align: center;
  font-size: 0.625rem;
  color: #86868b;
  font-weight: 500;
}

.v2-screen-badge i { margin-right: 3px; font-size: 0.5625rem; }

/* QR Scanner screen */
.v2-screen-qr-area {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.v2-screen-qr-frame {
  width: 120px;
  height: 120px;
  position: relative;
  border-radius: 12px;
  background: rgba(161,55,191,0.03);
}

.v2-screen-qr-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid #A137BF;
}

.v2-screen-qr-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.v2-screen-qr-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.v2-screen-qr-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.v2-screen-qr-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; border-radius: 0 0 6px 0; }

.v2-qr-svg {
  width: 70%;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
}

.v2-screen-qr-line {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #A137BF, transparent);
  top: 50%;
  animation: v2-qrScan 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes v2-qrScan {
  0%, 100% { top: 15%; opacity: 0.5; }
  50% { top: 80%; opacity: 1; }
}

/* Progress bar */
.v2-screen-progress {
  height: 6px;
  background: rgba(161,55,191,0.1);
  border-radius: 3px;
  margin-top: 6px;
  overflow: hidden;
}

.v2-screen-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #A137BF, #C477D9);
  border-radius: 3px;
  transition: width 0.8s ease;
}

/* VIP List items */
.v2-screen-card-list { padding: 8px 12px; }

.v2-screen-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.6875rem;
  color: #555;
}

.v2-screen-list-item + .v2-screen-list-item {
  border-top: 1px solid rgba(0,0,0,0.04);
}

.v2-screen-list-item strong {
  color: #1d1d1f;
  font-size: 0.75rem;
}

.v2-screen-list-item span { color: #86868b; font-size: 0.625rem; }

.v2-screen-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #A137BF, #C477D9);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-screen-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
}

.v2-screen-status-dot.green { background: #10b981; box-shadow: 0 0 6px rgba(16,185,129,0.4); }
.v2-screen-status-dot.yellow { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,0.4); }

/* Dashboard stats row */
.v2-screen-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.v2-screen-mini-stat {
  background: linear-gradient(135deg, #faf8ff, #F3E5F8);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.v2-screen-mini-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: #A137BF;
  letter-spacing: -0.02em;
}

.v2-screen-mini-label {
  font-size: 0.5625rem;
  color: #86868b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.v2-screen-chart {
  margin-bottom: 10px;
  background: #f8f9fc;
  border-radius: 10px;
  padding: 8px;
}

.v2-screen-chart-svg {
  width: 100%;
  height: 40px;
}

/* Gestione Promoter Screen */
.v2-promo-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.v2-promo-header-bar h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1d1d1f;
}
.v2-promo-add-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #A137BF, #C477D9);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.6rem;
  font-weight: 600;
  cursor: pointer;
}
.v2-promo-add-btn i { font-size: 0.55rem; }
.v2-promo-stats-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.v2-promo-stat-box {
  background: linear-gradient(135deg, #faf8ff, #F3E5F8);
  border-radius: 10px;
  padding: 7px 6px;
  text-align: center;
}
.v2-promo-stat-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: #A137BF;
  line-height: 1;
}
.v2-promo-stat-lbl {
  font-size: 0.42rem;
  color: #86868b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 2px;
}
.v2-promo-ranking-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.v2-promo-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
}
.v2-promo-card.v2-promo-top {
  border: 1.5px solid rgba(161,55,191,0.25);
  background: linear-gradient(135deg, #faf8ff, #fff);
}
.v2-promo-rank {
  font-size: 0.6rem;
  font-weight: 800;
  color: #C477D9;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.v2-promo-card.v2-promo-top .v2-promo-rank { color: #A137BF; }
.v2-promo-avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.v2-promo-info { flex: 1; min-width: 0; }
.v2-promo-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.2;
}
.v2-promo-meta {
  font-size: 0.5rem;
  color: #86868b;
}
.v2-promo-meta span {
  color: #10b981;
  font-weight: 700;
}
.v2-promo-sales {
  text-align: right;
  flex-shrink: 0;
}
.v2-promo-sales-val {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1d1d1f;
  line-height: 1;
}
.v2-promo-sales-lbl {
  font-size: 0.42rem;
  color: #86868b;
  text-transform: uppercase;
}
.v2-promo-link-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 6px 10px;
  margin-top: 4px;
}
.v2-promo-link-box i {
  color: #10b981;
  font-size: 0.65rem;
}
.v2-promo-link-box span {
  font-size: 0.55rem;
  color: #15803d;
  font-weight: 600;
}

/* C1 SIAE Document Mockup — Faithful to Allegato C.1 */
.v2-c1-doc {
  background: #fff;
  border: 1px solid #222;
  border-radius: 1px;
  padding: 0;
  margin-bottom: 8px;
  font-family: 'Times New Roman', 'Georgia', serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.10);
  font-size: 0.5rem;
  color: #1a1a1a;
  line-height: 1.35;
}

/* Top header row: Allegato C.1 badge */
.v2-c1-toprow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px 7px 4px;
  border-bottom: 1px solid #222;
}
.v2-c1-toprow-left {
  font-size: 0.42rem;
  color: #444;
}
.v2-c1-toprow-left span {
  font-weight: 700;
  color: #1a1a1a;
}
.v2-c1-allegato {
  border: 1px solid #222;
  padding: 2px 6px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.v2-c1-allegato small {
  font-weight: 400;
  font-size: 0.4rem;
  color: #666;
  margin-left: 2px;
}

/* Quadro A header */
.v2-c1-quadro {
  background: transparent;
  padding: 3px 7px;
  font-size: 0.46rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #888;
  font-family: Arial, Helvetica, sans-serif;
}

/* Type checkboxes row */
.v2-c1-type-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 7px;
  font-size: 0.42rem;
  border-bottom: 0.5px solid #ccc;
  font-family: Arial, Helvetica, sans-serif;
  color: #444;
}
.v2-c1-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.v2-c1-checkbox i {
  font-size: 0.5rem;
}
.v2-c1-checkbox i.checked {
  color: #1a3a6b;
}
.v2-c1-checkbox i.unchecked {
  color: #bbb;
}

/* Form field rows */
.v2-c1-row {
  display: flex;
  border-bottom: 0.5px solid #ccc;
  min-height: 14px;
  font-size: 0.44rem;
}
.v2-c1-row:last-child {
  border-bottom: none;
}
.v2-c1-cell-label {
  flex: 0 0 44%;
  padding: 1.5px 3px 1.5px 7px;
  color: #555;
  font-size: 0.38rem;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: Arial, Helvetica, sans-serif;
  border-right: 0.5px solid #ccc;
}
.v2-c1-cell-value {
  flex: 1;
  padding: 1.5px 5px 1.5px 5px;
  color: #1a3a6b;
  font-size: 0.46rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  border-bottom: 0.5px dotted #bbb;
  margin-bottom: -0.5px;
}
.v2-c1-cell-value.v2-c1-cf {
  font-size: 0.38rem;
  letter-spacing: 0.12em;
  color: #333;
}

/* Quadro B table */
.v2-c1-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.38rem;
  font-family: Arial, Helvetica, sans-serif;
}
.v2-c1-table th {
  background: transparent;
  color: #1a1a1a;
  font-weight: 700;
  padding: 2.5px 2px;
  text-align: center;
  border: 0.5px solid #888;
  font-size: 0.34rem;
  text-transform: uppercase;
  line-height: 1.15;
}
.v2-c1-table th:first-child {
  text-align: left;
  padding-left: 5px;
}
.v2-c1-table td {
  padding: 2px 3px;
  text-align: center;
  border: 0.5px solid #bbb;
  color: #1a3a6b;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  font-size: 0.42rem;
}
.v2-c1-table td:first-child {
  text-align: left;
  padding-left: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #333;
}
.v2-c1-table tr.v2-c1-totale-row td {
  font-weight: 800;
  border-top: 1.5px solid #222;
  background: transparent;
  color: #1a1a1a;
  font-size: 0.44rem;
}

/* SIAE footer with stamp */
.v2-c1-footer {
  padding: 5px 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid #222;
}
.v2-c1-stamp {
  width: 34px;
  height: 34px;
  border: 1.5px solid #1a3a6b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.v2-c1-stamp-text {
  font-size: 0.5rem;
  font-weight: 800;
  color: #1a3a6b;
  letter-spacing: 0.06em;
  line-height: 1;
}
.v2-c1-stamp-sub {
  font-size: 0.25rem;
  color: #888;
  font-style: italic;
}
.v2-c1-footer-info {
  flex: 1;
  font-size: 0.38rem;
  color: #555;
  line-height: 1.4;
  font-family: Arial, Helvetica, sans-serif;
}
.v2-c1-footer-info strong {
  color: #1a1a1a;
  font-size: 0.4rem;
}
.v2-c1-firma {
  border-top: 0.5px solid #888;
  margin-top: 3px;
  padding-top: 2px;
  font-size: 0.36rem;
  color: #888;
  text-transform: uppercase;
}

/* Green auto-generated badge */
.v2-c1-auto-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #ecfdf5;
  border: 1px solid #10b981;
  border-radius: 6px;
  padding: 4px 8px;
  margin-top: 6px;
  font-size: 0.5rem;
  font-weight: 700;
  color: #059669;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.v2-c1-auto-badge i {
  color: #10b981;
  font-size: 0.55rem;
}

.v2-screen-btn i {
  margin-right: 4px;
  font-size: 0.75rem;
}

/* Vendita Online — ClubR e-commerce style (full-screen dark) */
.v2-ecom-wrap {
  background: #0a0a0a;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.v2-ecom-flyer-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.v2-ecom-flyer {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.v2-ecom-flyer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, #0a0a0a 0%, transparent 100%);
  pointer-events: none;
}
.v2-ecom-flyer-logo {
  position: absolute;
  top: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.v2-ecom-flyer-logo i {
  font-size: 0.5rem;
  color: #C477D9;
}
.v2-ecom-flyer-date {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
}
.v2-ecom-event-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.v2-ecom-event-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.v2-ecom-event-info i {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.4);
}

/* Ticket selection area */
.v2-ecom-content {
  padding: 14px 14px 12px;
}
.v2-ecom-section-label {
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.v2-ecom-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.v2-ecom-ticket.v2-ecom-ticket-selected {
  border-color: #C477D9;
  background: rgba(161,55,191,0.08);
}
.v2-ecom-ticket-left {
  text-align: left;
}
.v2-ecom-ticket-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.v2-ecom-ticket-price {
  font-size: 0.6875rem;
  color: #C477D9;
  font-weight: 700;
  margin-top: 2px;
}
.v2-ecom-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2-ecom-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s;
}
.v2-ecom-qty-btn:hover {
  background: rgba(255,255,255,0.2);
}
.v2-ecom-qty-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  min-width: 14px;
  text-align: center;
}
.v2-ecom-buy-btn {
  display: block;
  background: #fff;
  color: #0a0a0a;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.01em;
  transition: all 0.2s;
}
.v2-ecom-fees {
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 8px;
}
.v2-ecom-max {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 4px;
}

/* POS Emissione Biglietti — App-like screen */
.v2-pos-printer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 7px 10px;
  margin-bottom: 10px;
  font-size: 0.6875rem;
  color: #065f46;
  font-weight: 600;
}
.v2-pos-printer i {
  color: #10b981;
  font-size: 0.75rem;
}
.v2-pos-printer-name {
  font-weight: 400;
  color: #059669;
  font-size: 0.6rem;
}
.v2-pos-event {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v2-pos-event-label {
  font-size: 0.5rem;
  font-weight: 700;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1px;
}
.v2-pos-event-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.2;
}
.v2-pos-event-date {
  font-size: 0.5625rem;
  color: #86868b;
  margin-top: 1px;
}
.v2-pos-event-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.v2-pos-event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-pos-tickets {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v2-pos-ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f5;
}
.v2-pos-ticket-row:last-child {
  border-bottom: none;
}
.v2-pos-ticket-info {
  display: flex;
  flex-direction: column;
}
.v2-pos-ticket-name {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #1d1d1f;
}
.v2-pos-ticket-price {
  font-size: 0.5625rem;
  color: #86868b;
  margin-top: 1px;
}
.v2-pos-emit-btn {
  padding: 4px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Responsive showcase */

/* ── Mappa Tavoli Floor Plan ── */
.v2-floorplan {
  padding: 6px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.v2-floorplan-svg {
  width: 100%;
  height: auto;
  display: block;
}
.v2-floorplan-legend {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 6px 0 2px;
}
.v2-fp-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.55rem;
  color: var(--text-secondary);
}
.v2-fp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.v2-fp-pulse-ring {
  animation: v2-fp-pulse 2s ease-in-out infinite;
}
@keyframes v2-fp-pulse {
  0%, 100% { r: 14; opacity: 0.3; }
  50% { r: 18; opacity: 0; }
}

/* ── Co-Vision Phone Screen ── */
.v2-covision-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.12);
  border-radius: 20px;
  font-size: 0.52rem;
  font-weight: 600;
  color: #818cf8;
  margin-bottom: 8px;
}
.v2-covision-badge i { font-size: 0.48rem; }

/* Collaborator cards */
.v2-covision-collab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #f8f8fc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 5px;
}
.v2-covision-collab-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.v2-covision-collab-name {
  font-size: 0.65rem;
  font-weight: 700;
  color: #1a1a2e;
}
.v2-covision-role {
  display: inline-block;
  padding: 1px 6px;
  background: rgba(161,55,191,0.08);
  border-radius: 4px;
  font-size: 0.45rem;
  font-weight: 600;
  color: #A137BF;
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.v2-covision-collab-access {
  font-size: 0.48rem;
  color: #9ca3af;
  margin-top: 1px;
}
.v2-covision-collab-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d5db;
  margin-left: auto;
  flex-shrink: 0;
}
.v2-covision-collab-status.active {
  background: #34d399;
  box-shadow: 0 0 4px rgba(52,211,153,0.4);
}

/* Preview label */
.v2-covision-preview-label {
  font-size: 0.5rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 8px 0 5px;
}

/* Preview panel */
.v2-covision-preview {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 10px;
}
.v2-covision-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #f3f4f6;
}
.v2-covision-preview-row:last-child {
  border-bottom: none;
}
.v2-covision-preview-key {
  font-size: 0.52rem;
  color: #9ca3af;
  font-weight: 500;
}
.v2-covision-preview-val {
  font-size: 0.58rem;
  color: #1a1a2e;
  font-weight: 600;
}

/* Mini progress bar */
.v2-covision-minibar {
  flex: 1;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  margin: 0 6px;
  overflow: hidden;
}
.v2-covision-minibar-fill {
  height: 100%;
  background: linear-gradient(90deg, #A137BF, #C477D9);
  border-radius: 2px;
  transition: width 1s ease;
}

/* Live status badge */
.v2-covision-status-live {
  font-size: 0.5rem;
  font-weight: 700;
  color: #34d399;
}

/* Share link button */
.v2-covision-share-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #A137BF;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  cursor: pointer;
}
.v2-covision-share-box i { font-size: 0.55rem; }

/* Modal feature list */
.v2-modal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  text-align: left;
}
.v2-modal-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.85rem;
  color: #4b5563;
}
.v2-modal-list li i {
  color: #A137BF;
  font-size: 0.7rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .v2-showcase { grid-template-columns: 1fr; justify-items: center; }
  .v2-showcase-device { order: -1; }
  .v2-showcase-tabs { gap: 8px; width: 100%; max-width: 500px; }
  .v2-showcase-tab { padding: 10px 14px; }
  .v2-showcase-tab-text h4 { font-size: 0.85rem; }
  .v2-showcase-tab-icon { width: 28px; height: 28px; font-size: 0.75rem; }
  .v2-showcase-phone { width: 260px; }
}

@media (max-width: 600px) {
  .v2-biglietteria { padding: 60px 0; }
  .v2-showcase-tabs { gap: 6px; }
  .v2-showcase-tab { padding: 8px 12px; }
  .v2-showcase-tab-icon { display: none; }
  .v2-showcase-tab-text h4 { font-size: 0.78rem; }
  .v2-showcase-phone { width: 220px; padding: 12px; border-radius: 32px; }
}

.v2-feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
}

.v2-feature-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--primary);
  font-size: 14px;
  opacity: 0.6;
  transition: all var(--transition);
  margin-top: auto;
}

.v2-feature-card:hover .v2-feature-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Modal Styles */
.v2-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.v2-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

.v2-modal-box {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(26, 26, 46, 0.15);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.v2-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.v2-modal-close:hover {
  background: var(--primary-100);
  transform: rotate(90deg);
}

.v2-modal-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  border-radius: var(--radius-md);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 24px;
}

.v2-modal-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px 0;
}

.v2-modal-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.v2-modal-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none;
}

.v2-modal-box a:hover {
  background: var(--primary-dark);
  transform: translateX(4px);
}

/* ============================================
   PERSONALIZZAZIONE / CUSTOMIZATION SECTION
   ============================================ */

.v2-personalizzazione {
  background: linear-gradient(180deg, #f8f9fc 0%, #F3E5F8 50%, #f8f9fc 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.v2-personalizzazione::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,55,191,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.v2-personalizzazione::after {
  content: '';
  position: absolute;
  bottom: 5%; right: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,119,217,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.v2-personalizzazione-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.v2-personalizzazione-header h2 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #1d1d1f;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.v2-personalizzazione-header p {
  font-size: 1.0625rem;
  color: #86868b;
  margin: 0;
}

/* iPhone Stack — Personalizzazione */
.v2-custom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}
.v2-custom-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  line-height: 1.15;
}
.v2-custom-text > p {
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
  margin: 0 0 28px 0;
}
.v2-custom-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.v2-custom-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: #86868b;
  line-height: 1.5;
  margin-bottom: 12px;
}
.v2-custom-check i {
  color: #A137BF;
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.v2-custom-phones {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-iphone {
  position: absolute;
  width: 260px;
  background: #000;
  border-radius: 44px;
  border: 10px solid #1a1a1a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.v2-iphone-status {
  height: 40px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}
.v2-iphone-status-right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
}
.v2-iphone-screen {
  flex: 1;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 380px;
}
.v2-iphone-safari {
  height: 44px;
  background: rgba(30,30,30,0.95);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
}
.v2-iphone-safari i { font-size: 0.5rem; }
/* Club screen logos */
.v2-club-logo {
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.v2-club-logo-serif { font-family: 'Georgia', 'Times New Roman', serif; letter-spacing: 0.15em; }
.v2-club-logo-bold { font-weight: 800; font-family: inherit; letter-spacing: 0.05em; }
.v2-club-logo-yellow { color: #f5e642; font-weight: 900; font-size: 3.2rem; }
/* Club nav buttons */
.v2-club-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 200px;
}
.v2-club-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
}
.v2-club-btn i { font-size: 0.5rem; opacity: 0.7; }
.v2-club-qr {
  margin-top: 12px;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.v2-club-qr i { font-size: 0.45rem; }
/* Stacked positioning — spread wider so logos stay visible */
.v2-iphone:nth-child(1) {
  z-index: 10;
  transform: translateX(-150px) translateY(30px) rotate(-4deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.v2-iphone:nth-child(2) {
  z-index: 20;
  transform: translateX(0) translateY(0) rotate(0deg);
  box-shadow: 0 25px 70px rgba(0,0,0,0.3);
}
.v2-iphone:nth-child(3) {
  z-index: 30;
  transform: translateX(150px) translateY(-30px) rotate(4deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.v2-iphone:hover {
  z-index: 40;
  transform: translateY(-10px) rotate(0deg) scale(1.03);
}
.v2-iphone:nth-child(1):hover {
  transform: translateX(-150px) translateY(-10px) rotate(0deg) scale(1.03);
}
.v2-iphone:nth-child(2):hover {
  transform: translateX(0) translateY(-10px) rotate(0deg) scale(1.03);
}
.v2-iphone:nth-child(3):hover {
  transform: translateX(150px) translateY(-10px) rotate(0deg) scale(1.03);
}


/* 4 feature cards row — interactive */
.v2-custom-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
  align-items: start;
}

.v2-custom-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(161,55,191,0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}

.v2-custom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #A137BF, #C477D9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v2-custom-card:hover::before,
.v2-custom-card.active::before {
  transform: scaleX(1);
}

.v2-custom-card:hover {
  background: #fff;
  border-color: rgba(161, 55, 191, 0.15);
  box-shadow: 0 12px 36px rgba(161, 55, 191, 0.1);
  transform: translateY(-6px);
}
.v2-custom-card.active {
  background: #fff;
  border-color: rgba(161, 55, 191, 0.2);
  box-shadow: 0 16px 48px rgba(161, 55, 191, 0.14);
}

.v2-custom-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(161,55,191,0.08), rgba(196,119,217,0.12));
  border-radius: 12px;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v2-custom-card:hover .v2-custom-icon,
.v2-custom-card.active .v2-custom-icon {
  background: linear-gradient(135deg, #A137BF, #C477D9);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(161,55,191,0.3);
}

.v2-custom-card h4 {
  font-size: 0.9375rem;
  font-weight: 650;
  color: #1d1d1f;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v2-custom-card h4 .v2-card-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(161,55,191,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #A137BF;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.v2-custom-card:hover h4 .v2-card-toggle,
.v2-custom-card.active h4 .v2-card-toggle {
  background: #A137BF;
  color: #fff;
}
.v2-custom-card.active h4 .v2-card-toggle {
  transform: rotate(45deg);
}

.v2-custom-card p {
  font-size: 0.875rem;
  color: #86868b;
  margin: 0;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Expandable details */
.v2-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 0;
}
.v2-custom-card.active .v2-card-details {
  max-height: 320px;
  opacity: 1;
  margin-top: 12px;
}
.v2-card-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(161,55,191,0.08);
}
.v2-card-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #555;
  padding: 5px 0;
  line-height: 1.4;
}
.v2-card-details li i {
  color: #A137BF;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.v2-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #A137BF;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.v2-card-cta:hover { gap: 8px; }
.v2-card-cta i { font-size: 0.6rem; transition: transform 0.3s ease; }
.v2-card-cta:hover i { transform: translateX(2px); }

/* Responsive personalizzazione */
@media (max-width: 991px) {
  .v2-custom-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .v2-custom-phones {
    height: 480px;
    order: -1;
  }
  .v2-iphone { width: 220px; }
  .v2-iphone:nth-child(1) { transform: translateX(-110px) translateY(20px) rotate(-3deg); }
  .v2-iphone:nth-child(2) { transform: translateX(0) translateY(0) rotate(0deg); }
  .v2-iphone:nth-child(3) { transform: translateX(110px) translateY(-20px) rotate(3deg); }
  .v2-custom-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .v2-custom-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .v2-personalizzazione { padding: 60px 0; }
  .v2-custom-phones { height: 400px; }
  .v2-iphone { width: 170px; border-width: 7px; border-radius: 32px; }
  .v2-iphone-screen { min-height: 280px; padding: 10px; }
  .v2-iphone-status { height: 32px; font-size: 0.6rem; }
  .v2-iphone-safari { height: 36px; font-size: 0.5rem; }
  .v2-club-logo { font-size: 1.8rem; }
  .v2-club-btn { padding: 6px 10px; font-size: 0.5rem; }
  .v2-iphone:nth-child(1) { transform: translateX(-75px) translateY(15px) rotate(-2deg); }
  .v2-iphone:nth-child(2) { transform: translateX(0) translateY(0); }
  .v2-iphone:nth-child(3) { transform: translateX(75px) translateY(-15px) rotate(2deg); }
  .v2-custom-features { grid-template-columns: 1fr; }
  .v2-custom-card { padding: 1.25rem; }
  .v2-custom-check { font-size: 0.8125rem; }
}

/* ============================================
   AI / EVENTAI SECTION
   ============================================ */

/* === EVENTAI SECTION — Purple Gradient Redesign === */
.v2-ai {
  background: linear-gradient(160deg, #faf8ff 0%, #f5f0ff 40%, #faf8ff 70%, #fff 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.v2-ai::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(161,55,191,0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.v2-ai-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 48px;
}

.v2-ai-header .v2-ai-subtitle {
  font-size: 0.85rem;
  color: #86868b;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.v2-ai-header .v2-ai-subtitle i { color: #fbbf24; }

.v2-ai-header h2 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: #18181b;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.v2-ai-header h2 .v2-ai-highlight {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-ai-header p {
  font-size: 1rem;
  color: #71717a;
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
}

/* ===== Dashboard layout ===== */
.v2-ai-dash {
  position: relative;
  z-index: 2;
}

.v2-ai-dash-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.v2-ai-panel {
  background: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.v2-ai-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.v2-ai-panel-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  font-size: 0.9rem;
}

.v2-ai-panel-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #18181b;
}

.v2-ai-panel-sub {
  font-size: 0.68rem;
  color: #a1a1aa;
}

.v2-ai-panel-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.v2-ai-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: v2AiPulse 1.5s ease-in-out infinite;
}

@keyframes v2AiPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}

/* ===== Promoter Ranking ===== */
.v2-ai-rank-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.v2-ai-rank-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #fafafa;
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v2-ai-rank-item:first-child {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.v2-ai-rank-pos {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #71717a;
  flex-shrink: 0;
}

.v2-ai-rank-item:first-child .v2-ai-rank-pos {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
}

.v2-ai-rank-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #18181b;
  min-width: 72px;
}

.v2-ai-rank-bar {
  flex: 1;
  height: 6px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.v2-ai-rank-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #fbbf24, #C477D9);
  transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v2-ai-rank-fill.v2-ai-animated {
  width: var(--w);
}

.v2-ai-rank-val {
  font-size: 0.65rem;
  color: #d97706;
  min-width: 62px;
  text-align: right;
}

.v2-ai-rank-badge {
  width: 18px; height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  flex-shrink: 0;
}
.v2-ai-rank-badge--up { background: #dcfce7; color: #16a34a; }
.v2-ai-rank-badge--down { background: #fef2f2; color: #dc2626; }

.v2-ai-panel-tip {
  font-size: 0.7rem;
  color: #78716c;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 10px 14px;
  line-height: 1.45;
}
.v2-ai-panel-tip i { color: #fbbf24; margin-right: 4px; }

/* ===== Sales Chart ===== */
.v2-ai-chart-wrap {
  margin-bottom: 16px;
}

.v2-ai-chart {
  width: 100%;
  height: 140px;
  display: block;
}

.v2-ai-chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  color: #a1a1aa;
  margin-top: 4px;
  padding: 0 4px;
}

.v2-ai-chart-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.v2-ai-chart-stat {
  flex: 1;
  text-align: center;
  position: relative;
}
.v2-ai-chart-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: #f0f0f0;
}

.v2-ai-chart-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #18181b;
  letter-spacing: -0.02em;
}
.v2-ai-chart-stat-val--pred { color: #d97706; font-weight: 900; }
.v2-ai-chart-stat-val--pct { color: #16a34a; }

.v2-ai-chart-stat-label {
  font-size: 0.62rem;
  color: #a1a1aa;
  margin-top: 2px;
}

/* ===== Alert Feed ===== */
.v2-ai-alerts {
  display: flex;
  gap: 10px;
  position: relative;
  min-height: 80px;
}

.v2-ai-alert {
  flex: 1;
  padding: 12px 14px;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(16px);
  position: relative;
}
.v2-ai-alert.v2-ai-alert--visible {
  opacity: 1;
  transform: translateY(0);
}
.v2-ai-alert:hover {
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}

.v2-ai-alert--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.v2-ai-alert--warn {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.v2-ai-alert--info {
  background: #f5f0ff;
  border: 1px solid #E8CFF0;
}

/* Subtle glow on hover */
.v2-ai-alert--success:hover { box-shadow: 0 4px 20px rgba(74,222,128,0.15); }
.v2-ai-alert--warn:hover { box-shadow: 0 4px 20px rgba(251,191,36,0.15); }
.v2-ai-alert--info:hover { box-shadow: 0 4px 20px rgba(196,119,217,0.15); }

.v2-ai-alert-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.v2-ai-alert--success .v2-ai-alert-icon { background: #dcfce7; color: #16a34a; }
.v2-ai-alert--warn .v2-ai-alert-icon { background: #fef3c7; color: #d97706; }
.v2-ai-alert--info .v2-ai-alert-icon { background: #F3E5F8; color: #A137BF; }

.v2-ai-alert-body {
  flex: 1;
  min-width: 0;
}

.v2-ai-alert-text {
  font-size: 0.72rem;
  color: #52525b;
  line-height: 1.4;
}
.v2-ai-alert-text strong { color: #18181b; }

/* Action button inside alert */
.v2-ai-alert-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.v2-ai-alert--success .v2-ai-alert-action {
  background: #dcfce7;
  color: #16a34a;
}
.v2-ai-alert--success .v2-ai-alert-action:hover {
  background: #bbf7d0;
}
.v2-ai-alert--warn .v2-ai-alert-action {
  background: #fef3c7;
  color: #d97706;
}
.v2-ai-alert--warn .v2-ai-alert-action:hover {
  background: #fde68a;
}
.v2-ai-alert--info .v2-ai-alert-action {
  background: #F3E5F8;
  color: #A137BF;
}
.v2-ai-alert--info .v2-ai-alert-action:hover {
  background: #E8CFF0;
}

.v2-ai-alert-time {
  font-size: 0.55rem;
  color: #a1a1aa;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

/* AI typing indicator */
.v2-ai-typing {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-top: 10px;
  border-radius: 10px;
  background: #f5f0ff;
  border: 1px solid #F3E5F8;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.v2-ai-typing.v2-ai-typing--visible {
  opacity: 1;
}
.v2-ai-typing-dots {
  display: flex;
  gap: 3px;
}
.v2-ai-typing-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C477D9;
  animation: aiTypingDot 1.2s ease-in-out infinite;
}
.v2-ai-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.v2-ai-typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes aiTypingDot {
  0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
  30% { opacity: 1; transform: scale(1.1); }
}
.v2-ai-typing-text {
  font-size: 0.6rem;
  color: #8E35AC;
  font-weight: 500;
}

/* Live dot pulse enhanced */
.v2-ai-live-dot {
  position: relative;
}
.v2-ai-live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #4ade80;
  opacity: 0;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.8); }
}

/* ===== AI Responsive ===== */
@media (max-width: 768px) {
  .v2-ai-dash-top {
    grid-template-columns: 1fr;
  }
  .v2-ai-alerts {
    flex-direction: column;
  }
}

/* AI card not used anymore */
.v2-ai-card-main {
  display: none;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 991px) {
  /* AI dashboard handled above */
}

@media (max-width: 768px) {
  .v2-biglietteria,
  .v2-personalizzazione,
  .v2-ai {
    padding: 60px 0;
  }

  .v2-biglietteria-header,
  .v2-personalizzazione-header,
  .v2-ai-header {
    margin-bottom: 60px;
  }

  .v2-feature-card,
  .v2-custom-card,
  .v2-ai-card {
    padding: 24px;
  }

  .v2-modal-box {
    padding: 32px;
  }

  .v2-ai-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .v2-ai-card h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .v2-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .v2-cert-badges {
    gap: 8px;
  }
  .v2-siae-inline {
    padding: 6px 14px 6px 8px;
    font-size: 0.72rem;
  }
  .v2-siae-inline img {
    height: 18px;
  }

  .v2-feature-card,
  .v2-custom-card,
  .v2-ai-card {
    padding: 20px;
  }

  .v2-modal-box {
    padding: 24px;
  }

}

/* ============================================
   ANIMATION UTILITIES
   ============================================ */

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

.v2-fade-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.v2-fade-up:nth-child(1) { animation-delay: 0.1s; }
.v2-fade-up:nth-child(2) { animation-delay: 0.2s; }
.v2-fade-up:nth-child(3) { animation-delay: 0.3s; }
.v2-fade-up:nth-child(4) { animation-delay: 0.4s; }
.v2-fade-up:nth-child(5) { animation-delay: 0.5s; }
.v2-fade-up:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   FOCUS & ACCESSIBILITY
   ============================================ */

.v2-feature-card:focus-visible,
.v2-custom-card:focus-visible,
.v2-ai-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.v2-modal-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.v2-modal-box a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}


/* ============================================
   V2 WHY CLUBR, CLUBS, TESTIMONIALS, FAQ, FOOTER
   ============================================ */

/* ============================================
   V2 REDESIGN — Apple-Inspired Minimal Design
   ============================================ */

:root {
  --primary: #A137BF;
  --primary-light: #C477D9;
  --primary-100: #F3E5F8;
  --primary-50: #faf5ff;
  --text: #000000;
  --text-secondary: #64648b;
  --text-light: #9ca3af;
  --white: #ffffff;
  --border: #e5e7eb;
  --bg-soft: #f8f9fc;
  --bg-muted: #f0f1f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* ============================================
   WHY CLUBR — 6 INTERACTIVE REASON CARDS
   ============================================ */

/* ============================================
   WHY CLUBR — PREMIUM REASONS GRID
   ============================================ */
.v2-reasons-section {
  padding: 120px 0 130px;
  background: linear-gradient(175deg, #faf8ff 0%, #f5f0ff 35%, #ede7fb 65%, #f8f6ff 100%);
  position: relative;
  overflow: hidden;
  color: #1d1d1f;
}

/* Mesh gradient layer */
.v2-reasons-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 15%, rgba(161,55,191,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(196,119,217,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(196,181,253,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle dot grid pattern */
.v2-reasons-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(161,55,191,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.v2-reasons-section .section-header { position: relative; z-index: 2; }
.v2-reasons-section .section-header h2 {
  color: #1d1d1f;
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
}
.v2-reasons-section .section-header p {
  color: #6e6e73;
  font-size: 1.08rem;
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.65;
}
.v2-reasons-section .section-label {
  background: rgba(161,55,191,0.1);
  color: var(--primary);
  border: 1px solid rgba(161,55,191,0.15);
  box-shadow: 0 2px 8px rgba(161,55,191,0.08);
}

.v2-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

/* ---- Card — Premium Elevated Style ---- */
.v2-reason-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #ebebef;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Top gradient accent strip */
.v2-reason-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #A137BF, #C477D9, #DDB8ED);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle inner glow on hover */
.v2-reason-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(161,55,191,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.v2-reason-card:hover {
  border-color: rgba(161,55,191,0.15);
  box-shadow: 0 8px 32px rgba(161,55,191,0.08), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.v2-reason-card:hover::before { transform: scaleX(1); }
.v2-reason-card:hover::after { opacity: 1; }

.v2-reason-card.active {
  border-color: rgba(161,55,191,0.2);
  background: linear-gradient(160deg, #faf8ff 0%, #f3eeff 100%);
  box-shadow: 0 12px 40px rgba(161,55,191,0.1), 0 4px 12px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.v2-reason-card.active::before { transform: scaleX(1); }
.v2-reason-card.active::after { opacity: 1; }

/* Card header area */
.v2-reason-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px 16px;
  position: relative;
  z-index: 1;
}

/* Icon — larger, gradient ready */
.v2-reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(161,55,191,0.08) 0%, rgba(196,119,217,0.06) 100%);
  border: 1px solid rgba(161,55,191,0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-reason-card:hover .v2-reason-icon {
  background: linear-gradient(135deg, rgba(161,55,191,0.12) 0%, rgba(196,119,217,0.1) 100%);
  border-color: rgba(161,55,191,0.15);
  transform: scale(1.08);
}

.v2-reason-card.active .v2-reason-icon {
  background: linear-gradient(135deg, #A137BF, #C477D9);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(161,55,191,0.3);
  transform: scale(1.08);
}

/* Text block */
.v2-reason-text { flex: 1; min-width: 0; }

/* Title */
.v2-reason-card h3 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.02em;
}

.v2-reason-card h3 .v2-reason-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(161,55,191,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-left: 8px;
}

.v2-reason-card h3 .v2-reason-toggle i {
  font-size: 0.65rem;
  color: rgba(161,55,191,0.5);
  transition: all 0.35s ease;
}

.v2-reason-card:hover h3 .v2-reason-toggle {
  background: rgba(161,55,191,0.1);
}

.v2-reason-card.active h3 .v2-reason-toggle {
  background: linear-gradient(135deg, #A137BF, #C477D9);
  box-shadow: 0 2px 8px rgba(161,55,191,0.3);
}

.v2-reason-card.active h3 .v2-reason-toggle i {
  transform: rotate(45deg);
  color: #fff;
}

/* Summary text */
.v2-reason-card .v2-reason-summary {
  font-size: 0.84rem;
  color: #86868b;
  line-height: 1.55;
  margin: 0;
}

/* Expandable details — slide from card body */
.v2-reason-card .v2-reason-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.v2-reason-card.active .v2-reason-details {
  max-height: 220px;
  opacity: 1;
}

.v2-reason-details-inner {
  padding: 0 24px 20px;
}

.v2-reason-details ul {
  list-style: none;
  padding: 14px 0 0 0;
  margin: 0;
  border-top: 1px solid rgba(161,55,191,0.08);
}

.v2-reason-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #4a4a52;
  margin-bottom: 10px;
  line-height: 1.45;
}

.v2-reason-details li:last-child { margin-bottom: 0; }

.v2-reason-details li i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(161,55,191,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.45rem;
  flex-shrink: 0;
}

/* Remove old number element */
.v2-reason-number { display: none; }

/* Row stagger animation */
.v2-reasons-grid .v2-reason-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.v2-reasons-grid.visible .v2-reason-card { opacity: 1; transform: translateY(0); }
.v2-reasons-grid.visible .v2-reason-card:nth-child(1) { transition-delay: 0.05s; }
.v2-reasons-grid.visible .v2-reason-card:nth-child(2) { transition-delay: 0.1s; }
.v2-reasons-grid.visible .v2-reason-card:nth-child(3) { transition-delay: 0.15s; }
.v2-reasons-grid.visible .v2-reason-card:nth-child(4) { transition-delay: 0.2s; }
.v2-reasons-grid.visible .v2-reason-card:nth-child(5) { transition-delay: 0.25s; }
.v2-reasons-grid.visible .v2-reason-card:nth-child(6) { transition-delay: 0.3s; }

@media (max-width: 900px) {
  .v2-reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 600px) {
  .v2-reasons-section { padding: 80px 0 90px; }
  .v2-reasons-grid { grid-template-columns: 1fr; gap: 12px; }
  .v2-reason-card-head { padding: 18px 18px 12px; gap: 14px; }
  .v2-reason-icon { width: 40px; height: 40px; font-size: 0.95rem; border-radius: 12px; }
  .v2-reason-card h3 { font-size: 0.92rem; }
  .v2-reason-card .v2-reason-summary { font-size: 0.8rem; }
  .v2-reason-details-inner { padding: 0 18px 16px; }
  .v2-reason-card h3 .v2-reason-toggle { width: 24px; height: 24px; }
  .v2-reason-card h3 .v2-reason-toggle i { font-size: 0.55rem; }
}

/* ============================================
   CERTIFICATION TRUST SECTION
   ============================================ */

.v2-trust {
  padding: 80px 0 90px;
  background: #fff;
  position: relative;
}

.v2-trust-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.v2-trust-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #86868b;
  margin-bottom: 16px;
}

.v2-trust-label i {
  font-size: 0.65rem;
  color: #4ade80;
}

.v2-trust h2 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.v2-trust h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #A137BF, #C477D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-trust-sub {
  font-size: 1rem;
  color: #86868b;
  margin-bottom: 48px;
  line-height: 1.5;
}

.v2-trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.v2-trust-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid #ebebef;
  border-radius: 16px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.v2-trust-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v2-trust-card:first-child::before {
  background: linear-gradient(180deg, #2d5fb3, #1a3a6e);
  transform: scaleY(1);
}

.v2-trust-card:last-child::before {
  background: linear-gradient(180deg, #A137BF, #C477D9);
  transform: scaleY(1);
}

.v2-trust-card:hover {
  border-color: rgba(161,55,191,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.v2-trust-logo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f2;
}

.v2-trust-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
}

.v2-trust-text h3 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 6px 0;
}

.v2-trust-text p {
  font-size: 0.82rem;
  color: #86868b;
  line-height: 1.5;
  margin: 0;
}

.v2-trust-footer {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.v2-trust-check {
  font-size: 0.82rem;
  color: #52525b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-trust-check i {
  color: #16a34a;
  font-size: 0.78rem;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .v2-trust { padding: 60px 0 70px; }
  .v2-trust-cards { grid-template-columns: 1fr; }
  .v2-trust-card { padding: 22px 20px; gap: 16px; }
  .v2-trust-logo { width: 72px; height: 72px; padding: 10px; }
  .v2-trust-footer { align-items: flex-start; padding: 0 16px; }
  .v2-trust-check { font-size: 0.78rem; text-align: left; }
}

/* ============================================
   COMPETITOR COMPARISON — PREMIUM REDESIGN
   Inspired by Linear, Vercel, Stripe patterns
   ============================================ */

.v2-compare {
  background: #faf8ff;
  padding: 120px 0 130px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow orbs */
.v2-compare-deco-1 {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,55,191,0.07) 0%, transparent 55%);
  pointer-events: none;
  filter: blur(90px);
  animation: v2-cmp-float 12s ease-in-out infinite;
}

.v2-compare-deco-2 {
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,119,217,0.06) 0%, transparent 55%);
  pointer-events: none;
  filter: blur(70px);
  animation: v2-cmp-float 15s ease-in-out infinite reverse;
}

@keyframes v2-cmp-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}

.v2-compare-dots { display: none; }

.v2-compare .container {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

/* Section header */
.v2-compare-header {
  text-align: center;
  margin-bottom: 56px;
}

.v2-compare-header .v2-compare-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(161,55,191,0.07);
  color: var(--primary);
  border: 1px solid rgba(161,55,191,0.12);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.v2-compare-header h2 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.v2-compare-header > p {
  font-size: 1.05rem;
  color: #86868b;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Premium Comparison Table ---- */
.v2-cmp-table {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(161,55,191,0.08);
  box-shadow:
    0 0 0 1px rgba(161,55,191,0.04),
    0 4px 32px rgba(161,55,191,0.06),
    0 16px 48px rgba(0,0,0,0.04);
  overflow: visible;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.v2-cmp-table.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle top-edge gradient line */
.v2-cmp-table::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(161,55,191,0.4), rgba(196,119,217,0.4), transparent);
  border-radius: 2px;
  z-index: 3;
}

/* Table header row */
.v2-cmp-thead {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: end;
  border-bottom: 1px solid #ebebef;
  position: relative;
}

.v2-cmp-th {
  padding: 28px 20px 20px;
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.v2-cmp-th-feature {
  text-align: left;
  padding-left: 32px;
  color: #86868b;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.v2-cmp-th-other {
  color: #b0b0b8;
  background: rgba(0,0,0,0.015);
  position: relative;
}

.v2-cmp-th-other::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, #e8e8ec, transparent);
}

/* ClubR column header — elevated hero */
.v2-cmp-th-clubr {
  color: #fff;
  background: linear-gradient(165deg, #8E35AC 0%, #A137BF 40%, #6D3399 100%);
  padding: 28px 20px 22px;
  position: relative;
  border-radius: 18px 18px 0 0;
  margin-top: -14px;
  box-shadow:
    0 -8px 32px rgba(161,55,191,0.25),
    0 0 0 1px rgba(161,55,191,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
  z-index: 2;
}

/* Subtle shimmer on ClubR header */
.v2-cmp-th-clubr::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(105deg,
    transparent 40%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0.08) 55%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: v2-cmp-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes v2-cmp-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.v2-cmp-th-clubr .v2-cmp-th-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  position: relative;
  z-index: 1;
}

.v2-cmp-th-clubr .v2-clubr-sticker {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3));
  border: 2px solid rgba(255,255,255,0.25);
}

/* "Consigliato" pill — floating above */
.v2-cmp-th-clubr .v2-cmp-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(16,185,129,0.35), 0 0 0 2px rgba(255,255,255,0.9);
  white-space: nowrap;
  z-index: 3;
  line-height: 1.4;
}

/* Table body rows */
.v2-cmp-row {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-cmp-table.visible .v2-cmp-row {
  opacity: 1;
  transform: translateY(0);
}

.v2-cmp-table.visible .v2-cmp-row:nth-child(1) { transition-delay: 0.08s; }
.v2-cmp-table.visible .v2-cmp-row:nth-child(2) { transition-delay: 0.14s; }
.v2-cmp-table.visible .v2-cmp-row:nth-child(3) { transition-delay: 0.20s; }
.v2-cmp-table.visible .v2-cmp-row:nth-child(4) { transition-delay: 0.26s; }
.v2-cmp-table.visible .v2-cmp-row:nth-child(5) { transition-delay: 0.32s; }
.v2-cmp-table.visible .v2-cmp-row:nth-child(6) { transition-delay: 0.38s; }
.v2-cmp-table.visible .v2-cmp-row:nth-child(7) { transition-delay: 0.44s; }
.v2-cmp-table.visible .v2-cmp-row:nth-child(8) { transition-delay: 0.50s; }

/* Row dividers — gradient fade */
.v2-cmp-row-summary {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  position: relative;
  transition: background 0.25s ease;
}

.v2-cmp-row-summary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #ebebef 15%, #ebebef 85%, transparent 100%);
}

.v2-cmp-row:last-child .v2-cmp-row-summary::after { display: none; }

.v2-cmp-row-summary:hover {
  background: linear-gradient(90deg, rgba(161,55,191,0.015) 0%, rgba(161,55,191,0.03) 65%, rgba(161,55,191,0.05) 100%);
}

/* Feature cell */
.v2-cmp-feature {
  padding: 22px 16px 22px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.v2-cmp-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(161,55,191,0.08) 0%, rgba(196,119,217,0.06) 100%);
  border: 1px solid rgba(161,55,191,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.v2-cmp-row-summary:hover .v2-cmp-feature-icon {
  background: linear-gradient(135deg, rgba(161,55,191,0.12) 0%, rgba(196,119,217,0.1) 100%);
  border-color: rgba(161,55,191,0.12);
  transform: scale(1.05);
}

.v2-cmp-feature-icon i {
  font-size: 0.78rem;
  color: #A137BF;
}

.v2-cmp-feature-title {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.3;
}

.v2-cmp-gain i {
  color: #A137BF;
  font-size: 0.5rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Value cells */
.v2-cmp-cell {
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: 0.78rem;
  line-height: 1.45;
}

.v2-cmp-cell i {
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* "Gli altri" — desaturated, dimmed */
.v2-cmp-cell-other {
  background: rgba(0,0,0,0.012);
  color: #a1a1a6;
  font-weight: 500;
  position: relative;
}

.v2-cmp-cell-other::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, #ebebef, transparent);
}

.v2-cmp-cell-other i {
  color: #ef4444;
  opacity: 0.7;
}

/* ClubR column — confident, warm glow */
.v2-cmp-cell-clubr {
  background: linear-gradient(135deg, rgba(161,55,191,0.03) 0%, rgba(142,53,172,0.05) 100%);
  color: #1d1d1f;
  font-weight: 600;
  position: relative;
}

.v2-cmp-cell-clubr::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(161,55,191,0.15), transparent);
}

/* Custom checkmarks — pill style */
.v2-cmp-cell-clubr .v2-cmp-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A137BF 0%, #6D3399 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(161,55,191,0.25);
}

.v2-cmp-cell-clubr .v2-cmp-check i {
  color: #fff;
  font-size: 0.45rem;
}

/* X marks — muted circle */
.v2-cmp-cell-other .v2-cmp-xmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239,68,68,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-cmp-cell-other .v2-cmp-xmark i {
  color: #ef4444;
  font-size: 0.45rem;
  opacity: 0.8;
}

/* Score footer — premium bar */
.v2-cmp-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  border-top: none;
  background: linear-gradient(180deg, #f7f5ff 0%, #f0ecff 100%);
  position: relative;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.v2-cmp-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(161,55,191,0.15), transparent);
}

.v2-cmp-footer-label {
  padding: 22px 32px;
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.v2-cmp-footer-score {
  padding: 22px 12px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.v2-cmp-footer-score-other {
  color: #d1d1d6;
}

.v2-cmp-footer-score-clubr {
  color: #fff;
  background: linear-gradient(135deg, #A137BF, #6D3399);
  border-radius: 0 0 16px 0;
  position: relative;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Bottom CTA — stronger visual */
.v2-compare-bottom {
  text-align: center;
  margin-top: 56px;
}

.v2-compare-verdict {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.v2-compare-verdict em {
  font-style: normal;
  background: linear-gradient(135deg, #A137BF, #C477D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-compare-subteaser {
  font-size: 0.98rem;
  color: #86868b;
  margin-bottom: 32px;
  line-height: 1.6;
}

.v2-compare-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 40px;
  background: linear-gradient(135deg, #A137BF 0%, #6D3399 100%);
  color: #fff;
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(161,55,191,0.3),
    0 1px 3px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.v2-compare-cta a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.5s ease;
}

.v2-compare-cta a:hover::before {
  left: 100%;
}

.v2-compare-cta a:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(161,55,191,0.4),
    0 4px 12px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.v2-compare-cta a i {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-compare-cta a:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .v2-compare { padding: 80px 0 90px; }
  .v2-cmp-table { border-radius: 18px; }
  .v2-cmp-table::before { left: 24px; right: 24px; }
  .v2-cmp-thead, .v2-cmp-row-summary, .v2-cmp-footer {
    grid-template-columns: 1.1fr 0.9fr 1fr;
  }
  .v2-cmp-feature { padding: 16px 14px 16px 20px; gap: 12px; }
  .v2-cmp-feature-icon { width: 34px; height: 34px; }
  .v2-cmp-feature-title { font-size: 0.82rem; }
  .v2-cmp-cell { font-size: 0.7rem; padding: 16px 12px; }
  .v2-cmp-th-clubr { border-radius: 14px 14px 0 0; }
}

@media (max-width: 540px) {
  .v2-cmp-thead, .v2-cmp-row-summary, .v2-cmp-footer {
    grid-template-columns: 1fr 70px 70px;
  }
  .v2-cmp-feature { padding: 14px 10px 14px 14px; gap: 8px; }
  .v2-cmp-feature-icon { width: 28px; height: 28px; border-radius: 8px; }
  .v2-cmp-feature-icon i { font-size: 0.6rem; }
  .v2-cmp-feature-title { font-size: 0.75rem; }
  .v2-cmp-th { font-size: 0.52rem; padding: 18px 8px 14px; }
  .v2-cmp-th-feature { padding-left: 14px; }
  .v2-cmp-th-clubr { padding: 22px 10px 16px; margin-top: -12px; }
  .v2-cmp-th-clubr .v2-cmp-th-name { font-size: 0.68rem; gap: 5px; }
  .v2-cmp-th-clubr .v2-clubr-sticker { width: 22px; height: 22px; border-radius: 6px; }
  .v2-cmp-th-clubr .v2-cmp-badge { font-size: 0.46rem; top: -11px; padding: 3px 10px; }
  .v2-cmp-cell { padding: 12px 8px; gap: 6px; font-size: 0.62rem; }
  .v2-cmp-cell i { font-size: 0.4rem; }
  .v2-cmp-cell-clubr .v2-cmp-check,
  .v2-cmp-cell-other .v2-cmp-xmark { width: 16px; height: 16px; }
  .v2-cmp-cell-clubr .v2-cmp-check i,
  .v2-cmp-cell-other .v2-cmp-xmark i { font-size: 0.35rem; }
  .v2-cmp-footer-score { font-size: 1.2rem; }
  .v2-cmp-footer-label { padding: 16px 14px; font-size: 0.6rem; }
  .v2-cmp-footer { border-radius: 0 0 18px 18px; }
  .v2-compare-verdict { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
  .v2-cmp-row-summary::after { left: 12px; right: 12px; }
  .v2-cmp-table::before { left: 16px; right: 16px; }
}


/* ============================================
   CLUB SHOWCASE — 3D STACKED CARD CAROUSEL
   ============================================ */

.v2-clubs-section {
  padding: 120px 0;
  background: #0c0c14;
  overflow: hidden;
}

.v2-clubs-section .section-header h2 {
  color: #fff;
}
.v2-clubs-section .section-header p {
  color: rgba(255,255,255,0.6);
}

.v2-clubs-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 520px;
  margin: 72px auto 0;
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

.v2-club-card {
  position: absolute;
  width: 320px;
  height: 440px;
  left: 50%;
  top: 50%;
  margin-left: -160px;
  margin-top: -220px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  will-change: transform, opacity, z-index;
}

.v2-club-card.v2-card-active {
  transform: translateZ(80px) scale(1.05);
  z-index: 10;
  box-shadow: 0 35px 80px rgba(161,55,191,0.35), 0 0 0 2px rgba(161,55,191,0.3);
}

.v2-club-card.v2-card-left1 {
  transform: translateX(-110%) rotateY(25deg) translateZ(-40px) scale(0.88);
  z-index: 5;
  opacity: 0.85;
}

.v2-club-card.v2-card-left2 {
  transform: translateX(-190%) rotateY(35deg) translateZ(-120px) scale(0.72);
  z-index: 2;
  opacity: 0.5;
}

.v2-club-card.v2-card-right1 {
  transform: translateX(110%) rotateY(-25deg) translateZ(-40px) scale(0.88);
  z-index: 5;
  opacity: 0.85;
}

.v2-club-card.v2-card-right2 {
  transform: translateX(190%) rotateY(-35deg) translateZ(-120px) scale(0.72);
  z-index: 2;
  opacity: 0.5;
}

.v2-club-card.v2-card-hidden {
  transform: translateX(0) rotateY(0) translateZ(-200px) scale(0.6);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.v2-club-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-club-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    transparent 100%
  );
  transition: opacity 0.5s ease;
}

.v2-club-card.v2-card-active .v2-club-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    transparent 100%
  );
}

.v2-club-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(8px);
  opacity: 0.7;
  transition: all 0.5s ease;
}

.v2-club-card.v2-card-active .v2-club-card-info {
  transform: translateY(0);
  opacity: 1;
}

.v2-club-card-info-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px;
  backdrop-filter: blur(10px);
}

.v2-club-card-info h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Navigation arrows */
.v2-clubs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.v2-clubs-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.v2-clubs-nav-btn:hover {
  background: rgba(161,55,191,0.3);
  border-color: rgba(161,55,191,0.5);
  transform: scale(1.08);
}

/* Dot indicators */
.v2-clubs-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.v2-clubs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.4s ease;
  cursor: pointer;
}

.v2-clubs-dot.active {
  width: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, #A137BF, #C477D9);
}

/* Ambient glow behind active card */
.v2-clubs-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,55,191,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

@media (max-width: 900px) {
  .v2-clubs-stage { height: 440px; }
  .v2-club-card { width: 260px; height: 370px; margin-left: -130px; margin-top: -185px; }
  .v2-club-card.v2-card-left1 { transform: translateX(-85%) rotateY(20deg) translateZ(-30px) scale(0.85); }
  .v2-club-card.v2-card-right1 { transform: translateX(85%) rotateY(-20deg) translateZ(-30px) scale(0.85); }
  .v2-club-card.v2-card-left2, .v2-club-card.v2-card-right2 { opacity: 0; pointer-events: none; }
}

@media (max-width: 600px) {
  .v2-clubs-section { padding: 80px 0; }
  .v2-clubs-stage { height: 400px; }
  .v2-club-card { width: 240px; height: 340px; margin-left: -120px; margin-top: -170px; }
  .v2-club-card.v2-card-left1 { transform: translateX(-70%) rotateY(15deg) translateZ(-20px) scale(0.82); opacity: 0.6; }
  .v2-club-card.v2-card-right1 { transform: translateX(70%) rotateY(-15deg) translateZ(-20px) scale(0.82); opacity: 0.6; }
}

/* ============================================
   TESTIMONIALS — SINGLE CARD SLIDER
   ============================================ */

.v2-testimonials-section {
  padding: 100px 0 80px;
  background: var(--white);
  overflow: hidden;
}

/* Track */
.v2-testi-track-wrap {
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.v2-testi-track {
  display: flex;
  gap: 20px;
  animation: testiScroll 35s linear infinite;
  width: max-content;
}
.v2-testi-track:hover { animation-play-state: paused; }

@keyframes testiScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card */
.v2-testi-card {
  flex-shrink: 0;
  width: 360px;
  background: #fff;
  border: 1.5px solid #e8e8ed;
  border-radius: 20px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.v2-testi-card:hover {
  border-color: rgba(161,55,191,0.2);
  box-shadow: 0 12px 40px rgba(161,55,191,0.08);
  transform: translateY(-4px);
}

.v2-testi-top {
  margin-bottom: 16px;
}

.v2-testi-stars {
  display: flex; gap: 3px;
}
.v2-testi-stars i {
  color: #fbbf24; font-size: 0.82rem;
}

.v2-testi-quote {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #3f3f46;
  font-weight: 500;
  flex: 1;
  margin: 0 0 20px;
}

.v2-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.v2-testi-avatar {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #A137BF, #C477D9);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.v2-testi-name {
  font-size: 0.85rem; font-weight: 700; color: #18181b;
}
.v2-testi-city {
  font-size: 0.72rem; color: #a1a1aa; margin-top: 1px;
}

@media (max-width: 600px) {
  .v2-testimonials-section { padding: 80px 0 60px; }
  .v2-testi-card { width: 300px; padding: 22px 20px 20px; }
  .v2-testi-quote { font-size: 0.85rem; }
}

/* ============================================
   FAQ — ACCORDION WITH SMOOTH ANIMATION
   ============================================ */

/* ============================================
   FAQ — Search + Tabs + Premium Accordion
   ============================================ */
.v2-faq-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 40%, #f8f9fc 100%);
  position: relative;
}
.v2-faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 20%, rgba(161,55,191,0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Search bar */
.v2-faq-search-wrap {
  max-width: 540px; margin: 0 auto 24px;
}
.v2-faq-search {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: #fff; border: 1.5px solid #e5e5ea;
  border-radius: 16px; transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.v2-faq-search:focus-within {
  border-color: #A137BF;
  box-shadow: 0 0 0 3px rgba(161,55,191,0.1), 0 4px 20px rgba(161,55,191,0.08);
}
.v2-faq-search-icon { color: #a1a1aa; font-size: 0.9rem; flex-shrink: 0; }
.v2-faq-search:focus-within .v2-faq-search-icon { color: #A137BF; }
.v2-faq-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 0.95rem; color: #18181b; font-family: inherit;
}
.v2-faq-search input::placeholder { color: #c4c4c8; }
.v2-faq-search-count {
  font-size: 0.72rem; font-weight: 600; color: #a1a1aa;
  white-space: nowrap; padding: 3px 10px;
  background: #f4f4f5; border-radius: 20px;
  transition: all 0.25s;
}

/* Category tabs */
.v2-faq-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.v2-faq-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border: 1.5px solid #e5e5ea;
  border-radius: 12px; background: #fff;
  font-size: 0.82rem; font-weight: 600; color: #71717a;
  cursor: pointer; transition: all 0.25s;
  font-family: inherit;
}
.v2-faq-tab i { font-size: 0.75rem; }
.v2-faq-tab:hover { border-color: rgba(161,55,191,0.3); color: #A137BF; }
.v2-faq-tab--active {
  background: linear-gradient(135deg, #A137BF, #6D3399);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 16px rgba(161,55,191,0.25);
}
.v2-faq-tab--active:hover { color: #fff; }

/* FAQ container */
.v2-faq-container {
  max-width: 780px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* FAQ items */
.v2-faq-item {
  background: #fff;
  border: 1.5px solid #e8e8ed;
  border-radius: 16px;
  margin-bottom: 10px;
  transition: all 0.35s ease;
  overflow: hidden;
}
.v2-faq-item.hidden { display: none; }
.v2-faq-item:hover {
  border-color: rgba(161,55,191,0.18);
  box-shadow: 0 4px 20px rgba(161,55,191,0.06);
  transform: translateY(-1px);
}
.v2-faq-item.active {
  border-color: rgba(161,55,191,0.25);
  box-shadow: 0 8px 32px rgba(161,55,191,0.1);
}

.v2-faq-question {
  width: 100%; display: flex; align-items: center;
  gap: 14px; padding: 18px 22px;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  text-align: left; cursor: pointer;
  background: none; border: none; font-family: inherit;
  transition: color 0.25s;
}
.v2-faq-question:hover { color: var(--primary); }

/* Question icon (left) */
.v2-faq-q-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; flex-shrink: 0;
  background: #f5f0ff; color: #A137BF;
  transition: all 0.3s;
}
.v2-faq-item.active .v2-faq-q-icon {
  background: linear-gradient(135deg, #A137BF, #C477D9);
  color: #fff;
}

.v2-faq-question-text { flex: 1; }

/* Chevron (right) */
.v2-faq-question-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #a1a1aa; flex-shrink: 0;
  background: #f4f4f5;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.v2-faq-item.active .v2-faq-question-icon {
  transform: rotate(180deg);
  color: #fff;
  background: linear-gradient(135deg, #A137BF, #C477D9);
}

/* Answer */
.v2-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.v2-faq-answer-inner {
  padding: 0 22px 20px 72px;
  color: var(--text-secondary);
  line-height: 1.75; font-size: 0.9rem;
}

/* No results */
.v2-faq-no-results {
  text-align: center; padding: 48px 20px;
}
.v2-faq-no-results-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #f4f4f5; color: #a1a1aa;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin: 0 auto 14px;
}
.v2-faq-no-results-text {
  font-size: 1rem; font-weight: 700; color: #3f3f46;
  margin-bottom: 6px;
}
.v2-faq-no-results-hint {
  font-size: 0.85rem; color: #a1a1aa;
}
.v2-faq-no-results-hint a { color: #A137BF; font-weight: 600; text-decoration: none; }

/* Bottom CTA */
.v2-faq-bottom {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid #ebebef;
}
.v2-faq-bottom-text { font-size: 0.9rem; color: #71717a; font-weight: 500; }
.v2-faq-bottom-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; background: #18181b; color: #fff;
  border-radius: 10px; font-size: 0.85rem; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
}
.v2-faq-bottom-btn:hover {
  background: #A137BF;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(161,55,191,0.3);
}
.v2-faq-bottom-btn i { font-size: 0.75rem; transition: transform 0.2s; }
.v2-faq-bottom-btn:hover i { transform: translateX(3px); }

@media (max-width: 600px) {
  .v2-faq-section { padding: 80px 0; }
  .v2-faq-tabs { gap: 6px; }
  .v2-faq-tab { padding: 8px 14px; font-size: 0.78rem; }
  .v2-faq-question { padding: 14px 16px; font-size: 0.88rem; gap: 10px; }
  .v2-faq-q-icon { width: 30px; height: 30px; font-size: 0.72rem; }
  .v2-faq-answer-inner { padding: 0 16px 16px 56px; font-size: 0.85rem; }
  .v2-faq-bottom { flex-direction: column; gap: 10px; }
}

/* ============================================
   CONTACT / CONTATTI — Centered, minimal, premium
   ============================================ */

.v2-contact {
  padding: 100px 40px;
  background: #fff;
  text-align: center;
  position: relative;
}

.v2-contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.v2-contact-container {
  max-width: 680px;
  margin: 0 auto;
}

/* Headline */
.v2-contact h2 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0 0 1rem 0;
}

.v2-contact h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #A137BF, #B84ED0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.v2-contact-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto 2.5rem;
  max-width: 480px;
}

/* Email line */
.v2-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.25s ease;
  margin-bottom: 2.5rem;
}

.v2-contact-email i {
  color: var(--primary);
  font-size: 0.875rem;
}

.v2-contact-email:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(161,55,191,0.08);
}

/* CTA — "Parla con un agente" card */
.v2-contact-cta-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 0.25rem;
}

.v2-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--text);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.v2-contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.v2-contact-cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52,211,153,0.2);
  animation: v2-cta-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes v2-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52,211,153,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(52,211,153,0.08); }
}

.v2-contact-cta i.fa-arrow-right {
  font-size: 0.8125rem;
  transition: transform 0.25s ease;
}

.v2-contact-cta:hover i.fa-arrow-right {
  transform: translateX(3px);
}

/* Speed tagline under CTA */
.v2-contact-cta-speed {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.v2-contact-cta-speed i {
  color: var(--primary);
  font-size: 0.6875rem;
}

/* Social row */
.v2-contact-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.v2-contact-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.125rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: all 0.25s ease;
}

.v2-contact-social:hover {
  color: var(--text);
  border-color: var(--text);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 600px) {
  .v2-contact { padding: 64px 24px; }
  .v2-contact h2 { font-size: 2rem; }
  .v2-contact-cta { width: 100%; justify-content: center; }
}

/* ============================================
   FOOTER — DARK, MINIMAL, CLEAN
   ============================================ */

.v2-footer {
  padding: 80px 0 48px;
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
}

.v2-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

.v2-footer-logo {
  flex: 1;
}

.v2-footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

.v2-footer-logo:hover img {
  opacity: 0.8;
}

.v2-footer-social {
  display: flex;
  gap: 12px;
}

.v2-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  font-size: 1.125rem;
}

.v2-footer-social-link:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background: rgba(167, 139, 250, 0.08);
}

.v2-footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.v2-footer-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.v2-footer-link:hover {
  color: var(--white);
}

.v2-footer-credits {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .v2-footer-top {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .v2-footer-logo {
    display: flex;
    justify-content: center;
  }
  .v2-footer-links {
    gap: 16px;
  }
  .v2-footer {
    padding: 60px 0 40px;
  }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.v2-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  z-index: 3000;
  display: none;
  animation: cookieSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.v2-cookie-banner.visible {
  display: block;
}

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

.v2-cookie-title {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 8px;
}

.v2-cookie-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.v2-cookie-desc a {
  color: var(--primary);
  text-decoration: underline;
  transition: color var(--transition);
}

.v2-cookie-desc a:hover {
  color: var(--primary-light);
}

.v2-cookie-actions {
  display: flex;
  gap: 12px;
}

.v2-cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  flex: 1;
  border: none;
}

.v2-cookie-accept {
  background: var(--primary);
  color: var(--white);
}

.v2-cookie-accept:hover {
  background: #6D3399;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(161, 55, 191, 0.3);
}

.v2-cookie-reject {
  background: var(--bg-soft);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.v2-cookie-reject:hover {
  background: var(--bg-muted);
  color: var(--text);
}

@media (max-width: 600px) {
  .v2-cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }
  .v2-cookie-actions {
    flex-direction: column;
  }
}

/* ============================================
   DEMO POPUP
   ============================================ */

.v2-demo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.4);
  backdrop-filter: blur(12px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.v2-demo-popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.v2-demo-popup {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.v2-demo-popup-overlay.visible .v2-demo-popup {
  transform: scale(1);
}

.v2-demo-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
}

.v2-demo-popup-close:hover {
  background: var(--primary-100);
  color: var(--primary);
}

.v2-demo-popup-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 28px;
}

.v2-demo-popup h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text);
}

.v2-demo-popup p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: center;
}

.v2-demo-popup-email {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 32px;
  display: block;
  text-align: center;
  font-size: 1.0625rem;
}

.v2-demo-popup-cta {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.v2-demo-popup-cta:hover {
  background: #6D3399;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(161, 55, 191, 0.3);
}

/* ============================================
   VIDEO POPUP
   ============================================ */

.v2-video-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.v2-video-popup-overlay.active {
  display: flex;
}

.v2-video-popup-box {
  width: 100%;
  max-width: 920px;
  position: relative;
}

.v2-video-popup-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.75rem;
  transition: color var(--transition);
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.v2-video-popup-close:hover {
  color: var(--white);
}

.v2-video-popup-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

.v2-video-popup-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.v2-video-popup-share {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.v2-video-popup-share-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.25rem;
}

.v2-video-popup-share-link:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

@media (max-width: 600px) {
  .v2-video-popup-overlay {
    padding: 60px 16px 40px;
  }
  .v2-video-popup-close {
    top: -40px;
  }
}


/* ============================================
   GLOBAL ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #faf9ff; }
::-webkit-scrollbar-thumb { background: #E8CFF0; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #C477D9; }


/* ═══════════════════════════════════════
   COMPARE v2 — Visual Side-by-Side
   ═══════════════════════════════════════ */

.v2-compare {
  background: linear-gradient(180deg, #faf8ff 0%, #fff 50%, #faf8ff 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: visible;
}

.v2-compare-header {
  text-align: center;
  margin-bottom: 44px;
}

.v2-compare-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(161,55,191,0.06);
  color: #A137BF;
  border: 1px solid rgba(161,55,191,0.1);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.v2-compare-header h2 {
  font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.v2-grad-warm {
  background: linear-gradient(135deg, #dc2626, #db2777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-compare-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Accent line under header */
.v2-compare-accent {
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #A137BF, #db2777);
  margin: 0 auto 18px;
}

/* Stat badges row */
.v2-compare-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.v2-compare-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  font-size: 0.8rem;
  color: #3f3f46;
  font-weight: 600;
}
.v2-compare-stat i {
  font-size: 0.85rem;
}
.v2-compare-stat i.fa-circle-xmark { color: #dc2626; }
.v2-compare-stat i.fa-circle-check { color: #22c55e; }
.v2-compare-stat strong {
  color: #18181b;
  font-weight: 800;
}

/* ===== VS Layout ===== */
.v2-cmp-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 32px;
  position: relative;
}

.v2-cmp-side {
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.v2-cmp-side--other {
  background: #fff;
  border: 1px solid #e5e5ea;
}

.v2-cmp-side--clubr {
  background: linear-gradient(145deg, #A137BF, #6D3399 50%, #4F2273 100%);
  border: 1px solid rgba(161,55,191,0.3);
  box-shadow: 0 20px 60px rgba(161,55,191,0.2), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

/* Side badge */
.v2-cmp-side-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ebebef;
}

.v2-cmp-side-badge--clubr {
  color: rgba(255,255,255,0.9);
  border-bottom-color: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}
.v2-cmp-side-badge--clubr i { color: #fbbf24; }

/* Side items */
.v2-cmp-side-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.v2-cmp-side-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.v2-cmp-side-item--bad {
  background: rgba(239,68,68,0.04);
}
.v2-cmp-side-item--bad:hover {
  background: rgba(239,68,68,0.08);
}

.v2-cmp-side-item--good {
  background: rgba(255,255,255,0.08);
}
.v2-cmp-side-item--good:hover {
  background: rgba(255,255,255,0.14);
  transform: translateX(4px);
}

.v2-cmp-side-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.v2-cmp-side--other .v2-cmp-side-icon {
  background: #f5f5f7;
  color: var(--text-secondary);
}

.v2-cmp-side--clubr .v2-cmp-side-icon {
  background: rgba(255,255,255,0.12);
  color: #fbbf24;
}

.v2-cmp-side-text { flex: 1; min-width: 0; }

.v2-cmp-side-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.v2-cmp-side--other .v2-cmp-side-label { color: var(--text-secondary); }
.v2-cmp-side--clubr .v2-cmp-side-label { color: rgba(255,255,255,0.55); }

.v2-cmp-side-val {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}
.v2-cmp-side-val--bad { color: var(--text); }
.v2-cmp-side-val--good { color: #fff; }

.v2-cmp-side-x, .v2-cmp-side-check {
  width: 24px; height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
}

.v2-cmp-side-x {
  background: rgba(239,68,68,0.08);
  color: #ef4444;
}

.v2-cmp-side-check {
  background: rgba(255,255,255,0.15);
  color: #4ade80;
}

/* Bottom scores */
.v2-cmp-side-bottom {
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2-cmp-side-bottom--other { border-top: 1px solid #ebebef; }
.v2-cmp-side-bottom--clubr { border-top: 1px solid rgba(255,255,255,0.15); }

.v2-cmp-side-score {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.v2-cmp-side--other .v2-cmp-side-score { color: #ef4444; }
.v2-cmp-side--clubr .v2-cmp-side-score { color: #fbbf24; }

.v2-cmp-side-verdict {
  font-size: 0.78rem;
  font-weight: 600;
}
.v2-cmp-side--other .v2-cmp-side-verdict { color: var(--text-secondary); }
.v2-cmp-side--clubr .v2-cmp-side-verdict { color: rgba(255,255,255,0.8); }

/* VS badge */
.v2-cmp-vs-badge {
  align-self: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ebebef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 -24px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Opportunity bar */
.v2-cmp-opportunity {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(161,55,191,0.04), rgba(196,119,217,0.04));
  border: 1.5px solid rgba(161,55,191,0.12);
  border-radius: 18px;
  padding: 22px 28px;
  transition: all 0.3s ease;
}

.v2-cmp-opportunity:hover {
  border-color: rgba(161,55,191,0.25);
  box-shadow: 0 8px 32px rgba(161,55,191,0.06);
}

.v2-cmp-opp-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #A137BF, #C477D9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.v2-cmp-opp-text { flex: 1; }

.v2-cmp-opp-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.v2-cmp-opp-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.v2-cmp-opp-desc strong { color: #dc2626; font-weight: 700; }

.v2-cmp-opp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #A137BF, #6D3399);
  color: #fff;
  border-radius: 12px;
  font-weight: 650;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(161,55,191,0.2);
}
.v2-cmp-opp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(161,55,191,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .v2-cmp-vs {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .v2-cmp-vs-badge {
    margin: -12px auto;
    position: relative;
  }
  .v2-cmp-side { padding: 22px 18px; }
  .v2-cmp-opportunity {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .v2-cmp-opp-cta { width: 100%; justify-content: center; }
}


/* ========== SAVINGS CALCULATOR GAME ========== */
.calc-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.calc-overlay.active { opacity: 1; pointer-events: all; }

.calc-modal {
  background: #fff; border-radius: 28px;
  width: 92%; max-width: 520px;
  padding: 36px 32px 28px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
  max-height: 90vh; overflow-y: auto;
}
.calc-overlay.active .calc-modal {
  transform: translateY(0) scale(1);
}

.calc-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: #f4f4f5; color: #71717a;
  font-size: 1rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.2s;
}
.calc-close:hover { background: #e5e5ea; color: #18181b; }

/* Steps */
.calc-step { display: none; }
.calc-step--active { display: block; }

.calc-step-header { text-align: center; margin-bottom: 28px; }
.calc-emoji { font-size: 2.5rem; margin-bottom: 8px; }
.calc-step-header h3 {
  font-size: 1.4rem; font-weight: 800; color: #18181b;
  margin: 0 0 6px;
}
.calc-step-header p {
  font-size: 0.88rem; color: #71717a; margin: 0;
}

/* Sliders */
.calc-sliders { display: flex; flex-direction: column; gap: 22px; margin-bottom: 24px; }
.calc-slider-group {}
.calc-slider-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.calc-slider-top label {
  font-size: 0.82rem; font-weight: 600; color: #3f3f46;
  display: flex; align-items: center; gap: 6px;
}
.calc-slider-top label i { color: #A137BF; font-size: 0.75rem; }
.calc-slider-value {
  font-size: 0.95rem; font-weight: 800; color: #A137BF;
  background: #f5f0ff; padding: 3px 12px; border-radius: 20px;
  min-width: 60px; text-align: center;
  transition: transform 0.15s;
}
.calc-slider-value.pop { transform: scale(1.15); }

/* Custom range */
.calc-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, #A137BF var(--pct, 50%), #e5e5ea var(--pct, 50%));
  outline: none; cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid #A137BF;
  box-shadow: 0 2px 8px rgba(161,55,191,0.3);
  cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
}
.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 16px rgba(161,55,191,0.4);
}
.calc-range::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid #A137BF;
  box-shadow: 0 2px 8px rgba(161,55,191,0.3);
  cursor: pointer;
}

.calc-slider-labels {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; color: #a1a1aa; margin-top: 4px;
}

/* Live preview */
.calc-live-preview {
  background: #fafafa; border-radius: 16px;
  padding: 16px 20px; margin-bottom: 24px;
}
.calc-live-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  font-size: 0.88rem; color: #52525b;
}
.calc-live-row + .calc-live-row { border-top: 1px solid #f0f0f0; }
.calc-live-row--loss { font-weight: 700; }
.calc-live-num { font-weight: 700; font-variant-numeric: tabular-nums; }
.calc-live-num--red { color: #dc2626; font-size: 1.05rem; }

/* GO button */
.calc-btn-go {
  width: 100%; padding: 16px 24px;
  background: linear-gradient(135deg, #A137BF, #6D3399);
  color: #fff; border: none; border-radius: 16px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(161,55,191,0.3);
}
.calc-btn-go:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(161,55,191,0.4);
}
.calc-btn-go:active { transform: scale(0.97); }

/* ===== STEP 2: RESULT ===== */
.calc-result-anim { text-align: center; margin-bottom: 32px; }

.calc-slot-label {
  font-size: 0.85rem; color: #71717a; font-weight: 500;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}

.calc-slot-container {
  display: flex; align-items: baseline; justify-content: center;
  gap: 4px; margin-bottom: 8px;
}
.calc-slot-euro {
  font-size: 2rem; font-weight: 800; color: #dc2626;
}
.calc-slot-digits {
  display: flex; gap: 3px;
}
.calc-slot-digit {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 56px;
  background: #18181b; color: #fff; font-size: 2rem; font-weight: 900;
  border-radius: 10px; overflow: hidden; position: relative;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.calc-slot-digit span {
  display: block; transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.calc-slot-digit-sep {
  width: 14px; height: 56px; display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; font-weight: 800; color: #dc2626;
}

.calc-slot-sub {
  font-size: 1rem; color: #52525b; font-weight: 600; margin-top: 4px;
}

/* Comparison bars */
.calc-bars { margin-bottom: 24px; }
.calc-bar-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.calc-bar-label {
  min-width: 85px; font-size: 0.82rem; font-weight: 600;
  color: #3f3f46; display: flex; align-items: center; gap: 6px;
}
.calc-bar-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.calc-bar-dot--red { background: #dc2626; }
.calc-bar-dot--green { background: #16a34a; }

.calc-bar-track {
  flex: 1; height: 20px; background: #f4f4f5;
  border-radius: 10px; overflow: hidden;
}
.calc-bar-fill {
  height: 100%; border-radius: 10px;
  width: 0%; transition: width 1.2s cubic-bezier(0.34,1.56,0.64,1);
}
.calc-bar-fill--red {
  background: linear-gradient(90deg, #fca5a5, #dc2626);
}
.calc-bar-fill--green {
  background: linear-gradient(90deg, #86efac, #16a34a);
}
.calc-bar-amount {
  min-width: 80px; text-align: right;
  font-size: 0.85rem; font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.calc-bar-amount--red { color: #dc2626; }
.calc-bar-amount--green { color: #16a34a; }

/* Savings box */
.calc-savings-box {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #86efac;
  border-radius: 18px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  transform: scale(0.8); opacity: 0;
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.calc-savings-box.visible {
  transform: scale(1); opacity: 1;
}
.calc-savings-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: #16a34a; color: #fff; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.calc-savings-label { font-size: 0.78rem; color: #52525b; font-weight: 500; }
.calc-savings-amount {
  font-size: 1.8rem; font-weight: 900; color: #16a34a;
  line-height: 1.1;
}
.calc-savings-period { font-size: 0.75rem; color: #71717a; }

/* Retry */
.calc-result-actions { display: flex; flex-direction: column; gap: 10px; }
.calc-btn-retry {
  width: 100%; padding: 12px;
  background: transparent; border: 1.5px solid #e5e5ea;
  border-radius: 12px; color: #71717a; font-size: 0.88rem;
  font-weight: 600; cursor: pointer; display: flex;
  align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.calc-btn-retry:hover { border-color: #A137BF; color: #A137BF; }

/* Confetti */
.calc-confetti {
  position: absolute; width: 8px; height: 8px;
  border-radius: 2px; pointer-events: none;
  animation: calcConfettiFall 1.5s ease-out forwards;
}
@keyframes calcConfettiFall {
  0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translateY(300px) rotate(720deg) scale(0); opacity: 0; }
}

/* Shake animation for loss number */
@keyframes calcShake {
  0%,100% { transform: translateX(0); }
  10%,30%,50%,70%,90% { transform: translateX(-3px); }
  20%,40%,60%,80% { transform: translateX(3px); }
}
.calc-shake { animation: calcShake 0.5s ease; }

/* Mobile */
@media (max-width: 600px) {
  .calc-modal { padding: 28px 20px 22px; border-radius: 22px; }
  .calc-slot-digit { width: 34px; height: 46px; font-size: 1.6rem; }
  .calc-slot-euro { font-size: 1.6rem; }
  .calc-slot-digit-sep { font-size: 1.4rem; width: 10px; }
  .calc-savings-amount { font-size: 1.4rem; }
}


/* ========== CALC V2: SAVINGS FOCUS ========== */
.calc-phase { margin-bottom: 24px; text-align: center; }
.calc-phase-b { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.calc-phase-b.visible { opacity: 1; transform: translateY(0); }

.calc-phase-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 20px; font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.calc-phase-badge--red { background: #fef2f2; color: #dc2626; }
.calc-phase-badge--green { background: #f0fdf4; color: #16a34a; }

/* Money flying away */
.calc-money-fly {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 10px; height: 30px; overflow: visible;
}
.calc-money-fly span {
  font-size: 1.2rem; opacity: 0;
  animation: moneyFlyAway 1.5s ease forwards;
}
.calc-money-fly span:nth-child(1) { animation-delay: 0.1s; }
.calc-money-fly span:nth-child(2) { animation-delay: 0.25s; }
.calc-money-fly span:nth-child(3) { animation-delay: 0.4s; }
.calc-money-fly span:nth-child(4) { animation-delay: 0.55s; }
.calc-money-fly span:nth-child(5) { animation-delay: 0.7s; }

@keyframes moneyFlyAway {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  60% { opacity: 1; transform: translateY(-40px) scale(1.3) rotate(15deg); }
  100% { opacity: 0; transform: translateY(-80px) scale(0.5) rotate(30deg); }
}

/* Before / After cards */
.calc-before-after {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.calc-ba-card {
  flex: 1; padding: 16px 12px; border-radius: 16px;
  text-align: center; opacity: 0;
  transform: scale(0.9); transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.calc-ba-card.visible { opacity: 1; transform: scale(1); }
.calc-ba-card--before { background: #fef2f2; border: 1.5px solid #fecaca; }
.calc-ba-card--after { background: #f0fdf4; border: 1.5px solid #bbf7d0; }
.calc-ba-icon { font-size: 1.5rem; margin-bottom: 6px; }
.calc-ba-card--before .calc-ba-icon { color: #dc2626; }
.calc-ba-card--after .calc-ba-icon { color: #16a34a; }
.calc-ba-label { font-size: 0.72rem; color: #71717a; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.calc-ba-amount { font-size: 1.4rem; font-weight: 900; line-height: 1.2; margin: 4px 0; font-variant-numeric: tabular-nums; }
.calc-ba-amount--red { color: #dc2626; }
.calc-ba-amount--green { color: #16a34a; }
.calc-ba-sub { font-size: 0.68rem; color: #a1a1aa; }
.calc-ba-arrow {
  color: #A137BF; font-size: 1.2rem; flex-shrink: 0;
  opacity: 0; transition: opacity 0.4s 0.3s;
}
.calc-ba-arrow.visible { opacity: 1; }

/* Big savings highlight */
.calc-big-save {
  background: linear-gradient(135deg, #A137BF, #6D3399);
  border-radius: 18px; padding: 20px; color: #fff;
  margin-bottom: 20px;
  opacity: 0; transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.calc-big-save.visible { opacity: 1; transform: scale(1); }
.calc-big-save-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px;
  opacity: 0.8; margin-bottom: 12px; font-weight: 600;
}
.calc-big-save-row {
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.calc-big-save-col { text-align: center; }
.calc-big-save-divider {
  width: 1px; height: 44px; background: rgba(255,255,255,0.25);
}
.calc-big-save-amount {
  font-size: 1.8rem; font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.calc-big-save-amount--year { font-size: 2.2rem; }
.calc-big-save-period {
  font-size: 0.72rem; opacity: 0.7; font-weight: 500; margin-top: 2px;
}

/* What you could do */
.calc-could-do {
  background: #fafafa; border-radius: 14px; padding: 16px 18px;
  margin-bottom: 20px; text-align: left;
  opacity: 0; transform: translateY(10px);
  transition: all 0.5s 0.2s ease;
}
.calc-could-do.visible { opacity: 1; transform: translateY(0); }
.calc-could-do-title {
  font-size: 0.78rem; font-weight: 700; color: #A137BF;
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.calc-could-do-items { display: flex; flex-direction: column; gap: 8px; }
.calc-could-do-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: #3f3f46;
  opacity: 0; transform: translateX(-10px);
  transition: all 0.35s ease;
}
.calc-could-do-item.visible { opacity: 1; transform: translateX(0); }
.calc-could-do-item i {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}
.calc-could-do-item:nth-child(1) i { background: #F3E5F8; color: #A137BF; }
.calc-could-do-item:nth-child(2) i { background: #fef3c7; color: #d97706; }
.calc-could-do-item:nth-child(3) i { background: #dbeafe; color: #2563eb; }

.calc-result-actions { opacity: 0; transform: translateY(10px); transition: all 0.4s ease; }
.calc-result-actions.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  .calc-before-after { flex-direction: column; gap: 8px; }
  .calc-ba-arrow { transform: rotate(90deg); }
  .calc-big-save-amount { font-size: 1.4rem; }
  .calc-big-save-amount--year { font-size: 1.8rem; }
  .calc-big-save-row { gap: 16px; }
}


/* ========== CONTACT V2: TABBED ========== */
.v2-ct-tabs {
  display: flex; gap: 6px;
  background: #f4f4f5; border-radius: 14px;
  padding: 5px; margin-bottom: 28px;
}
.v2-ct-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; border: none; background: transparent;
  border-radius: 10px; font-size: 0.82rem; font-weight: 600;
  color: #71717a; cursor: pointer; transition: all 0.25s ease;
  white-space: nowrap;
}
.v2-ct-tab i { font-size: 0.78rem; }
.v2-ct-tab:hover { color: #3f3f46; }
.v2-ct-tab--active {
  background: #fff; color: #A137BF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Panels */
.v2-ct-panel {
  display: none;
  animation: ctPanelIn 0.35s ease;
}
.v2-ct-panel--active { display: block; }
@keyframes ctPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Panel head */
.v2-ct-panel-head {
  display: flex; align-items: flex-start; gap: 16px;
  text-align: left; margin-bottom: 24px;
  padding: 20px; background: #fafafa; border-radius: 16px;
}
.v2-ct-panel-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.v2-ct-panel-icon--purple { background: #F3E5F8; color: #A137BF; }
.v2-ct-panel-icon--blue { background: #dbeafe; color: #2563eb; }
.v2-ct-panel-icon--green { background: #dcfce7; color: #16a34a; }
.v2-ct-panel-title {
  font-size: 1.05rem; font-weight: 700; color: #18181b;
  margin-bottom: 4px;
}
.v2-ct-panel-desc {
  font-size: 0.85rem; color: #71717a; line-height: 1.5;
}

/* Form */
.v2-ct-form { text-align: left; }
.v2-ct-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 14px;
}
.v2-ct-field label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: #52525b; margin-bottom: 6px; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.v2-ct-opt { color: #a1a1aa; font-weight: 400; text-transform: none; letter-spacing: 0; }
.v2-ct-field input {
  width: 100%; padding: 13px 16px; border: 1.5px solid #e5e5ea;
  border-radius: 12px; font-size: 0.92rem; color: #18181b;
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.v2-ct-field input:focus {
  outline: none; border-color: #A137BF;
  box-shadow: 0 0 0 3px rgba(161,55,191,0.1);
}
.v2-ct-field input::placeholder { color: #c4c4c8; }

.v2-ct-submit {
  width: 100%; padding: 16px 24px; border: none; border-radius: 14px;
  font-size: 1rem; font-weight: 700; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px; transition: all 0.2s;
  font-family: inherit;
}
.v2-ct-submit--purple {
  background: linear-gradient(135deg, #A137BF, #6D3399);
  box-shadow: 0 8px 30px rgba(161,55,191,0.3);
}
.v2-ct-submit--purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(161,55,191,0.4);
}
.v2-ct-trust {
  text-align: center; margin-top: 14px;
  font-size: 0.75rem; color: #a1a1aa;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.v2-ct-trust i { color: #16a34a; font-size: 0.7rem; }

/* Quick links (panels 1 & 2) */
.v2-ct-quick-links {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.v2-ct-quick {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border: 1.5px solid #e5e5ea;
  border-radius: 14px; text-decoration: none; color: inherit;
  transition: all 0.2s;
}
.v2-ct-quick:hover {
  border-color: #A137BF; background: #faf8ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(161,55,191,0.08);
}
.v2-ct-quick-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  background: #F3E5F8; color: #A137BF;
}
.v2-ct-quick-icon--green { background: #dcfce7; color: #25d366; }
.v2-ct-quick-icon--purple { background: #F3E5F8; color: #A137BF; }
.v2-ct-quick-icon--dark { background: #18181b; color: #fff; }
.v2-ct-quick-text { flex: 1; text-align: left; }
.v2-ct-quick-label { font-size: 0.88rem; font-weight: 700; color: #18181b; }
.v2-ct-quick-val { font-size: 0.78rem; color: #71717a; margin-top: 2px; }
.v2-ct-quick-arrow { color: #c4c4c8; transition: color 0.2s, transform 0.2s; }
.v2-ct-quick:hover .v2-ct-quick-arrow { color: #A137BF; transform: translateX(3px); }

/* FAQ hint */
.v2-ct-faq-hint {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #fffbeb; border-radius: 10px;
  font-size: 0.8rem; color: #92400e;
}
.v2-ct-faq-hint i { color: #f59e0b; }
.v2-ct-faq-hint a { color: #A137BF; font-weight: 600; text-decoration: none; }
.v2-ct-faq-hint a:hover { text-decoration: underline; }

/* Success state */
.v2-ct-success {
  text-align: center; padding: 32px 20px;
}
.v2-ct-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #dcfce7; color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.v2-ct-success h4 { font-size: 1.15rem; font-weight: 800; color: #18181b; margin: 0 0 8px; }
.v2-ct-success p { font-size: 0.88rem; color: #71717a; margin: 0; }

/* Mobile */
@media (max-width: 768px) {
  .v2-ct-tabs { flex-direction: column; gap: 4px; }
  .v2-ct-tab { justify-content: flex-start; padding: 10px 14px; }
  .v2-ct-form-row { grid-template-columns: 1fr; }
  .v2-ct-panel-head { flex-direction: column; gap: 12px; }
}


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

/* ========== COMPARE V3: Row-by-row ========== */
.v2-cmp3-grid {
  max-width: 900px;
  margin: 0 auto 32px;
}

/* Header row */
.v2-cmp3-header-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.v2-cmp3-header-spacer {}
.v2-cmp3-header-col {
  text-align: center;
  padding: 14px 16px;
  border-radius: 14px 14px 0 0;
}
.v2-cmp3-header-col--other {
  background: #f9f9fb;
}
.v2-cmp3-header-col--clubr {
  background: linear-gradient(135deg, #A137BF, #6D3399);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.v2-cmp3-header-col--clubr i {
  color: #fbbf24;
  font-size: 0.75rem;
}
.v2-cmp3-header-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.v2-cmp3-header-col--other .v2-cmp3-header-label { color: #71717a; }
.v2-cmp3-header-col--clubr .v2-cmp3-header-label { color: #fff; }

/* Comparison rows */
.v2-cmp3-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 10px;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.v2-cmp3-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Feature label (left column) */
.v2-cmp3-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
}
.v2-cmp3-feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f5f0ff;
  color: #A137BF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.v2-cmp3-feat-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #3f3f46;
}

/* Cells */
.v2-cmp3-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  transition: all 0.25s;
}
.v2-cmp3-cell--bad {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.v2-cmp3-cell--bad:hover {
  background: #fee2e2;
}
.v2-cmp3-cell--good {
  background: linear-gradient(135deg, rgba(161,55,191,0.06), rgba(161,55,191,0.1));
  border: 1px solid rgba(161,55,191,0.12);
}
.v2-cmp3-cell--good:hover {
  background: linear-gradient(135deg, rgba(161,55,191,0.1), rgba(161,55,191,0.15));
  transform: translateX(3px);
}

.v2-cmp3-cell-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}
.v2-cmp3-cell--bad .v2-cmp3-cell-text { color: #991b1b; }
.v2-cmp3-cell--good .v2-cmp3-cell-text { color: #4F2273; }

.v2-cmp3-cell-badge {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.v2-cmp3-cell-badge--bad {
  background: #dc2626;
  color: #fff;
}
.v2-cmp3-cell-badge--good {
  background: #A137BF;
  color: #fff;
}

/* Score row */
.v2-cmp3-score-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1.5px solid #ebebef;
}
.v2-cmp3-score-spacer {}
.v2-cmp3-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px;
  border-radius: 12px;
  font-variant-numeric: tabular-nums;
}
.v2-cmp3-score--bad {
  background: #fef2f2;
}
.v2-cmp3-score--good {
  background: linear-gradient(135deg, #A137BF, #6D3399);
}
.v2-cmp3-score-num {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.v2-cmp3-score--bad .v2-cmp3-score-num { color: #dc2626; }
.v2-cmp3-score--good .v2-cmp3-score-num { color: #fff; }
.v2-cmp3-score-den {
  font-size: 1rem;
  font-weight: 600;
}
.v2-cmp3-score--bad .v2-cmp3-score-den { color: #fca5a5; }
.v2-cmp3-score--good .v2-cmp3-score-den { color: rgba(255,255,255,0.5); }
.v2-cmp3-trophy {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-left: 8px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.v2-cmp3-trophy.visible {
  opacity: 1;
  transform: scale(1);
}

/* Mobile */
@media (max-width: 768px) {
  .v2-cmp3-header-row,
  .v2-cmp3-row,
  .v2-cmp3-score-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .v2-cmp3-header-spacer,
  .v2-cmp3-feature,
  .v2-cmp3-score-spacer {
    display: none;
  }
  .v2-cmp3-cell { padding: 12px 14px; }
  .v2-cmp3-cell-text { font-size: 0.78rem; }
  .v2-cmp3-row { margin-bottom: 8px; }

  /* Show feature name as a full-width row on mobile */
  .v2-cmp3-row {
    grid-template-columns: 1fr 1fr;
    position: relative;
  }
  .v2-cmp3-row::before {
    content: attr(data-label);
    display: block;
    grid-column: 1 / -1;
    font-size: 0.72rem;
    font-weight: 700;
    color: #A137BF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 0 4px;
  }
}


/* ========== COMPARE V4: Toggle Switch ========== */
.v2-cmp4-toggle-wrap {
  display: flex; justify-content: center; margin-bottom: 40px;
}
.v2-cmp4-toggle {
  display: flex; position: relative;
  background: #f4f4f5; border-radius: 16px;
  padding: 5px; cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06), inset 0 1px 2px rgba(0,0,0,0.04);
}
.v2-cmp4-toggle-bg {
  position: absolute; top: 5px; left: 5px;
  width: calc(50% - 5px); height: calc(100% - 10px);
  border-radius: 12px;
  background: #18181b;
  transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.v2-cmp4-toggle.clubr .v2-cmp4-toggle-bg {
  left: calc(50%);
  background: linear-gradient(135deg, #A137BF, #6D3399);
  box-shadow: 0 4px 20px rgba(161,55,191,0.35);
}
.v2-cmp4-toggle-opt {
  position: relative; z-index: 1;
  padding: 14px 32px;
  font-size: 0.88rem; font-weight: 700;
  color: #71717a;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.3s;
  user-select: none;
  white-space: nowrap;
}
.v2-cmp4-toggle-opt i { font-size: 0.78rem; }
.v2-cmp4-toggle-opt--active { color: #fff; }

/* Cards grid */
.v2-cmp4-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 28px;
}

.v2-cmp4-card {
  background: #fff;
  border: 1.5px solid #fecaca;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}
/* Stagger the animation */
.v2-cmp4-card[data-idx="0"] { transition-delay: 0s; }
.v2-cmp4-card[data-idx="1"] { transition-delay: 0.06s; }
.v2-cmp4-card[data-idx="2"] { transition-delay: 0.12s; }
.v2-cmp4-card[data-idx="3"] { transition-delay: 0.18s; }
.v2-cmp4-card[data-idx="4"] { transition-delay: 0.24s; }
.v2-cmp4-card[data-idx="5"] { transition-delay: 0.3s; }

/* Bad state (default) */
.v2-cmp4-card {
  background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
  border-color: #fecaca;
}

/* Good state */
.v2-cmp4-cards.clubr .v2-cmp4-card {
  background: linear-gradient(180deg, #faf8ff 0%, #F3E5F8 100%);
  border-color: rgba(161,55,191,0.2);
  box-shadow: 0 8px 30px rgba(161,55,191,0.08);
  transform: translateY(-2px);
}

.v2-cmp4-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 14px;
  transition: all 0.5s;
  background: #fef2f2;
  color: #dc2626;
}
.v2-cmp4-cards.clubr .v2-cmp4-card-icon {
  background: linear-gradient(135deg, #A137BF, #6D3399);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(161,55,191,0.25);
}

.v2-cmp4-card-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 8px;
  transition: color 0.4s;
  color: #a1a1aa;
}
.v2-cmp4-cards.clubr .v2-cmp4-card-label { color: #A137BF; }

.v2-cmp4-card-val {
  position: relative;
  height: 42px;
  margin-bottom: 14px;
}
.v2-cmp4-val-bad,
.v2-cmp4-val-good {
  position: absolute; left: 0; right: 0;
  font-size: 0.88rem; font-weight: 600;
  line-height: 1.35;
  transition: all 0.4s ease;
}
.v2-cmp4-val-bad {
  color: #991b1b;
  opacity: 1; transform: translateY(0);
}
.v2-cmp4-val-good {
  color: #4F2273;
  opacity: 0; transform: translateY(10px);
}
.v2-cmp4-cards.clubr .v2-cmp4-val-bad {
  opacity: 0; transform: translateY(-10px);
}
.v2-cmp4-cards.clubr .v2-cmp4-val-good {
  opacity: 1; transform: translateY(0);
}

/* Status badge */
.v2-cmp4-card-status { position: relative; height: 30px; }
.v2-cmp4-status-bad,
.v2-cmp4-status-good {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.v2-cmp4-status-bad {
  background: #dc2626; color: #fff;
  opacity: 1; transform: translateX(-50%) scale(1);
}
.v2-cmp4-status-good {
  background: #A137BF; color: #fff;
  opacity: 0; transform: translateX(-50%) scale(0.5);
}
.v2-cmp4-cards.clubr .v2-cmp4-status-bad {
  opacity: 0; transform: translateX(-50%) scale(0.5);
}
.v2-cmp4-cards.clubr .v2-cmp4-status-good {
  opacity: 1; transform: translateX(-50%) scale(1);
}

/* Verdict */
.v2-cmp4-verdict {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
  position: relative;
  height: 70px;
}
.v2-cmp4-verdict-bad,
.v2-cmp4-verdict-good {
  position: absolute; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 18px 24px;
  border-radius: 14px;
  transition: all 0.4s ease;
}
.v2-cmp4-verdict-bad {
  background: #fef2f2; border: 1.5px solid #fecaca;
  opacity: 1;
}
.v2-cmp4-verdict-good {
  background: linear-gradient(135deg, #A137BF, #6D3399);
  border: 1.5px solid transparent;
  opacity: 0; transform: scale(0.95);
}
.v2-cmp4-verdict.clubr .v2-cmp4-verdict-bad {
  opacity: 0; transform: scale(0.95);
}
.v2-cmp4-verdict.clubr .v2-cmp4-verdict-good {
  opacity: 1; transform: scale(1);
}

.v2-cmp4-verdict-score {
  font-size: 1.6rem; font-weight: 900;
  display: flex; align-items: center; gap: 6px;
}
.v2-cmp4-verdict-bad .v2-cmp4-verdict-score { color: #dc2626; }
.v2-cmp4-verdict-good .v2-cmp4-verdict-score { color: #fbbf24; }
.v2-cmp4-verdict-good .v2-cmp4-verdict-score i { font-size: 1.2rem; }

.v2-cmp4-verdict-text {
  font-size: 0.95rem; font-weight: 600;
}
.v2-cmp4-verdict-bad .v2-cmp4-verdict-text { color: #991b1b; }
.v2-cmp4-verdict-good .v2-cmp4-verdict-text { color: #fff; }

/* Auto-switch pulse on toggle */
@keyframes cmp4Pulse {
  0% { box-shadow: 0 0 0 0 rgba(161,55,191,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(161,55,191,0); }
  100% { box-shadow: 0 0 0 0 rgba(161,55,191,0); }
}
.v2-cmp4-toggle.pulse { animation: cmp4Pulse 0.8s ease; }

/* Mobile */
@media (max-width: 768px) {
  .v2-cmp4-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .v2-cmp4-toggle-opt { padding: 12px 20px; font-size: 0.82rem; }
  .v2-cmp4-card { padding: 18px 14px; }
  .v2-cmp4-card-icon { width: 40px; height: 40px; font-size: 0.95rem; }
  .v2-cmp4-card-val { height: 38px; }
  .v2-cmp4-val-bad, .v2-cmp4-val-good { font-size: 0.8rem; }
  .v2-cmp4-verdict { height: 80px; }
  .v2-cmp4-verdict-bad, .v2-cmp4-verdict-good {
    flex-direction: column; gap: 4px; padding: 14px;
  }
}
@media (max-width: 480px) {
  .v2-cmp4-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
}


/* ========== COMPARE V5: Killer Table ========== */
.v2-tbl-wrap {
  max-width: 880px;
  margin: 0 auto 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid #e5e5ea;
  background: #fff;
  box-shadow: 0 12px 50px rgba(0,0,0,0.06);
}
.v2-tbl {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Header */
.v2-tbl thead tr { background: #fafafa; }
.v2-tbl-feat-th { width: 35%; }
.v2-tbl-other-th, .v2-tbl-clubr-th { width: 32.5%; }

.v2-tbl-th-inner {
  padding: 14px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
}
.v2-tbl-th-inner--other {
  color: #991b1b;
  background: #fef2f2;
  border-radius: 16px 16px 0 0;
  margin: -1px 0 -1px -1px;
}
.v2-tbl-th-inner--clubr {
  background: linear-gradient(135deg, #A137BF, #6D3399);
  color: #fff;
  border-radius: 16px 16px 0 0;
  margin: -1px;
  padding: 14px 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}
.v2-tbl-th-inner--clubr i {
  color: #fbbf24;
  font-size: 0.85rem;
}
.v2-tbl-recommended {
  font-size: 0.6rem;
  padding: 2px 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Rows */
.v2-tbl tbody tr {
  border-top: 1px solid #f3f3f3;
  transition: background 0.2s;
}
.v2-tbl tbody tr:nth-child(even) {
  background: #fafafa;
}
.v2-tbl tbody tr:hover {
  background: #f5f0ff;
}

/* Feature column */
.v2-tbl-feat {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2-tbl-feat > i {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #f5f0ff;
  color: #A137BF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.v2-tbl-feat-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #18181b;
  line-height: 1.15;
}
.v2-tbl-feat-desc {
  font-size: 0.68rem;
  color: #a1a1aa;
  margin-top: 1px;
}

/* Data cells */
.v2-tbl-cell {
  padding: 12px 10px;
  text-align: center;
  vertical-align: middle;
}
.v2-tbl-cell span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.25;
}
.v2-tbl-cell--bad span { color: #991b1b; text-decoration: line-through; text-decoration-color: rgba(153,27,27,0.3); }
.v2-tbl-cell--good span { color: #4F2273; font-weight: 700; }

/* ClubR column highlight */
.v2-tbl-cell--good {
  background: rgba(161,55,191,0.03);
  position: relative;
}
.v2-tbl tbody tr:hover .v2-tbl-cell--good {
  background: rgba(161,55,191,0.06);
}

/* Badges */
.v2-tbl-badge {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
}
.v2-tbl-badge--bad {
  background: #fef2f2;
  color: #dc2626;
  border: 1.5px solid #fecaca;
}
.v2-tbl-badge--good {
  background: linear-gradient(135deg, #A137BF, #6D3399);
  color: #fff;
  border: none;
  box-shadow: 0 3px 10px rgba(161,55,191,0.25);
}

/* Left border for ClubR column */
.v2-tbl-cell--good::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(161,55,191,0.1);
}

/* Score row */
.v2-tbl-score-row {
  border-top: 2px solid #e5e5ea;
}
.v2-tbl-score-row td {
  border-top: 2px solid #e5e5ea;
}
.v2-tbl-score-label {
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  color: #3f3f46 !important;
  padding: 14px 16px !important;
}
.v2-tbl-score {
  text-align: center;
  padding: 14px 10px;
  vertical-align: middle;
}
.v2-tbl-score--bad {
  background: #fef2f2;
}
.v2-tbl-score--good {
  background: linear-gradient(135deg, rgba(161,55,191,0.1), rgba(161,55,191,0.18));
}
/* Score: number + denominator inline */
.v2-tbl-score-inline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  white-space: nowrap;
}
.v2-tbl-score-num {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}
.v2-tbl-score-den {
  font-size: 0.85rem;
  font-weight: 700;
}
.v2-tbl-score--bad .v2-tbl-score-num { color: #dc2626; }
.v2-tbl-score--good .v2-tbl-score-num { color: #A137BF; }
.v2-tbl-score--bad .v2-tbl-score-den { color: #fca5a5; }
.v2-tbl-score--good .v2-tbl-score-den { color: rgba(161,55,191,0.45); }
/* Progress bar under score */
.v2-score-bar {
  width: 70%;
  max-width: 80px;
  height: 4px;
  border-radius: 2px;
  margin: 6px auto 0;
  background: #f0f0f0;
  overflow: hidden;
}
.v2-score-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease 0.5s;
}
.v2-tbl-score--bad .v2-score-bar-fill {
  width: 0%;
  background: #fca5a5;
}
.v2-tbl-score--good .v2-score-bar-fill {
  width: 100%;
  background: linear-gradient(90deg, #A137BF, #C477D9);
}
/* Trophy next to score */
.v2-tbl-trophy {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-left: 4px;
  filter: drop-shadow(0 1px 3px rgba(251,191,36,0.35));
}
/* Score label icon */
.v2-tbl-score-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #f0fdf4;
  color: #22c55e;
  font-size: 0.7rem;
  margin-right: 8px;
  vertical-align: middle;
}

/* Bad column subtle bg */
.v2-tbl-cell--bad {
  background: rgba(239,68,68,0.02);
}
.v2-tbl tbody tr:nth-child(even) .v2-tbl-cell--bad {
  background: rgba(239,68,68,0.04);
}


/* ── Compare Table: TOP-level Enhancements ── */

/* Row stagger entrance */
.v2-tbl tbody tr {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s;
}
.v2-tbl tbody tr.v2-row-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Score row entrance */
.v2-tbl-score-row {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.v2-tbl-score-row.v2-row-visible {
  opacity: 1;
}

/* Subtle pulsing glow on ClubR header */
@keyframes clubrGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(161,55,191,0); }
  50% { box-shadow: 0 0 20px 4px rgba(161,55,191,0.12); }
}
.v2-tbl-th-inner--clubr {
  animation: clubrGlow 3s ease-in-out infinite;
}

/* Badge micro-interactions */
.v2-tbl-badge {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v2-tbl tbody tr:hover .v2-tbl-badge--good {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(161,55,191,0.35);
}
.v2-tbl tbody tr:hover .v2-tbl-badge--bad {
  transform: scale(1.1);
}

/* Row lift on hover */
.v2-tbl tbody tr:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  z-index: 1;
  position: relative;
}

/* Score number animated scale */
@keyframes scorePopIn {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.v2-tbl-score-num.v2-score-animated {
  animation: scorePopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Trophy bounce */
@keyframes trophyBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(-8deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(-2px) rotate(5deg); }
}
.v2-tbl-trophy.v2-trophy-animated {
  display: inline-block;
  animation: trophyBounce 0.8s ease 0.6s both;
}

/* Good cell text shimmer */
@keyframes textShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.v2-tbl-cell--good span {
  background: linear-gradient(90deg, #4F2273 0%, #8E35AC 45%, #DDB8ED 50%, #8E35AC 55%, #4F2273 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-tbl-cell--good:hover span {
  animation: textShimmer 2s linear;
}

/* Bottom CTA under table */
.v2-tbl-bottom-cta {
  text-align: center;
  margin: -6px auto 16px;
  max-width: 880px;
}
.v2-tbl-bottom-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #A137BF, #6D3399);
  color: #fff;
  padding: 14px 36px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(161,55,191,0.3);
}
.v2-tbl-bottom-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(161,55,191,0.4);
}
.v2-tbl-bottom-cta a i {
  transition: transform 0.2s;
}
.v2-tbl-bottom-cta a:hover i {
  transform: translateX(3px);
}
.v2-tbl-bottom-subtext {
  margin-top: 10px;
  font-size: 0.72rem;
  color: #a1a1aa;
}
.v2-tbl-bottom-subtext i {
  color: #22c55e;
  margin-right: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .v2-tbl-wrap { border-radius: 16px; overflow-x: auto; }
  .v2-tbl { min-width: 620px; }
  .v2-tbl-feat { padding: 10px 10px; gap: 8px; }
  .v2-tbl-feat > i { width: 32px; height: 32px; font-size: 0.75rem; }
  .v2-tbl-feat-name { font-size: 0.82rem; }
  .v2-tbl-cell { padding: 10px 8px; }
  .v2-tbl-cell span { font-size: 0.75rem; }
}



/* =====================================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   Added: auto-generated responsive layer
   Rules: Only media queries — zero desktop changes
   ===================================================================== */

/* ─── GLOBAL MOBILE FIXES ─── */
@media (max-width: 768px) {
  /* Prevent ANY horizontal overflow */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  /* All images responsive */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Container padding */
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Section spacing reduction */
  .section, section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Section headers — smaller on mobile */
  .section-header h2,
  .v2-compare-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    line-height: 1.15 !important;
  }
  .section-header p,
  .v2-compare-header p {
    font-size: 0.9rem !important;
  }

  /* Min tap target for all buttons and links */
  a, button, [onclick] {
    min-height: 44px;
    min-width: 44px;
  }
  /* Exception for inline text links */
  p a, span a, li a, td a {
    min-height: auto;
    min-width: auto;
  }
}

/* ─── NAVBAR MOBILE POLISH ─── */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 0;
  }
  .navbar.scrolled {
    padding: 8px 0;
  }
  .navbar-logo img {
    height: 28px;
  }
  .mobile-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ─── HERO SECTION ─── */
@media (max-width: 768px) {
  .v2-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .v2-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 32px;
    text-align: center;
    padding: 0 16px;
  }
  .v2-hero-content {
    align-items: center;
  }
  .v2-hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    line-height: 1.08 !important;
  }
  .v2-hero-subtitle {
    font-size: 0.95rem !important;
    max-width: 90%;
    margin: 0 auto;
  }
  .v2-hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .v2-hero-ctas .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .v2-hero-proof {
    justify-content: center;
  }
  /* Aurora orbs — smaller on mobile */
  .v2-hero-aurora-orb:nth-child(1) { width: 300px; height: 300px; }
  .v2-hero-aurora-orb:nth-child(2) { width: 220px; height: 220px; }
  .v2-hero-aurora-orb:nth-child(3) { width: 180px; height: 180px; }
  .v2-hero-aurora-orb:nth-child(4) { width: 140px; height: 140px; }
  /* Hero visual */
  .v2-hero-visual {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .v2-hero {
    padding: 90px 0 48px;
  }
  .v2-hero-title {
    font-size: 1.75rem !important;
  }
  .v2-hero-subtitle {
    font-size: 0.88rem !important;
  }
  .v2-hero-badge {
    font-size: 0.7rem !important;
    padding: 6px 14px !important;
  }
}

/* ─── MARQUEE ─── */
@media (max-width: 768px) {
  .v2-marquee-section {
    padding: 16px 0 !important;
  }
  .v2-marquee-track {
    font-size: 0.75rem;
  }
}

/* ─── VIDEO DEMO SECTION ─── */
@media (max-width: 768px) {
  .v2-demo-section {
    padding: 40px 0 !important;
  }
  .v2-demo-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .v2-demo-video-wrap {
    max-width: 100%;
    border-radius: 16px;
  }
  .v2-demo-img-sm {
    width: 200px !important;
    height: 200px !important;
  }
  .v2-demo-img-xs {
    width: 150px !important;
    height: 150px !important;
  }
}

/* ─── ECOSISTEMA SECTION ─── */
@media (max-width: 768px) {
  .v2-ecosistema-split {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .v2-eco-phone-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ─── FEATURES / BIGLIETTERIA — Showcase ─── */
@media (max-width: 768px) {
  .v2-showcase {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .v2-showcase-tabs {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 4px;
  }
  .v2-showcase-tab {
    flex-shrink: 0;
    min-width: fit-content;
    padding: 10px 16px;
  }
  .v2-showcase-visual {
    max-width: 100%;
  }

  /* Feature screen cards */
  .v2-screen-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .v2-promo-stats-strip {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
  }
}

/* ─── PERSONALIZZAZIONE ─── */
@media (max-width: 768px) {
  .v2-custom-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .v2-custom-features {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .v2-custom-phone-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .v2-custom-features {
    grid-template-columns: 1fr !important;
  }
}

/* ─── TRUST SECTION ─── */
@media (max-width: 768px) {
  .v2-trust-cards {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}

/* ─── MARKETING / GROWTH SECTION ─── */
@media (max-width: 768px) {
  .v2-mkt-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .v2-mkt-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .v2-clubrchat-video {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    aspect-ratio: 1/1;
  }
  .v2-crc-features-grid {
    grid-template-columns: 1fr !important;
  }
  .v2-clubrchat-icon {
    width: 100% !important;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .v2-mkt-metrics {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }
  .v2-mkt-metric-val {
    font-size: 1.3rem !important;
  }
}

/* ─── AI SECTION ─── */
@media (max-width: 768px) {
  .v2-ai {
    padding: 48px 0 !important;
  }
  .v2-ai-dash-top {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .v2-ai-panel {
    padding: 16px;
    border-radius: 14px;
  }
  .v2-ai-rank-list {
    gap: 8px;
  }
  .v2-ai-chart-container {
    padding: 12px;
  }
  .v2-ai-stats-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .v2-ai-stat-item {
    min-width: 50px;
  }
}

/* ─── COMPARISON TABLE ─── */
@media (max-width: 768px) {
  .v2-compare {
    padding: 48px 0 !important;
  }
  .v2-compare-header {
    margin-bottom: 28px;
  }
  .v2-compare-stats {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .v2-compare-stat {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  /* Table already has overflow-x: auto and min-width: 620px — OK */
  .v2-tbl-wrap {
    margin-left: -8px;
    margin-right: -8px;
    border-radius: 14px;
  }
  /* CTA below table */
  .v2-tbl-bottom-cta a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 24px;
  }
  .v2-tbl-bottom-subtext {
    font-size: 0.65rem;
  }
  /* Opportunity calculator card */
  .v2-cmp-opportunity {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  .v2-cmp-opp-cta {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  /* Old compare layouts (v2/v3/v4) if still visible */
  .v2-cmp-vs {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .v2-cmp-vs-divider {
    display: none;
  }
  .v2-cmp3-header-row,
  .v2-cmp3-row {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
}

/* ─── REASONS / VANTAGGI ─── */
@media (max-width: 768px) {
  .v2-reasons-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .v2-reason-card {
    padding: 16px;
  }
  .v2-reason-card-head {
    gap: 12px;
  }
  .v2-reason-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  .v2-reason-text h3 {
    font-size: 0.9rem;
  }
  .v2-reason-summary {
    font-size: 0.78rem;
  }
}

/* ─── STATS SECTION ─── */
@media (max-width: 768px) {
  .v2-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .v2-stat-card {
    padding: 20px 14px;
  }
}

@media (max-width: 480px) {
  .v2-stats-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ─── CLUBS SECTION ─── */
@media (max-width: 768px) {
  .v2-clubs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .v2-club-card {
    padding: 12px;
  }
}

/* ─── TESTIMONIALS CAROUSEL ─── */
@media (max-width: 768px) {
  .v2-testimonials-section {
    padding: 40px 0 !important;
  }
  .v2-testi-track {
    gap: 12px;
  }
  .v2-testi-card {
    min-width: 260px;
    padding: 18px;
  }
  .v2-testi-card p {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .v2-testi-card {
    min-width: 230px;
    padding: 14px;
  }
}

/* ─── FAQ SECTION ─── */
@media (max-width: 768px) {
  .v2-faq-section {
    padding: 48px 0 !important;
  }
  .v2-faq-search {
    padding: 12px 16px !important;
    font-size: 0.88rem !important;
  }
  .v2-faq-tabs {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }
  .v2-faq-tab {
    padding: 8px 16px;
    font-size: 0.78rem;
    min-height: 44px;
  }
  .v2-faq-item {
    padding: 14px 16px;
  }
  .v2-faq-question {
    font-size: 0.88rem;
  }
  .v2-faq-answer {
    font-size: 0.82rem;
  }
}

/* ─── CONTACT SECTION ─── */
@media (max-width: 768px) {
  .v2-contact {
    padding: 48px 0 !important;
  }
  .v2-ct-tabs {
    flex-direction: column;
    gap: 6px;
  }
  .v2-ct-tab {
    width: 100%;
    text-align: center;
    min-height: 44px;
    padding: 12px 16px;
    font-size: 0.82rem;
  }
  .v2-ct-form-row {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .v2-ct-input {
    width: 100% !important;
    min-height: 44px;
    font-size: 0.9rem;
  }
  .v2-ct-textarea {
    width: 100% !important;
    min-height: 100px;
  }
  .v2-ct-submit {
    width: 100%;
    min-height: 48px;
    font-size: 0.9rem;
  }
  .v2-ct-quick-links {
    flex-direction: column;
    gap: 10px;
  }
  .v2-ct-quick-link {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
}

/* ─── CALCULATOR MODAL ─── */
@media (max-width: 768px) {
  .v2-calc-modal-box {
    width: 95vw !important;
    max-width: 95vw !important;
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px !important;
    border-radius: 18px !important;
    margin: 16px;
  }
  .v2-calc-slider-row {
    flex-direction: column;
    gap: 12px;
  }
  .v2-calc-result-cards {
    flex-direction: column;
    gap: 12px;
  }
  .v2-calc-result-card {
    width: 100%;
  }
  .v2-calc-savings-box {
    padding: 16px;
  }
  .v2-calc-ideas-grid {
    grid-template-columns: 1fr !important;
  }
  .v2-calc-close {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ─── FEATURE MODALS ─── */
@media (max-width: 768px) {
  .v2-modal-box {
    width: 95vw !important;
    max-width: 95vw !important;
    max-height: 85vh;
    overflow-y: auto;
    padding: 24px 18px !important;
    border-radius: 18px !important;
    margin: 0 auto;
  }
  .v2-modal-box h3 {
    font-size: 1.1rem !important;
  }
  .v2-modal-list li {
    font-size: 0.85rem;
  }
  .v2-modal-close {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ─── FOOTER ─── */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .v2-footer-certs {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ─── SCROLL INDICATOR ─── */
@media (max-width: 768px) {
  .v2-hero-scroll-indicator {
    display: none;
  }
}

/* ─── SECTION DIVIDERS ─── */
@media (max-width: 768px) {
  .v2-section-divider,
  .v2-section-divider-to-light,
  .v2-section-divider-to-dark {
    height: 40px !important;
  }
}

/* ─── CERTIFICATION BADGES ─── */
@media (max-width: 768px) {
  .v2-certs-row {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .v2-cert-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
}

/* ────────────────────────────────────────────
   480px — SMALL PHONES
   ──────────────────────────────────────────── */

@media (max-width: 480px) {
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .section, section {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  .section-header h2,
  .v2-compare-header h2 {
    font-size: clamp(1.3rem, 7vw, 1.8rem) !important;
  }

  .section-label,
  .v2-compare-label {
    font-size: 0.68rem !important;
    padding: 5px 12px !important;
  }

  /* FAQ tabs scroll horizontal */
  .v2-faq-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
  .v2-faq-tab {
    flex-shrink: 0;
  }

  /* Contact tabs stack */
  .v2-ct-tab {
    font-size: 0.78rem;
    padding: 10px 12px;
  }

  /* Compare stats badges */
  .v2-compare-stat {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  /* Reasons grid */
  .v2-reason-card {
    padding: 12px;
  }
  .v2-reason-icon {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  /* Clubs grid single column */
  .v2-clubs-grid {
    grid-template-columns: 1fr !important;
  }

  /* Marketing metrics */
  .v2-mkt-metric {
    padding: 12px 8px;
  }

  /* CTA buttons full width */
  .v2-tbl-bottom-cta a,
  .v2-cmp-opp-cta {
    font-size: 0.85rem;
  }
}

/* ─── LANDSCAPE PHONES ─── */
@media (max-width: 768px) and (orientation: landscape) {
  .v2-hero {
    min-height: auto;
    padding: 80px 0 40px;
  }
  .v2-hero-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px;
    text-align: left;
  }
  .v2-hero-content {
    align-items: flex-start;
  }

}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .v2-tbl tbody tr {
    opacity: 1 !important;
    transform: none !important;
    transition: background 0.2s !important;
  }
  .v2-tbl-score-row {
    opacity: 1 !important;
  }
  .v2-tbl-th-inner--clubr {
    animation: none !important;
  }
  .v2-hero-aurora-orb,
  .v2-hero::before {
    animation: none !important;
  }
}


/* ── Print Stylesheet ── */
@media print {
  .navbar, .mobile-menu, .mobile-toggle,
  .v2-hero-aurora, .v2-hero-stars, .v2-hero-bg-grid,
  .v2-marquee-section, .v2-hero-scroll-indicator,
  .v2-tbl-bottom-cta, .v2-cmp-opportunity,
  .v2-section-divider, .v2-section-divider-to-light, .v2-section-divider-to-dark,
  .skip-to-content, footer, .v2-calc-overlay {
    display: none !important;
  }
  body {
    color: #000 !important;
    background: #fff !important;
    font-size: 12pt;
  }
  * {
    box-shadow: none !important;
    text-shadow: none !important;
    animation: none !important;
    transition: none !important;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: "";
  }
  .v2-tbl-wrap {
    overflow: visible !important;
  }
  .v2-tbl {
    min-width: 0 !important;
  }
  img {
    max-width: 100% !important;
  }
}


/* ── WhatsApp Group Modal ── */
.v2-wa-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.v2-wa-modal-overlay.active {
  display: flex;
}
.v2-wa-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: cookieSlideUp 0.3s ease;
}
.v2-wa-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px 8px;
}
.v2-wa-modal-close:hover { color: var(--text); }
.v2-wa-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(37,211,102,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #25d366;
}
.v2-wa-modal h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.v2-wa-modal p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── button styled as .v2-ct-quick ── */
button.v2-ct-quick {
  background: none;
  border: 1px solid var(--border-light);
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
button.v2-ct-quick:hover {
  border-color: var(--primary-light);
  background: rgba(161,55,191,0.03);
}

/* ── Mobile: hide dividers ── */
@media (max-width: 768px) {
  .v2-section-divider-to-dark,
  .v2-section-divider-to-light {
    display: none !important;
  }
}

/* ── Mobile: Feature Showcase redesign ── */
@media (max-width: 600px) {
  .v2-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .v2-showcase-device {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .v2-showcase-phone {
    width: 240px;
  }

  .v2-showcase-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .v2-showcase-tab {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    gap: 8px;
    border-radius: var(--radius-lg);
    min-height: auto;
  }

  .v2-showcase-tab-icon {
    display: flex;
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .v2-showcase-tab-text h4 {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .v2-showcase-tab-text p {
    display: none;
  }

  .v2-showcase-tab-arrow {
    display: none;
  }
}

/* ─── FIX: Contact section mobile horizontal padding ─── */
@media (max-width: 768px) {
  .v2-contact {
    padding: 48px 20px !important;
  }
}

/* ─── FIX: Logo vertically centered in navbar on mobile ─── */
.navbar-logo {
  display: flex;
  align-items: center;
}

/* ─── FIX: Hero more top spacing on mobile ─── */
@media (max-width: 768px) {
  .v2-hero {
    padding-top: 120px !important;
  }
}

/* ─── FIX: YouTube Short aspect ratio on mobile ─── */
@media (max-width: 768px) {
  .v2-demo-player {
    aspect-ratio: 9/16;
    max-height: 70vh;
    margin: 0 auto;
    max-width: 350px;
  }
}

</style>

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "Come funziona la biglietteria ClubR?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "ClubR offre una piattaforma completa per la gestione della biglietteria dei club, con vendita online, gestione liste e tavoli in tempo reale."
      }
    },
    {
      "@type": "Question",
      "name": "Quali sono le commissioni di ClubR?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "ClubR offre le commissioni più basse del mercato, con cashback incluso e incasso entro 24 ore."
      }
    }
  ]
}
