/* ========================================
   LA PORRITA - Landing Page Styles
   World Cup 2026 Football Theme
   ======================================== */

/* CSS Variables */
:root {
  --primary: #3CAC3B;
  --primary-dark: #2D8A2C;
  --primary-light: #4FC74E;
  --primary-glow: rgba(60, 172, 59, 0.5);
  --secondary: #2A398D;
  --secondary-dark: #1E2A66;
  --accent: #E61D25;
  --gold: #D4AF37;
  --gold-dark: #B8962F;
  --gold-light: #FFD700;
  --gold-glow: rgba(212, 175, 55, 0.5);

  /* Football theme - removed tech colors */
  --field-dark: #0a1a0f;
  --field-green: #1a3d1f;
  --stadium-light: rgba(255, 255, 255, 0.9);

  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --gray-950: #030712;

  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  --gradient-hero: linear-gradient(135deg, var(--field-dark) 0%, #0d2614 50%, var(--field-dark) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);

  /* Glass effect */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow-primary: 0 0 60px rgba(60, 172, 59, 0.3);
  --shadow-glow-gold: 0 0 60px rgba(212, 175, 55, 0.3);

  --container-max: 1200px;
  --section-padding: 7rem;
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
}

/* ========================================
   Reset & Base
   ======================================== */

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

/* Custom Football Cursor */
.football-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  background-image: url('assets/football.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  display: none;
  will-change: left, top, transform;
}

@media (pointer: fine) {
  .football-cursor {
    display: block;
  }

  body {
    cursor: none;
  }

  a, button, input, select, textarea, [role="button"] {
    cursor: none;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--field-dark);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

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

::selection {
  background: var(--primary);
  color: var(--white);
}

/* ========================================
   Container
   ======================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   Stadium Lights Background
   ======================================== */

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: var(--field-dark);
}

/* Stadium lights effect */
.animated-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 10%;
  width: 300px;
  height: 600px;
  background: radial-gradient(ellipse at center top,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    transparent 70%
  );
  transform: rotate(-15deg);
  animation: stadiumLight 8s ease-in-out infinite;
}

.animated-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: 10%;
  width: 300px;
  height: 600px;
  background: radial-gradient(ellipse at center top,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    transparent 70%
  );
  transform: rotate(15deg);
  animation: stadiumLight 8s ease-in-out infinite 4s;
}

@keyframes stadiumLight {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Grass texture effect */
.grass-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(60, 172, 59, 0.03) 40px,
    rgba(60, 172, 59, 0.03) 80px
  );
}

/* ========================================
   Floating Footballs
   ======================================== */

.footballs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.football {
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url('assets/football.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  animation: floatBall 20s infinite ease-in-out;
}

.football:nth-child(1) { left: 8%; animation-delay: 0s; animation-duration: 25s; }
.football:nth-child(2) { left: 30%; animation-delay: 4s; animation-duration: 22s; width: 30px; height: 30px; }
.football:nth-child(3) { left: 60%; animation-delay: 2s; animation-duration: 28s; }
.football:nth-child(4) { left: 85%; animation-delay: 6s; animation-duration: 24s; width: 35px; height: 35px; }

/* Floating Trophies */
.trophies {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.trophy-float {
  position: absolute;
  width: 32px;
  height: 42px;
  background-image: url('assets/world_cup_trophy_gold.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
  animation: floatTrophy 22s infinite ease-in-out;
}

.trophy-float:nth-child(1) { left: 20%; animation-delay: 2s; animation-duration: 26s; }
.trophy-float:nth-child(2) { left: 50%; animation-delay: 8s; animation-duration: 24s; width: 28px; height: 36px; }
.trophy-float:nth-child(3) { left: 75%; animation-delay: 5s; animation-duration: 28s; }

@keyframes floatTrophy {
  0% {
    transform: translateY(100vh) rotate(-5deg);
    opacity: 0;
  }
  10% {
    opacity: 0.2;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100px) rotate(5deg);
    opacity: 0;
  }
}

@keyframes floatBall {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

/* Golden confetti */
.confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  animation: confettiFall 15s infinite;
}

.confetti-piece:nth-child(odd) {
  background: var(--gold);
}

.confetti-piece:nth-child(even) {
  background: var(--primary);
}

.confetti-piece:nth-child(3n) {
  background: var(--accent);
  width: 6px;
  height: 6px;
}

.confetti-piece:nth-child(1) { left: 15%; animation-delay: 0s; }
.confetti-piece:nth-child(2) { left: 35%; animation-delay: 3s; }
.confetti-piece:nth-child(3) { left: 50%; animation-delay: 6s; }
.confetti-piece:nth-child(4) { left: 70%; animation-delay: 2s; }
.confetti-piece:nth-child(5) { left: 88%; animation-delay: 5s; }

@keyframes confettiFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* ========================================
   Buttons - Enhanced
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-spring);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.2) 0%,
    rgba(255,255,255,0) 50%,
    rgba(255,255,255,0.1) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow:
    0 4px 14px rgba(60, 172, 59, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(60, 172, 59, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::after {
  opacity: 0.6;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
  border-color: var(--primary);
  backdrop-filter: blur(10px);
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    var(--shadow-xl),
    0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-large {
  padding: 1.125rem 2.75rem;
  font-size: 1.125rem;
}

/* Button shimmer effect */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ========================================
   Navbar - Glass Effect
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 26, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(60, 172, 59, 0.1);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 26, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--transition-base);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(60, 172, 59, 0.3));
}

