/* =====================================================
   GUNDUPADEL - Stylesheet V2
   Design: Moderno, Bold, Energico
   Ispirato a: Netdrive, Padelo, Padel Club
   ===================================================== */

/* Google Fonts - Solo Sans Serif */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* =====================================================
   CSS Variables / Design System V2
   ===================================================== */
:root {
  /* Colori principali - Nuova palette */
  --primary: #D4FF00;           /* Verde lime neon */
  --primary-dark: #B8E600;
  --primary-light: #F0FFB3;

  /* Blu Navy */
  --navy: #0A1628;
  --navy-light: #1A2D4A;
  --navy-lighter: #2A4060;

  /* Grigi freddi */
  --white: #FFFFFF;
  --gray-50: #ecf1f6;
  --gray-100: #ecf1f6;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Colori eventi - Aggiornati */
  --orodei: #b58233;
  --orodei-light: #f5e6d3;
  --blupadel: #0066CC;
  --blupadel-light: #E6F2FF;
  --gunducup: #D4FF00;
  --gunducup-light: #F0FFB3;

  /* Font - Solo Sans Serif */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;

  /* Shadows - Più pronunciate */
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow: 0 4px 12px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.16);
  --shadow-glow: 0 0 40px rgba(212, 255, 0, 0.3);

  /* Border radius - Più arrotondati */
  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 2.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.2s ease;
  --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* SVG Icons - Stili base */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

svg:not([width]):not([class]) {
  width: 1.5rem;
  height: 1.5rem;
}

button svg,
a svg {
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

/* =====================================================
   Typography V2 - Sans Serif Only
   ===================================================== */
.text-display {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.text-h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.text-h3 {
  font-size: 1.5rem;
  line-height: 1.25;
}

.text-h4 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

/* =====================================================
   Layout
   ===================================================== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

.section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
}

/* =====================================================
   Buttons V2
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-slow);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(2px);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--navy);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--navy-light);
  transform: translateY(-1px);
}

/* Secondary button su sfondo scuro (hero) */
.hero .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--navy);
  background-color: var(--navy);
  color: var(--white);
}

/* Button with arrow circle */
.btn-arrow {
  padding-right: 0.875rem;
}

.btn-arrow-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
}

.btn-arrow-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--white);
}

.btn-primary .btn-arrow-icon {
  background-color: var(--navy);
}

/* =====================================================
   Badge / Pill V2
   ===================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.badge::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--navy);
  border-radius: 50%;
}

.badge-primary::before {
  background-color: var(--primary);
}

.badge-filled {
  background-color: var(--navy);
  color: var(--white);
  border: none;
}

/* =====================================================
   Header / Navbar V2 - Dark/Light mode
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

/* Header su sfondo scuro (hero) */
.header:not(.scrolled) .nav-logo {
  color: var(--white);
}

.header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.header:not(.scrolled) .nav-link:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
}

.header:not(.scrolled) .nav-mobile-btn {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.header:not(.scrolled) .nav-mobile-btn svg {
  color: var(--white);
}

/* Header scrolled (sfondo chiaro) */
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}

.header.scrolled .nav-logo {
  color: var(--navy);
}

.header.scrolled .nav-link {
  color: var(--gray-600);
}

.header.scrolled .nav-link:hover {
  color: var(--navy);
  background-color: var(--gray-100);
}

.header.scrolled .nav-mobile-btn {
  background-color: var(--gray-100);
  border-color: var(--gray-200);
}

.header.scrolled .nav-mobile-btn svg {
  color: var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}

.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

/* Logo switch: negativo di default, positivo su scroll */
.nav-logo-img.logo-negative {
  display: block;
}
.nav-logo-img.logo-positive {
  display: none;
}
.header.scrolled .nav-logo-img.logo-negative {
  display: none;
}
.header.scrolled .nav-logo-img.logo-positive {
  display: block;
}

/* Testo GUNDUPADEL accanto al logo */
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  transition: var(--transition);
}
.header.scrolled .nav-logo-text {
  color: var(--navy);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--navy);
  background-color: var(--gray-100);
}

.nav-link svg {
  width: 1rem;
  height: 1rem;
  opacity: 0.6;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  background-color: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--gray-50);
}

.dropdown-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  overflow: hidden;
}

.dropdown-item-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.dropdown-item-icon.gundu {
  background-color: #f9eb30;
}

.dropdown-item-icon.orodei {
  background-color: #000000;
}

.dropdown-item-icon.blupadel {
  background-color: #0066cc;
}

.dropdown-item h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.125rem;
}

.dropdown-item p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: block;
  }
}

/* Mobile menu button */
.nav-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}

.nav-mobile-btn:hover {
  background-color: var(--gray-50);
}

.nav-mobile-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
}

@media (min-width: 1024px) {
  .nav-mobile-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-section {
  margin-bottom: 1.5rem;
}

.mobile-menu-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.mobile-menu-item:hover {
  background-color: var(--gray-50);
}

.mobile-menu-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  overflow: hidden;
}

.mobile-menu-item-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.mobile-menu-item-icon.gundu {
  background-color: #f9eb30;
}

.mobile-menu-item-icon.orodei {
  background-color: #000000;
}

.mobile-menu-item-icon.blupadel {
  background-color: #0066cc;
}

.mobile-menu-divider {
  height: 1px;
  background-color: var(--gray-100);
  margin: 1rem 0;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem;
  color: var(--gray-600);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.mobile-menu-link:hover {
  background-color: var(--gray-50);
  color: var(--navy);
}

.mobile-menu-link svg {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.5;
}

/* =====================================================
   Hero Section V2 - Full Width Background Image
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
  padding: 8rem 0 4rem; /* 8rem top per compensare header fixed (4.5rem) + margine */
}

@media (min-width: 1024px) {
  .hero {
    padding: 7rem 0 4rem; /* Mantiene spazio per header anche su desktop */
  }
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Video background */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Overlay gradient per leggibilità testo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Gradiente dall'alto per menu */
    linear-gradient(
      to bottom,
      rgba(10, 22, 40, 0.3) 0%,
      rgba(10, 22, 40, 0.15) 15%,
      rgba(10, 22, 40, 0) 30%
    ),
    /* Gradiente dal basso per testi */
    linear-gradient(
      to top,
      rgba(10, 22, 40, 0.4) 0%,
      rgba(10, 22, 40, 0.3) 30%,
      rgba(10, 22, 40, 0.15) 60%,
      rgba(10, 22, 40, 0.05) 100%
    ),
    /* Gradiente laterale da sinistra per testo */
    linear-gradient(
      to right,
      rgba(10, 22, 40, 0.35) 0%,
      rgba(10, 22, 40, 0.25) 40%,
      rgba(10, 22, 40, 0.1) 70%,
      rgba(10, 22, 40, 0) 100%
    );
}

/* Pattern nascosto per design pulito */
.hero-pattern {
  display: none;
}

/* Decorazioni blur nascoste per design pulito */
.hero-decoration {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 10;
  display: block;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-subtitle strong {
  color: var(--primary);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Stats in hero - stile orizzontale */
.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .hero-stats {
    gap: 2.5rem;
    padding-top: 2rem;
  }
}

.hero-stats > div {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 2.75rem;
  }
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-stat-label {
    font-size: 0.875rem;
  }
}

/* Hero Image Box - Lato destro */
.hero-image {
  position: relative;
  display: block;
  order: -1;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-image {
    order: 0;
    max-width: 100%;
    margin: 0;
  }
}

/* Rimosso effetto gradient dietro foto */

.hero-image-placeholder {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-lighter));
  border-radius: var(--radius-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-image-placeholder {
    aspect-ratio: 1;
  }
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(212, 255, 0, 0.05) 100%);
}

.hero-image-placeholder svg {
  width: 5rem;
  height: 5rem;
  color: var(--primary);
  opacity: 0.4;
}

.hero-image-placeholder p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
  font-weight: 500;
}

/* Hero image reale */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4/3;
}

@media (min-width: 1024px) {
  .hero-img {
    aspect-ratio: 1;
  }
}

/* Rimosso badge PADEL floating */

/* =====================================================
   Stats Section V2
   ===================================================== */
.stats-section {
  background-color: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* =====================================================
   About Section V2 - Compatible with existing HTML
   ===================================================== */
.about {
  background-color: var(--white);
}

.about-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-header h2 {
  margin-bottom: 1rem;
}

.about-header p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 1.0625rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-feature {
  padding: 1.25rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  text-align: left;
  transition: var(--transition);
  display: grid;
  grid-template-columns: 3rem 1fr;
  grid-template-rows: auto auto;
  gap: 0 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .about-feature {
    padding: 2rem 1.5rem;
    display: block;
    text-align: center;
  }
}

.about-feature:hover {
  background-color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  grid-row: 1;
  grid-column: 1;
}

@media (min-width: 640px) {
  .about-feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
  }
}

.about-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 640px) {
  .about-feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.about-feature h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0;
  grid-row: 1;
  grid-column: 2;
}

@media (min-width: 640px) {
  .about-feature h3 {
    margin-bottom: 0.5rem;
  }
}

.about-feature p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  grid-row: 2;
  grid-column: 1 / -1;
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .about-feature p {
    margin-top: 0;
  }
}

.about-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
  .about-cta {
    flex-direction: row;
    text-align: left;
  }
}

.about-cta h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.about-cta p {
  color: var(--gray-600);
}

/* Legacy about grid structure */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
}

.about-content {
  order: 2;
}

@media (min-width: 1024px) {
  .about-content {
    order: 1;
  }
}

.about-badge {
  margin-bottom: 1.25rem;
}

.about-title {
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-media {
  order: 1;
  position: relative;
}

@media (min-width: 1024px) {
  .about-media {
    order: 2;
  }
}

.about-image {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background-color: var(--gray-200);
  aspect-ratio: 4/3;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.about-image-placeholder svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

/* Floating card */
.about-floating-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background-color: var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-2xl);
  color: var(--navy);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .about-floating-card {
    bottom: -2rem;
    right: -2rem;
  }
}

.about-floating-card p {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

/* =====================================================
   Events Section V2 - Compatible with existing HTML
   ===================================================== */
.events {
  background-color: var(--gray-50);
}

.events-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.events-header .badge {
  margin-bottom: 1.25rem;
}

.events-header h2 {
  margin-bottom: 1rem;
}

.events-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Event - Gundu Padel Cup */
.event-featured {
  display: block;
  margin-bottom: 2rem;
  text-decoration: none;
}

.event-featured .card {
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition-slow);
}