.nav-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray-400);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-base);
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transition: all var(--transition-base);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-cta .btn {
  padding: 0.625rem 1.5rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 26, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.mobile-menu a:hover {
  color: var(--primary);
  padding-left: 1rem;
}

.mobile-menu .btn {
  margin-top: 1rem;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--gray-400);
  line-height: 1;
  transition: all var(--transition-base);
}

.mobile-menu-close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

/* ========================================
   Hero Section - Football Stadium Theme
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--gradient-hero);
}

/* Stadium field lines effect */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Field center circle */
.hero-field-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-field-circle::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Field lines */
.hero-field-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.03) 49.5%, rgba(255, 255, 255, 0.03) 50.5%, transparent 50.5%);
}

/* Trophy glow effect */
.hero-trophy {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 120px;
  height: 160px;
  opacity: 0.3;
  animation: trophyGlow 4s ease-in-out infinite;
}

.hero-trophy img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

@keyframes trophyGlow {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
  }
  50% {
    transform: translateY(-10px) scale(1.05);
    opacity: 0.5;
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.6));
  }
}

.hero .container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

/* World Cup Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(60, 172, 59, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
  animation: badgePulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  animation: shimmerBadge 3s infinite;
}

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

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
}

.hero-badge .trophy-icon {
  font-size: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1.1;
}

.hero h1 .highlight {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s ease-in-out infinite;
  background-size: 200% auto;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* Stats with glowing effect */
.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  text-align: left;
  position: relative;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  position: relative;
}

.stat-number::after {
  content: attr(data-value);
  position: absolute;
  inset: 0;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual - Trophy & Ball */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-visual-container {
  position: relative;
}

.hero-visual img {
  max-width: 350px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  transition: transform 0.1s ease-out, filter 0.3s ease;
}

/* Golden trophy glow ring */
.hero-visual-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent,
    var(--gold),
    var(--primary),
    var(--gold),
    transparent
  );
  opacity: 0.3;
  animation: rotateGlow 8s linear infinite;
  filter: blur(30px);
  transform-style: flat;
  pointer-events: none;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float3D {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateY(-15px) rotateX(3deg) rotateY(-3deg);
  }
  50% {
    transform: translateY(-25px) rotateX(0deg) rotateY(0deg);
  }
  75% {
    transform: translateY(-10px) rotateX(-3deg) rotateY(3deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-indicator-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -30%; }
  100% { top: 100%; }
}

/* ========================================
   Flags Ticker - 48 Countries
   ======================================== */

.flags-ticker {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Flags ticker inside hero section */
.flags-ticker.hero-flags {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  border: none;
  z-index: 10;
  overflow: visible;
  padding-top: 2.5rem;
}

.flags-ticker-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.flags-track {
  display: flex;
  animation: tickerScroll 60s linear infinite;
  width: max-content;
}

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

.flag-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  position: relative;
}