.event-featured:hover .card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.event-featured-inner {
  padding: 0;
}

.event-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 1024px) {
  .event-featured-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.event-featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .event-featured-content {
    padding: 3rem;
  }
}

.event-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.event-featured-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--navy);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.event-featured-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.event-featured-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.event-featured-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.event-featured-stat {
  text-align: left;
}

.event-featured-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.event-featured-stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.event-featured-stats-divider {
  width: 1px;
  height: 3rem;
  background-color: var(--gray-200);
}

.event-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.event-featured-link svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.event-featured:hover .event-featured-link svg {
  transform: translateX(2px);
}

.event-featured-image {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, var(--gunducup-light), var(--gray-100));
}

@media (min-width: 1024px) {
  .event-featured-image {
    min-height: 400px;
  }
}

.event-featured-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.event-featured-image-placeholder svg {
  width: 4rem;
  height: 4rem;
  opacity: 0.4;
  margin-bottom: 0.75rem;
}

.event-featured-image-placeholder p {
  font-size: 0.875rem;
}

/* Immagine reale evento featured */
.event-featured-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.event-featured:hover .event-featured-img {
  transform: scale(1.01);
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Event Card V2 - Compatible with existing HTML */
.card {
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  transition: var(--transition-slow);
}

.event-card {
  display: block;
  text-decoration: none;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: var(--transition-slow);
  border: 1px solid var(--gray-100);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Event colors */
.event-card.orodei .event-card-image {
  background: linear-gradient(135deg, var(--orodei-light), var(--gray-100));
}

.event-card.blupadel .event-card-image {
  background: linear-gradient(135deg, var(--blupadel-light), var(--gray-100));
}

.event-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background-color: var(--gray-200);
  overflow: hidden;
}

.event-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.event-card-image-placeholder svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.event-card-image-placeholder p {
  font-size: 0.8125rem;
}

/* Immagine reale event card */
.event-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card-img {
  transform: scale(1.01);
}

.event-card-content {
  padding: 1.5rem;
}

.event-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.event-card-desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.event-card-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.event-card-stat {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.event-card-stat svg {
  width: 1rem;
  height: 1rem;
  opacity: 0.7;
}

.event-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.event-card-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.event-card:hover .event-card-link svg {
  transform: translateX(2px);
}

/* Legacy event card styles */
.event-card-featured {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .event-card-featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .event-card-featured .event-card-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 400px;
  }
}

.event-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.event-card-badge.gundu {
  background-color: var(--primary);
  color: var(--navy);
}

.event-card-badge.orodei {
  background-color: var(--orodei);
  color: #ffffff;
}

.event-card-badge.blupadel {
  background-color: var(--blupadel);
  color: var(--white);
}

.event-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.event-card-description {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.event-card-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.event-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.event-card-meta svg {
  width: 1rem;
  height: 1rem;
  opacity: 0.7;
}

/* =====================================================
   Sponsors Section V2 - Compatible with existing HTML
   ===================================================== */
/* ==================== FOUNDER ==================== */
.founder {
  background-color: var(--navy);
  color: var(--white);
}

.founder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .founder-inner {
    flex-direction: row;
    text-align: left;
    gap: 4rem;
  }
}

.founder-photo {
  flex-shrink: 0;
}

.founder-photo-wrapper {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 0 0 30px rgba(212, 255, 0, 0.15);
}

@media (min-width: 768px) {
  .founder-photo-wrapper {
    width: 192px;
    height: 192px;
  }
}

.founder-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-light);
}

.founder-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--gray-500);
}

.founder-content {
  flex: 1;
}

.founder-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.founder-content h2 {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}

.founder-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.founder-link:hover {
  gap: 0.75rem;
}

.founder-link svg {
  width: 18px;
  height: 18px;
}

/* ==================== PARALLAX SEPARATOR ==================== */
.parallax-separator {
  height: 400px;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* iOS non supporta background-attachment: fixed, fallback */
@supports (-webkit-touch-callout: none) {
  .parallax-separator {
    background-attachment: scroll;
  }
}

.parallax-separator img {
  display: none;
}

/* Mostrato solo su mobile */
.mobile-only {
  display: block;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background-color: var(--navy);
  padding: 3rem 0;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-lighter));
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(212, 255, 0, 0.15);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-banner-inner {
    flex-direction: row;
    text-align: left;
  }
}

.cta-banner-inner h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.cta-banner-inner p {
  color: var(--gray-400);
}

/* ==================== SPONSORS ==================== */
.sponsors {
  background-color: var(--white);
}

.sponsors-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sponsors-header h2 {
  margin-bottom: 0.75rem;
}

.sponsors-header p {
  color: var(--gray-500);
}

/* Carousel infinito sponsor */
.sponsors-carousel-wrapper {
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0 2.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.sponsors-carousel-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem; /* trailing gap per loop seamless preciso */
  animation: sponsors-scroll 22s linear infinite;
  width: max-content;
  will-change: transform;
}

.sponsors-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes sponsors-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--carousel-shift, -50%)); }
}

.sponsor-carousel-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  min-width: 150px;
  height: 88px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.sponsor-carousel-item img {
  max-height: 52px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.sponsor-carousel-item:hover img {
  filter: grayscale(0%);
}

.sponsor-carousel-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sponsor-carousel-item p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Legacy — mantiene compatibilità col pannello admin */
.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  color: var(--gray-400);
}

.sponsor-logo-img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

@media (min-width: 768px) {
  .lightbox-prev { left: 2rem; }
  .lightbox-next { right: 2rem; }
}

.sponsors-cta {
  text-align: center;
}

.sponsors-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.sponsors-cta a:hover {
  color: var(--primary-dark);
}

.sponsors-cta svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.sponsors-cta a:hover svg {
  transform: translateX(2px);
}

/* Legacy sponsor styles */
.sponsor-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
}

.sponsor-placeholder svg {
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.4;
}

.sponsor-placeholder p {
  font-size: 0.75rem;
}

/* =====================================================
   Highlights Section V2 - Compatible with existing HTML
   ===================================================== */
.highlights {
  background-color: var(--gray-50);
}

.highlights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.highlights-header h2 {
  margin: 0 0 0.25rem 0;
}

.highlights-header > div p {
  color: var(--gray-500);
  margin: 0;
}

.highlights-header > a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.highlights-header > a:hover {
  color: var(--primary-dark);
}

.highlights-header > a svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.highlights-header > a:hover svg {
  transform: translateX(2px);
}

.highlights-nav {
  display: flex;
  gap: 0.5rem;
}

.highlights-nav-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background-color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.highlights-nav-btn:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.highlights-nav-btn.active {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.highlights-nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Highlight Card V2 - Compatible with existing HTML */
.highlight-card {
  display: block;
  text-decoration: none;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  transition: var(--transition-slow);
  border: 1px solid var(--gray-100);
}

.highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.highlight-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.highlight-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.highlight-badge.orodei {
  background-color: var(--orodei-light);
  color: #B8860B;
}

.highlight-badge.blupadel {
  background-color: var(--blupadel-light);
  color: var(--blupadel);
}

.highlight-badge.gundu {
  background-color: var(--gunducup-light);
  color: var(--navy);
}

.highlight-type {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.highlight-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.highlight-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.highlight-card-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.highlight-card:hover .highlight-card-footer {
  color: var(--primary-dark);
}

.highlight-card-footer svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.highlight-card:hover .highlight-card-footer svg {
  transform: translateX(2px);
}

/* Legacy highlight card styles */
.highlight-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background-color: var(--gray-200);
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}

.highlight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-card-image img {
  transform: scale(1.01);
}

.highlight-card-content {
  padding: 0;
}

.highlight-card-tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.highlight-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.highlight-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.highlight-card-link:hover {
  color: var(--primary-dark);
}

.highlight-card-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.highlight-card-link:hover svg {
  transform: translateX(2px);
}

/* Featured highlight card (verde lime) */
.highlight-card-featured {
  background-color: var(--primary);
  border-color: var(--primary);
}

.highlight-card-featured .highlight-card-content {
  padding: 1.5rem;
}

.highlight-card-featured .highlight-card-title {
  font-size: 1.25rem;
  color: var(--navy);
}

.highlight-card-featured .highlight-card-text {
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.highlight-card-featured .highlight-card-link {
  color: var(--navy);
}

.highlight-card-featured .highlight-card-link:hover {
  opacity: 0.8;
}

/* =====================================================
   Footer V2
   ===================================================== */
.footer {
  background-color: var(--navy);
  color: var(--white);
}

.footer-main {
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(2, 1fr);
  }
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--navy-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary);
  color: var(--navy);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-contact-item svg {
  width: 1.125rem;
  height: 1.125rem;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid var(--navy-light);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-content p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--gray-500);
  font-size: 0.875rem;
  transition: var(--transition);
}

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

/* =====================================================
   Utility Classes
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

/* =====================================================
   Event Pages - Sponsor Bar
   ===================================================== */
.sponsor-bar {
  padding: 0.875rem 0;
  margin-top: 4.5rem; /* Compensa header fisso (altezza 4.5rem) */
  border-bottom: 1px solid var(--gray-100);
}

.sponsor-bar-orodei {
  background: #000000;
  border-bottom: none;
  margin-top: 0; /* Rimuove margine per estendersi fino in cima */
  padding-top: calc(4.5rem + 1rem); /* Header height + padding extra */
  padding-bottom: 1rem;
}