/* Custom tooltip */
.flag-item::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Tooltip arrow */
.flag-item::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
  z-index: 100;
}

.flag-item:hover::before,
.flag-item:hover::after {
  opacity: 1;
  visibility: visible;
}

.flag-item img {
  width: 32px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.flag-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
}

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

/* ========================================
   Section Header - Enhanced
   ======================================== */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-header h2 {
  margin-bottom: 1.25rem;
  position: relative;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Section badge */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(60, 172, 59, 0.1);
  border: 1px solid rgba(60, 172, 59, 0.3);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================================
   Features Section - Glass Cards
   ======================================== */

.features {
  padding: var(--section-padding) 0;
  background: transparent;
  position: relative;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Football stitch pattern on top border */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px,
    var(--primary) 10px,
    transparent 10px,
    transparent 15px
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(60, 172, 59, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  border-color: rgba(60, 172, 59, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(60, 172, 59, 0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 1.75rem;
  color: var(--white);
  position: relative;
  box-shadow: 0 10px 30px rgba(60, 172, 59, 0.3);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(60, 172, 59, 0.4);
}

.feature-icon.blue {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  box-shadow: 0 10px 30px rgba(42, 57, 141, 0.3);
}

.feature-icon.red {
  background: linear-gradient(135deg, var(--accent) 0%, #b8181e 100%);
  box-shadow: 0 10px 30px rgba(230, 29, 37, 0.3);
}

.feature-icon.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Segments (Friends & Business) - Modern
   ======================================== */

.segment {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.segment-friends {
  background: linear-gradient(135deg, var(--field-dark) 0%, #0d2614 100%);
}

.segment-business {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, #0f172a 100%);
}

.segment-promo {
  background: linear-gradient(135deg, #2e1065 0%, #4c1d95 50%, #6d28d9 100%);
}

/* Segment background decoration */
.segment::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.segment-friends::before {
  background: var(--primary);
  bottom: -200px;
  right: -200px;
}

.segment-business::before {
  background: var(--gold);
  top: -200px;
  left: -200px;
}

.segment-promo::before {
  background: var(--accent);
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.segment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.segment-content.reverse {
  direction: rtl;
}

.segment-content.reverse > * {
  direction: ltr;
}

.segment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.segment-badge.green {
  background: rgba(60, 172, 59, 0.15);
  border: 1px solid rgba(60, 172, 59, 0.3);
  color: var(--white);
}

.segment-badge.gold {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--white);
}

.segment-badge.purple {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.segment-text h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.segment-text > p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.segment-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.segment-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.segment-benefits li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.segment-benefits .icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(60, 172, 59, 0.3);
}

.segment-benefits .icon.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--gray-900);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.segment-benefits .icon.purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.business-highlight {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl);
  margin-top: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.business-highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--primary));
}

.business-highlight p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.business-highlight strong {
  color: var(--gold);
}

.purple-highlight::before {
  background: linear-gradient(to bottom, #8B5CF6, #EC4899);
}

.purple-highlight strong {
  color: var(--white);
}

/* Visual Cards - 3D Effect */
.segment-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.visual-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 400px;
  width: 100%;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: all var(--transition-slow);
  transform-style: preserve-3d;
}

.visual-card:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
  box-shadow:
    0 35px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.visual-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.visual-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.visual-card-icon.blue {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.visual-card-icon.purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.visual-card-title {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1.25rem;
}

.visual-card-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.visual-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 1.75rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1.75rem;
}

.visual-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.visual-stat-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.375rem;
}

.visual-card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.visual-progress {
  flex: 1;
}

.visual-progress-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.visual-progress-bar {
  height: 10px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.visual-progress-fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  border-radius: var(--radius-full);
  position: relative;
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(60, 172, 59, 0.5); }
  50% { box-shadow: 0 0 20px rgba(60, 172, 59, 0.8); }
}

.purple-bar .visual-progress-fill {
  background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%);
}

.visual-badge {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--gray-900);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.visual-badge.purple-badge {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* ========================================
   Pricing Section - Premium
   ======================================== */

.pricing {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--field-dark) 0%, #0d2614 100%);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(60, 172, 59, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem;
  border-radius: var(--radius-2xl);
  text-align: center;
  position: relative;
  transition: all var(--transition-slow);
  backdrop-filter: blur(10px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(60, 172, 59, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  background: linear-gradient(135deg,
    rgba(42, 57, 141, 0.5) 0%,
    rgba(30, 42, 102, 0.8) 100%
  );
  border-color: rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 175, 55, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--gray-900);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.pricing-header {
  margin-bottom: 2.5rem;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.pricing-price {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card.featured .pricing-price {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
}

.pricing-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(60, 172, 59, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-weight: bold;
  font-size: 0.875rem;
}

.pricing-card.featured .pricing-features .check {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card.featured .btn-primary {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
  color: var(--secondary);
  border-color: var(--white);
}

.pricing-card.featured .btn-primary:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--gray-900);
  border-color: var(--gold);
}

/* Pricing Tiers */
.pricing-tiers {
  margin-top: 5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-tiers h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.tiers-table {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tier-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  min-width: 180px;
  position: relative;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.tier-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tier-item.highlight {
  border-color: var(--primary);
  background: rgba(60, 172, 59, 0.1);
}

.tier-range {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
}

.tier-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.tier-discount {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, var(--accent) 0%, #b8181e 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

/* ========================================
   CTA Section - Stunning
   ======================================== */

.cta {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    #22c55e 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Football pattern instead of plus signs */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/football.svg');
  background-size: 60px 60px;
  background-repeat: repeat;
  opacity: 0.05;
  animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.cta .container {
  position: relative;
  z-index: 1;
}

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

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta .btn-white {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta .btn-white:hover {
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 255, 255, 0.2);
}

/* ========================================
   Footer - Modern
   ======================================== */

.footer {
  background: var(--field-dark);
  color: var(--gray-400);
  padding: 5rem 0 2rem;
  position: relative;
  border-top: 1px solid rgba(60, 172, 59, 0.1);
}

/* Stadium silhouette decoration */
.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(60, 172, 59, 0.03), transparent);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(60, 172, 59, 0.3));
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Animations - Scroll Triggered
   ======================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.05s; }
.feature-card:nth-child(3) { transition-delay: 0.1s; }
.feature-card:nth-child(4) { transition-delay: 0.15s; }
.feature-card:nth-child(5) { transition-delay: 0.2s; }
.feature-card:nth-child(6) { transition-delay: 0.25s; }

/* Fade in animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Scale in animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Goal celebration animation */
@keyframes goalCelebration {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.goal-effect:hover {
  animation: goalCelebration 0.6s ease-out;
}

/* ========================================
   Responsive Design
   ======================================== */

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

  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-trophy {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segment-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .segment-content.reverse {
    direction: ltr;
  }

  .segment-visual {
    order: -1;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 5rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 .highlight {
    display: inline;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .tiers-table {
    flex-direction: column;
    align-items: center;
  }

  .tier-item {
    width: 100%;
    max-width: 250px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .scroll-indicator {
    display: none;
  }

  .flags-ticker {
    padding: 0.75rem 0;
  }

  .flag-item {
    padding: 0.25rem 1rem;
  }

  .flag-item img {
    width: 24px;
    height: 15px;
  }

  .flag-item span {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .visual-card {
    padding: 1.75rem;
  }

  .visual-card-stats {
    gap: 0.5rem;
  }

  .pricing-card {
    padding: 2.5rem 1.75rem;
  }

  .segment-text h2 {
    font-size: 2rem;
  }
}

/* ========================================
   Reduced Motion
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .footballs,
  .trophies,
  .confetti,
  .hero-trophy,
  .animated-bg::before,
  .animated-bg::after {
    animation: none !important;
  }

  .hero-visual-container {
    animation: none !important;
  }

  .flags-track {
    animation: none !important;
  }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
  .navbar,
  .footballs,
  .trophies,
  .confetti,
  .animated-bg,
  .grass-texture,
  .hero-bg,
  .scroll-indicator,
  .flags-ticker {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    background: none;
    color: black;
  }
}