.sponsor-bar-orodei .sponsor-bar-label {
  color: #ffffff;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* Orodei: layout orizzontale su desktop */
@media (min-width: 769px) {
  .sponsor-bar-orodei .sponsor-bar-content {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.sponsor-bar-blupadel {
  background: linear-gradient(135deg, var(--blupadel-light), var(--white));
}

.sponsor-bar-gundu {
  background: var(--navy);
  border-bottom: none;
  margin-top: 0;
  padding-top: calc(4.5rem + 1rem);
  padding-bottom: 1rem;
}

.sponsor-bar-gundu .sponsor-bar-label {
  color: #ffffff;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.sponsor-bar-gundu .sponsor-bar-logo {
  color: var(--primary);
}

.sponsor-bar-gundu .sponsor-bar-logo span {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

/* Gundu: layout orizzontale su desktop */
@media (min-width: 769px) {
  .sponsor-bar-gundu .sponsor-bar-content {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.sponsor-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sponsor-bar-label {
  font-size: 0.625rem; /* 10px */
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sponsor-bar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.sponsor-bar-logo img {
  width: 300px; /* Desktop: larghezza fissa */
  height: auto;
}

.sponsor-bar-logo svg {
  width: 1.5rem;
  height: 1.5rem;
}

.sponsor-bar-logo span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Mobile: logo 70% larghezza */
@media (max-width: 768px) {
  .sponsor-bar-logo img {
    width: 70%;
    max-width: 300px;
  }
}

/* =====================================================
   Event Pages - Hero Slider
   ===================================================== */
.event-hero {
  position: relative;
  height: 65vh;
  min-height: 450px;
  max-height: 650px;
  overflow: hidden;
}

.event-hero-orodei .event-hero-overlay {
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85), transparent);
}

.event-hero-blupadel .event-hero-overlay {
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85), transparent);
}

.event-hero-gundu .event-hero-overlay {
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85), transparent);
}

.event-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.event-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.event-hero-slide.active {
  opacity: 1;
}

.event-hero-slide-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.event-hero-slide-placeholder svg {
  width: 4rem;
  height: 4rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.event-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.25rem;
  height: 3.25rem;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .slider-btn {
    display: flex;
  }
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.02);
}

.slider-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
}

.slider-btn-prev {
  left: 1.5rem;
}

.slider-btn-next {
  right: 1.5rem;
}

.slider-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .slider-dots {
    bottom: 1rem;
  }
}

.slider-dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
  background-color: var(--white);
  transform: scale(1.2);
}

/* Event Hero Overlay */
.event-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5rem;
}

.event-hero-info {
  color: var(--white);
}

.event-hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.event-hero-badge.orodei {
  background-color: var(--orodei);
  color: #ffffff;
}

.event-hero-badge.blupadel {
  background-color: var(--blupadel);
  color: var(--white);
}

.event-hero-badge.gundu {
  background-color: var(--primary);
  color: var(--navy);
}

.event-hero-info h1 {
  margin-bottom: 0.75rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.event-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* =====================================================
   Event Pages - Description
   ===================================================== */
.event-description {
  background-color: var(--white);
}

.event-description-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .event-description-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
}

.event-description-content h2 {
  margin-bottom: 1.5rem;
}

.event-description-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.event-description-text strong {
  color: var(--navy);
}

.event-description-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-stat-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
}

.event-stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-stat-icon.orodei {
  background-color: var(--orodei);
  color: #ffffff;
}

.event-stat-icon.blupadel {
  background-color: var(--blupadel-light);
  color: var(--blupadel);
}

.event-stat-icon.gundu {
  background-color: var(--gunducup-light);
  color: var(--navy);
}

.event-stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.event-stat-info {
  display: flex;
  flex-direction: column;
}

.event-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--navy);
}

.event-stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* =====================================================
   Event Pages - Tappe / Map
   ===================================================== */
.event-tappe {
  background-color: var(--gray-50);
}

.event-tappe-header {
  text-align: center;
  margin-bottom: 2rem;
}

.event-tappe-header h2 {
  margin-bottom: 0.75rem;
}

.event-tappe-header p {
  color: var(--gray-600);
}

.event-tappe-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Italy Map */
.event-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-map-container {
  max-width: 500px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .event-map-container {
    max-width: 550px;
  }
}

.italy-map-img {
  width: 100%;
  height: auto;
  display: block;
}

.map-markers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.marker-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--orodei);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: #ffffff;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}

/* Effetto radar/pulse */
.marker-dot::before,
.marker-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--orodei);
  opacity: 0;
  z-index: -1;
}

.map-marker:hover .marker-dot::before,
.map-marker.active .marker-dot::before {
  animation: radar-pulse 1.5s ease-out infinite;
}

.map-marker:hover .marker-dot::after,
.map-marker.active .marker-dot::after {
  animation: radar-pulse 1.5s ease-out 0.5s infinite;
}

@keyframes radar-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.marker-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  color: var(--navy);
  background-color: rgba(255,255,255,0.9);
  padding: 2px 6px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(-2px);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.map-marker:hover .marker-dot,
.map-marker.active .marker-dot {
  background-color: var(--white);
  color: var(--navy);
}

.map-marker:hover .marker-label,
.map-marker.active .marker-label {
  opacity: 1;
  transform: translateY(0);
}

/* Prossima tappa: marker verde con radar sempre attivo */
.map-marker.next-tappa .marker-dot {
  background-color: var(--primary);
  color: var(--navy);
}

.map-marker.next-tappa .marker-dot::before {
  background-color: var(--primary);
  animation: radar-pulse 1.5s ease-out infinite;
}

.map-marker.next-tappa .marker-dot::after {
  background-color: var(--primary);
  animation: radar-pulse 1.5s ease-out 0.5s infinite;
}

.map-marker.next-tappa .marker-label {
  opacity: 1;
  transform: translateY(0);
}

/* Badge stato prossima tappa */
.status-next {
  background-color: var(--primary);
  color: var(--navy);
  font-weight: 700;
}

/* Tappe List */
.event-tappe-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .event-tappe-list {
    grid-template-columns: 1fr 1fr;
  }
}

.tappa-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  transition: var(--transition-slow);
}

.tappa-card:hover,
.tappa-card.highlighted {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.tappa-card.highlighted {
  border-color: var(--orodei);
  background-color: var(--orodei-light);
}

.tappa-card-number {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.tappa-card-number.orodei {
  background-color: var(--orodei);
  color: #ffffff;
}

.tappa-card-number.blupadel {
  background-color: var(--blupadel);
  color: var(--white);
}

.tappa-card-number.gundu {
  background-color: var(--primary);
  color: var(--navy);
}

.tappa-card-content {
  flex-grow: 1;
  min-width: 0;
}

.tappa-card-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.tappa-card-date {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.tappa-card-location {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.tappa-card-status {
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-completed {
  background-color: var(--gray-100);
  color: var(--gray-500);
}

.status-upcoming {
  background-color: transparent;
  color: var(--gray-700);
  border: 3px solid var(--primary);
}

.status-pending {
  background-color: transparent;
  color: var(--gray-700);
  border: 3px solid var(--primary);
}

/* Countdown prossima tappa */
.tappa-countdown {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-100);
}

.countdown-label {
  font-size: 0.65rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-weight: 500;
}

.countdown-units {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 1.75rem;
}

.countdown-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
}

.countdown-unit-label {
  font-size: 0.5rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-sep {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orodei);
  line-height: 1.1;
  padding-bottom: 0.65rem;
}

.countdown-live {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orodei);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Hero countdown - pagina tappa (design minimale su sfondo scuro) */
.tappa-hero-countdown {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-countdown-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  white-space: nowrap;
}

.hero-countdown-units {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}

.hero-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.25rem;
}

.hero-countdown-value {
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}

.hero-countdown-unit-label {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.hero-countdown-sep {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  padding-bottom: 1rem;
}

.hero-countdown-live {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: pulse 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  /* Lista tappe: nascondi label, comprimi numeri */
  .tappa-countdown {
    gap: 0.4rem;
  }
  .countdown-label {
    display: none;
  }
  .countdown-unit {
    min-width: 1.35rem;
  }
  .countdown-value {
    font-size: 0.75rem;
  }
  .countdown-sep {
    font-size: 0.7rem;
    padding-bottom: 0.5rem;
  }

  /* Hero tappa: riduce gap e font */
  .tappa-hero-countdown {
    gap: 0.625rem;
    flex-wrap: nowrap;
  }
  .hero-countdown-label {
    white-space: nowrap;
    font-size: 0.6rem;
  }
  .hero-countdown-unit {
    min-width: 1.75rem;
  }
  .hero-countdown-value {
    font-size: 1.1rem;
  }
  .hero-countdown-sep {
    font-size: 0.875rem;
    padding-bottom: 0.85rem;
  }
  .hero-countdown-units {
    gap: 0.2rem;
  }
}

.status-finals {
  background-color: var(--orodei-light);
  color: #B8860B;
}

/* =====================================================
   Event Pages - Features
   ===================================================== */
.event-features {
  background-color: var(--white);
}

.event-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

@media (min-width: 1024px) {
  .event-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.event-feature-card {
  padding: 1.5rem 1.25rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
}

.event-feature-card:hover {
  background-color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.event-feature-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: none !important;
}

.event-feature-icon svg {
  width: 3rem;
  height: 3rem;
}

.event-feature-icon.orodei {
  color: #b58233;
}

.event-feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.event-feature-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =====================================================
   Event Pages - Main Sponsor
   ===================================================== */
.event-main-sponsor {
  background-color: var(--gray-50);
}

.event-sponsor-card {
  background-color: var(--white);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.event-sponsor-badge {
  background: linear-gradient(135deg, var(--orodei), #FFA500);
  color: var(--navy);
  text-align: center;
  padding: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-sponsor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .event-sponsor-grid {
    grid-template-columns: 220px 1fr;
    padding: 3.5rem;
  }
}

.event-sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-sponsor-logo-placeholder {
  width: 160px;
  height: 160px;
  background-color: var(--gray-100);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.event-sponsor-logo-placeholder svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.event-sponsor-logo-placeholder p {
  font-size: 0.8125rem;
}

.event-sponsor-content h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.event-sponsor-content p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* =====================================================
   Tappa Page Styles
   ===================================================== */
.tappa-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  max-height: 520px;
  overflow: hidden;
}

.tappa-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--navy); /* Sfondo scuro invece di grigio */
  overflow: hidden;
}

.tappa-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* Centra l'immagine */
}

.tappa-hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.tappa-hero-placeholder svg {
  width: 4rem;
  height: 4rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.tappa-hero-overlay {
  position: absolute;
  inset: 0;
  /* Gradient doppio: scuro in basso per testo + scuro in alto per menu navigazione */
  background:
    linear-gradient(
      to bottom,
      rgba(10, 22, 40, 0.6) 0%,       /* Scuro in alto per leggibilità menu */
      rgba(10, 22, 40, 0.2) 15%,      /* Sfuma rapidamente */
      rgba(10, 22, 40, 0) 25%         /* Trasparente */
    ),
    linear-gradient(
      to top,
      rgba(10, 22, 40, 0.95) 0%,      /* Scuro in basso per leggibilità testo */
      rgba(10, 22, 40, 0.7) 20%,      /* Sfuma gradualmente */
      rgba(10, 22, 40, 0.3) 40%,      /* Medio */
      rgba(10, 22, 40, 0) 65%         /* Trasparente */
    );
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0;
}

.tappa-hero-info {
  color: var(--white);
  text-align: left;
  width: 100%;
}

.tappa-hero-event {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.tappa-hero-event.orodei {
  background-color: var(--orodei);
  color: #ffffff;
}

.tappa-hero-event.blupadel {
  background-color: var(--blupadel);
  color: var(--white);
}

.tappa-hero-event.gundu {
  background-color: var(--primary);
  color: var(--navy);
}

.tappa-hero-info h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tappa-hero-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  font-size: 1.0625rem;
  opacity: 0.9;
}

.tappa-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tappa-hero-meta svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Responsive tappa hero - su mobile il gradient copre più area per leggibilità */
@media (max-width: 768px) {
  .tappa-hero {
    height: 50vh;
    min-height: 300px;
    max-height: 400px;
  }

  .tappa-hero-image {
    /* Su mobile assicura copertura completa */
    object-fit: cover;
    object-position: center center;
  }

  .tappa-hero-overlay {
    /* Doppio gradient anche su mobile */
    background:
      linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.7) 0%,       /* Più scuro in alto per menu mobile */
        rgba(10, 22, 40, 0.3) 20%,
        rgba(10, 22, 40, 0) 35%
      ),
      linear-gradient(
        to top,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(10, 22, 40, 0.85) 30%,
        rgba(10, 22, 40, 0.5) 55%,
        rgba(10, 22, 40, 0) 80%
      );
    padding: 1.5rem 0;
  }

  .tappa-hero-info h1 {
    font-size: 1.75rem;
  }
}

/* Tappa Content Sections */
.tappa-content {
  background-color: var(--white);
}

.tappa-section-upcoming,
.tappa-section-completed {
  display: none;
}

.tappa-section-upcoming.active,
.tappa-section-completed.active {
  display: block;
}

/* Upcoming Tappa */
.tappa-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .tappa-info-grid {
    grid-template-columns: 1.8fr 1fr;
  }
}

.tappa-info-main h2 {
  margin-bottom: 1.5rem;
}

.tappa-info-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tappa-info-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tappa-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-xl);
}

.tappa-detail-icon {
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
  border: 1px solid var(--gray-100);
}

.tappa-detail-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Icone oro per evento Orodei */
body.evento-orodei .tappa-detail-icon {
  color: var(--orodei);
}

.tappa-detail-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.tappa-detail-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Tappa Sidebar */
.tappa-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tappa-cta-card {
  padding: 2rem;
  background-color: var(--primary);
  border-radius: var(--radius-2xl);
  text-align: center;
}

.tappa-cta-card h3 {
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.tappa-cta-card p {
  font-size: 0.9375rem;
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}

.tappa-cta-card .btn {
  width: 100%;
  background-color: var(--navy);
  color: var(--white);
}

.tappa-cta-card .btn:hover {
  background-color: var(--navy-light);
}

.tappa-location-card {
  padding: 1.75rem;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
}

.tappa-location-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
}

.tappa-club-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 1rem 0;
}

.tappa-club-logo-img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.tappa-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  background: var(--white) !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--primary) !important;
}

.tappa-maps-btn:hover {
  background: var(--primary-light) !important;
  color: var(--navy) !important;
}

.tappa-location-address {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Banner iscriviti (tappa giocata) */
.tappa-signup-banner {
  margin-top: 3rem;
  background: var(--navy);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  color: var(--white);
}

.tappa-signup-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .tappa-signup-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.tappa-signup-banner h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.tappa-signup-banner p {
  color: var(--gray-400);
  font-size: 0.9375rem;
}

.tappa-signup-banner .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Completed Tappa */
.tappa-results h2 {
  margin-bottom: 1.5rem;
}

.tappa-results-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.tappa-gallery {
  margin-bottom: 3.5rem;
}

.tappa-gallery h3 {
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.tappa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .tappa-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tappa-gallery-item {
  aspect-ratio: 1;
  background-color: var(--gray-200);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  overflow: hidden;
  transition: var(--transition);
}

.tappa-gallery-item:hover {
  transform: scale(1.01);
}

.tappa-gallery-item svg {
  width: 2rem;
  height: 2rem;
  opacity: 0.5;
}

.tappa-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tappa-gallery-item.loading {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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

.tappa-gallery-item.placeholder {
  flex-direction: column;
  gap: 0.5rem;
}

.tappa-gallery-item.placeholder span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.gallery-loader {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-300);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Classifica */
.tappa-classifica {
  margin-bottom: 2.5rem;
}

.tappa-classifica h3 {
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.classifica-table {
  width: 100%;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.classifica-header {
  display: grid;
  grid-template-columns: 70px 1fr 100px;
  padding: 1.25rem;
  background-color: var(--gray-50);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.classifica-row {
  display: grid;
  grid-template-columns: 70px 1fr 100px;
  padding: 1.25rem;
  border-top: 1px solid var(--gray-100);
  align-items: center;
  transition: var(--transition);
}

.classifica-row:hover {
  background-color: var(--gray-50);
}

.classifica-position {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
}

.classifica-position.gold {
  color: var(--orodei);
}

.classifica-position.silver {
  color: #C0C0C0;
}

.classifica-position.bronze {
  color: #CD7F32;
}

.classifica-team h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}

.classifica-team p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.classifica-score {
  text-align: right;
  font-weight: 700;
  color: var(--gray-700);
}

/* =====================================================
   Contact Page
   ===================================================== */
.contact-hero {
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  padding: 3.5rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 4.5rem 0;
  }
}

.contact-hero h1 {
  margin-bottom: 1.25rem;
}

.contact-hero p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-card {
  padding: 2.5rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--gray-100);
}

.contact-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--navy);
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(212, 255, 0, 0.2);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23737373'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  padding: 1.75rem;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
}

.contact-info-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.contact-info-card h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-dark);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 0;
  color: var(--gray-600);
  transition: var(--transition);
}

.contact-info-item:hover {
  color: var(--navy);
}

.contact-info-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.contact-sponsor-card {
  padding: 2rem;
  background-color: var(--primary);
  border-radius: var(--radius-2xl);
}

.contact-sponsor-card h3 {
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.contact-sponsor-card p {
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.contact-sponsor-card ul {
  margin-bottom: 1.75rem;
}

.contact-sponsor-card li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0;
  color: var(--navy);
}

.contact-sponsor-card li svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--navy);
}

/* =====================================================
   Gundu Padel Cup - Sezioni specifiche
   ===================================================== */

/* Location Card */
.location-section {
  background-color: var(--navy);
  color: var(--white);
}

.location-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: var(--navy-light);
  border-radius: var(--radius-3xl);
  overflow: hidden;
}

@media (min-width: 768px) {
  .location-card {
    grid-template-columns: 1fr 1fr;
  }
}

.location-card-img {
  min-height: 280px;
  background-color: var(--navy-lighter);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

.location-card-img svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-card-info h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.location-card-info .location-subtitle {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.location-card-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-300);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.location-detail svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Location Hero con foto background */
.location-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
}

.location-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.6) 50%,
    rgba(10, 22, 40, 0.3) 100%
  );
}

.location-hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 900px) {
  .location-hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.location-hero-text {
  flex: 1;
  max-width: 600px;
}

.location-features-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(212, 255, 0, 0.12);
  border: 1px solid rgba(212, 255, 0, 0.3);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  color: var(--white);
  font-size: 0.9375rem;
  width: fit-content;
}

.location-feature-pill svg {
  color: var(--primary);
  flex-shrink: 0;
}

.location-hero-stats {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}

.location-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(8px);
}

.location-stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.location-stat-label {
  font-size: 0.8125rem;
  color: var(--gray-300);
  text-align: center;
  line-height: 1.3;
}

/* Package Sale Layout (Gundu Padel Cup) */
.package-sale-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 960px) {
  .package-sale-layout {
    grid-template-columns: 1fr 380px;
    gap: 4rem;
  }
}

.package-sale-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.package-group {
  margin-bottom: 2rem;
}

.package-group-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.875rem;
}

.package-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.package-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-200);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.package-checklist li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.package-price-card {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  position: sticky;
  top: 6rem;
}

.package-price-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.package-price-card-body {
  padding: 1.75rem;
}

.package-price-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.375rem;
}

.package-price-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.375rem;
  line-height: 1;
}

.package-price-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.package-price-divider {
  height: 1px;
  background: var(--navy-lighter);
  margin: 1.25rem 0;
}

.package-price-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.package-price-highlight {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--gray-300);
}

.package-price-highlight svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Serate Carousel */
.serate-section {
  background: var(--gray-50);
  overflow: hidden;
}

.serate-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.serate-nav {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
  align-self: center;
}

.serate-nav-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.serate-nav-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.serate-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.serate-carousel-wrapper {
  overflow: hidden;
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}

.serate-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.serata-card {
  flex: 0 0 300px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .serata-card {
    flex: 0 0 320px;
  }
}

.serata-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.serata-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.serata-card:hover .serata-card-img img {
  transform: scale(1.05);
}

.serata-card-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--navy);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.serata-finale-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}

.serata-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.serata-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary-dark);
}

.serata-card-finale .serata-card-tag {
  color: var(--gunducup);
}

.serata-card-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.serata-card-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Package Includes */
.package-includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .package-includes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.package-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.package-item:hover {
  background-color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(212, 255, 0, 0.1);
}

.package-item-icon {
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--gunducup-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-item-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--navy);
}

.package-item-text h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.125rem;
}

.package-item-text p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* CTA Full Width */
.cta-fullwidth {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-fullwidth::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-fullwidth-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: rgba(212, 255, 0, 0.15);
  color: var(--primary);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cta-fullwidth h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-fullwidth p {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-fullwidth-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-fullwidth .btn-primary {
  font-size: 1.0625rem;
  padding: 1rem 2.5rem;
}

.cta-fullwidth .btn-outline {
  font-size: 1.0625rem;
  padding: 1rem 2.5rem;
  border-color: var(--gray-500);
  color: var(--white);
}

.cta-fullwidth .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Audience / Target Cards */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.audience-card {
  padding: 2rem 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
}

.audience-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.audience-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  background-color: var(--gunducup-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--navy);
}

.audience-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Organizer Section */
.organizer-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--gray-100);
}

@media (max-width: 768px) {
  .organizer-card {
    flex-direction: column;
    text-align: center;
  }
}

.organizer-logo {
  width: 100px;
  height: 100px;
  background-color: var(--navy);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.organizer-logo svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

.organizer-info h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.organizer-info p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}
