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

:root {
  --red: #E3262E;
  --blue: #0055A4;
  --dark: #060A14;
  --black: #0A0A0A;
  --white: #ffffff;
  --font-heading: 'Big Shoulders Display', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===================== UTILITIES ===================== */
.red { color: var(--red); }
.blue { color: var(--blue); }
.font-display { font-family: var(--font-heading); }

.section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.section-label .bar { height: 4px; width: 48px; background: var(--red); }
.section-label .bar.blue { background: var(--blue); }
.section-label .label-text {
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue);
}
.section-label.center { justify-content: center; }
.section-label.center .label-text { color: var(--red); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; font-family: var(--font-body); font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.3s ease; cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--white); color: var(--red); box-shadow: 0 0 30px rgba(227,38,46,0.4); }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--red); }

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.4s ease; padding: 16px 0;
}
#navbar.scrolled {
  background: rgba(6,10,20,0.95); backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4); padding: 8px 0;
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 40px; height: 40px; color: var(--white);
  display: flex; align-items: center; justify-content: center; border-radius: 3px;
  transition: transform 0.3s ease;
}
.brand-icon svg { width: 22px; height: 22px; }
.brand:hover .brand-icon { transform: scale(1.08); }
.brand-text {
  font-family: var(--font-heading); font-weight: 900; font-size: 28px;
  color: var(--white); letter-spacing: -0.01em; line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a {
  position: relative; padding: 8px 16px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.8); transition: color 0.3s ease;
}
.nav-links > a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  height: 2px; width: 0; background: var(--red); transition: width 0.3s ease;
}
.nav-links > a:hover { color: var(--white); }
.nav-links > a:hover::after { width: 70%; }
.btn-associate {
  margin-left: 12px; padding: 10px 20px; background: var(--red); color: var(--white);
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 2px; transition: all 0.3s ease;
}
.btn-associate:hover { background: var(--white); color: var(--red); }
.btn-associate::after { display: none; }
.nav-social { display: none; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--white); transition: all 0.3s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero { position: relative; min-height: 100vh; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.05); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,10,20,0.95), rgba(6,10,20,0.7) 50%, transparent),
              linear-gradient(to top, rgba(6,10,20,1), transparent 40%, rgba(6,10,20,0.4));
}
.hero-giant {
  position: absolute; right: 0; bottom: -2vw; opacity: 0.07; pointer-events: none;
  font-family: var(--font-heading); font-weight: 900; font-size: 20vw; line-height: 1; color: var(--white);
}
.hero-content {
  position: relative; z-index: 10; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; max-width: 640px; padding: 96px 80px 64px 20px; margin-left: max(20px, calc(50% - 640px));
}
.hero-slide { display: none; }
.hero-slide.active { display: block; animation: slideUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.tag { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.tag .bar { height: 4px; width: 48px; background: var(--red); }
.tag-text { font-family: var(--font-heading); font-weight: 700; font-size: 18px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); }
.hero-content h1 {
  font-family: var(--font-heading); font-weight: 900; text-transform: uppercase;
  line-height: 0.85; color: var(--white); margin-bottom: 32px;
}
.hero-content .line1 { display: block; font-size: clamp(48px, 8vw, 128px); }
.hero-content .line2 { display: block; font-size: clamp(40px, 7vw, 112px); }
.hero-content .stroke { -webkit-text-stroke: 2px rgba(255,255,255,0.15); color: transparent; }
.hero-content p {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.75); max-width: 540px;
  line-height: 1.6; margin-bottom: 40px; font-weight: 300;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-indicators { display: flex; gap: 12px; margin-top: 48px; }
.indicator {
  height: 4px; width: 32px; background: rgba(255,255,255,0.3); transition: all 0.5s ease;
}
.indicator.active { width: 64px; background: var(--red); }
.indicator:hover { background: rgba(255,255,255,0.6); }

.hero-emblem {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%); z-index: 10;
}
.emblem-glow {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(227,38,46,0.3); filter: blur(60px); animation: pulseGlow 2.5s ease-in-out infinite;
}
.emblem-badge {
  position: relative; width: 208px; height: 208px; border-radius: 50%; background: var(--white);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center;
  padding: 40px; border: 6px solid rgba(227,38,46,0.4); animation: floatY 4s ease-in-out infinite;
}
.emblem-badge img { width: 100%; height: 100%; object-fit: contain; }

.scroll-indicator {
  position: absolute; bottom: 56px; left: 50%; transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); animation: floatY 3s ease-in-out infinite;
}
.scroll-indicator span { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-indicator svg { width: 20px; height: 20px; }

.marquee {
  position: absolute; bottom: 0; left: 0; right: 0; background: var(--red); padding: 8px 0; overflow: hidden;
}
.marquee-track { display: flex; align-items: center; gap: 24px; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-track span { font-family: var(--font-heading); font-weight: 700; font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); }
.marquee-track .dot { font-size: 8px; opacity: 0.7; }

/* ===================== ABOUT ===================== */
.about { position: relative; padding: 96px 0; background: var(--white); overflow: hidden; }
.about-deco {
  position: absolute; top: 0; right: 0; width: 33%; height: 100%; opacity: 0.5;
  background-image:
    linear-gradient(135deg, transparent 48%, rgba(227,38,46,0.06) 49%, rgba(227,38,46,0.06) 51%, transparent 52%),
    linear-gradient(-135deg, transparent 48%, rgba(0,85,164,0.06) 49%, rgba(0,85,164,0.06) 51%, transparent 52%);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-media { position: relative; }
.about-frame { position: absolute; top: -16px; left: -16px; width: 100%; height: 100%; border: 2px solid rgba(0,85,164,0.2); }
.about-img { position: relative; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); }
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-stat {
  position: absolute; bottom: -24px; right: -16px; background: var(--dark); color: var(--white);
  padding: 20px 32px; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.stat-num { font-family: var(--font-heading); font-weight: 900; font-size: 36px; color: var(--red); line-height: 1; }
.stat-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; }
.about-text h2 { font-family: var(--font-heading); font-weight: 900; text-transform: uppercase; font-size: clamp(36px, 4vw, 60px); line-height: 0.9; color: var(--dark); margin-bottom: 24px; }
.about-text p { font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 16px; font-weight: 300; }
.about-text strong { color: var(--dark); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.value-card { padding: 20px; border-left: 2px solid rgba(227,38,46,0.2); transition: border-color 0.3s ease; }
.value-card:hover { border-left-color: var(--red); }
.value-icon { width: 48px; height: 48px; margin-bottom: 12px; color: var(--blue); transition: color 0.3s ease; }
.value-card:hover .value-icon { color: var(--red); }
.value-icon svg { width: 28px; height: 28px; }
.value-card h4 { font-family: var(--font-heading); font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--dark); margin-bottom: 4px; }
.value-card p { font-size: 14px; color: #888; line-height: 1.6; }
.about-text .btn { margin-top: 32px; }

/* ===================== LEAGUE ===================== */
.league { position: relative; padding: 96px 0; background: var(--dark); overflow: hidden; }
.net-pattern-bg {
  position: absolute; inset: 0; opacity: 0.4; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}
.section-center { text-align: center; margin-bottom: 64px; }
.league-title { font-family: var(--font-heading); font-weight: 900; text-transform: uppercase; font-size: clamp(40px, 5vw, 72px); line-height: 0.9; color: var(--white); margin-bottom: 16px; }
.subtitle { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 640px; margin: 0 auto; font-weight: 300; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px; }
.feature-card {
  position: relative; background: rgba(255,255,255,0.05); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1); padding: 32px; overflow: hidden;
  transition: all 0.5s ease;
}
.feature-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-8px); }
.feature-top { position: absolute; top: 0; left: 0; height: 4px; width: 100%; transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
.feature-card:hover .feature-top { transform: scaleX(1); }
.feature-top.red { background: var(--red); }
.feature-top.blue { background: var(--blue); }
.feature-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: transform 0.3s ease; }
.feature-icon svg { width: 28px; height: 28px; }
.feature-icon.red { background: rgba(227,38,46,0.15); color: var(--red); }
.feature-icon.blue { background: rgba(0,85,164,0.15); color: var(--blue); }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 24px; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.feature-num { position: absolute; top: 16px; right: 16px; font-family: var(--font-heading); font-weight: 900; font-size: 48px; color: rgba(255,255,255,0.05); transition: color 0.3s ease; }
.feature-card:hover .feature-num { color: rgba(255,255,255,0.1); }

.league-band { position: relative; overflow: hidden; height: 420px; }
.league-band img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.league-band:hover img { transform: scale(1.05); }
.league-band-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,10,20,0.95), rgba(6,10,20,0.5) 50%, transparent); }
.league-band-text { position: absolute; bottom: 0; left: 0; padding: 40px; max-width: 540px; }
.band-tag { font-family: var(--font-heading); font-weight: 700; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.league-band-text h3 { font-family: var(--font-heading); font-weight: 900; font-size: 48px; text-transform: uppercase; color: var(--white); margin-top: 8px; }
.league-band-text p { color: rgba(255,255,255,0.7); margin-top: 8px; font-weight: 300; }

/* ===================== STEPS ===================== */
.steps { position: relative; padding: 96px 0; background: var(--white); }
.steps-title { font-family: var(--font-heading); font-weight: 900; text-transform: uppercase; font-size: clamp(36px, 4vw, 60px); line-height: 0.9; color: var(--dark); margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.step-card { position: relative; background: var(--white); border: 1px solid #eee; padding: 32px 24px; transition: all 0.4s ease; }
.step-card:hover { border-color: var(--red); box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-6px); }
.step-num { font-family: var(--font-heading); font-weight: 900; font-size: 48px; color: rgba(227,38,46,0.15); line-height: 1; margin-bottom: 16px; transition: color 0.3s ease; }
.step-card:hover .step-num { color: var(--red); }
.step-icon { width: 48px; height: 48px; margin-bottom: 16px; color: var(--blue); }
.step-icon svg { width: 28px; height: 28px; }
.step-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 22px; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: #888; line-height: 1.6; }
.steps-cta { margin-top: 16px; }

/* ===================== LEAGUE INFO ===================== */
.league-info { position: relative; padding: 96px 0; background: var(--black); overflow: hidden; }
.court-deco {
  position: absolute; inset: 0; opacity: 0.3; pointer-events: none;
  background-image:
    linear-gradient(135deg, transparent 48%, rgba(227,38,46,0.06) 49%, rgba(227,38,46,0.06) 51%, transparent 52%),
    linear-gradient(-135deg, transparent 48%, rgba(0,85,164,0.06) 49%, rgba(0,85,164,0.06) 51%, transparent 52%);
}
.info-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.info-left { position: sticky; top: 112px; align-self: start; }
.info-left h2 { font-family: var(--font-heading); font-weight: 900; text-transform: uppercase; font-size: clamp(36px, 4vw, 48px); line-height: 0.9; color: var(--white); margin-bottom: 24px; }
.info-left > p { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
.info-links { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.info-links a { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.7); transition: color 0.3s ease; }
.info-links a:hover { color: var(--red); }
.info-links svg { width: 18px; height: 18px; color: var(--blue); transition: color 0.3s ease; }
.info-links a:hover svg { color: var(--red); }
.info-links span { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.accordions { display: flex; flex-direction: column; gap: 12px; }
.accordion { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.acc-header {
  width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  text-align: left; transition: background 0.3s ease;
}
.acc-header:hover { background: rgba(255,255,255,0.05); }
.acc-header.active { background: rgba(255,255,255,0.08); }
.acc-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.acc-icon svg { width: 22px; height: 22px; }
.acc-icon.red { background: rgba(227,38,46,0.15); color: var(--red); }
.acc-icon.blue { background: rgba(0,85,164,0.15); color: var(--blue); }
.acc-title { flex: 1; font-family: var(--font-heading); font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--white); }
.acc-chevron { font-size: 28px; font-weight: 300; color: rgba(255,255,255,0.6); transition: transform 0.3s ease; }
.acc-header.active .acc-chevron { transform: rotate(45deg); color: var(--red); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; padding: 0 24px; }
.acc-body.open { max-height: 600px; padding-bottom: 24px; }
.acc-body p { color: rgba(255,255,255,0.7); margin-bottom: 12px; line-height: 1.7; }
.acc-body strong { color: var(--white); }
.acc-list { list-style: none; margin: 8px 0; }
.acc-list li { color: rgba(255,255,255,0.7); margin-bottom: 8px; line-height: 1.6; }
.fee-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 24px; max-width: 360px; margin-top: 8px; }
.fee-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.fee-row { display: flex; align-items: baseline; gap: 12px; }
.fee-price { font-family: var(--font-heading); font-weight: 900; font-size: 48px; color: var(--red); line-height: 1; }
.fee-price.blue { color: var(--blue); }
.fee-assoc { font-size: 14px; color: rgba(255,255,255,0.5); }
.fee-assoc strong { color: var(--white); }
.format-note { margin-top: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 16px; font-size: 14px; color: rgba(255,255,255,0.7); max-width: 360px; }
.format-note strong { color: var(--white); }

/* ===================== CONTACT ===================== */
.contact { position: relative; padding: 96px 0; background: var(--dark); overflow: hidden; }
.net-pattern-bg.light { opacity: 0.3; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h2 { font-family: var(--font-heading); font-weight: 900; text-transform: uppercase; font-size: clamp(40px, 5vw, 64px); line-height: 0.9; color: var(--white); margin-bottom: 24px; }
.contact-info > p { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; font-weight: 300; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; transition: opacity 0.3s ease; }
.contact-item:hover { opacity: 0.85; }
.ci-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; }
.ci-icon svg { width: 22px; height: 22px; }
.ci-icon.red { background: rgba(227,38,46,0.15); color: var(--red); }
.ci-icon.blue { background: rgba(0,85,164,0.15); color: var(--blue); }
.ci-icon.muted { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6); }
.contact-item:hover .ci-icon.red { background: var(--red); color: var(--white); }
.contact-item:hover .ci-icon.blue { background: var(--blue); color: var(--white); }
.ci-label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.ci-value { display: block; font-weight: 600; color: var(--white); }

.contact-form-wrap { background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); padding: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; }
.field label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; font-weight: 600; }
.field input, .field textarea {
  background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,0.15);
  padding: 12px 0; color: var(--white); font-family: var(--font-body); font-size: 16px;
  outline: none; transition: border-color 0.3s ease; resize: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus, .field textarea:focus { border-color: var(--red); }
.form-submit { width: 100%; }
.form-success { text-align: center; padding: 64px 16px; display: flex; flex-direction: column; align-items: center; }
.success-icon { color: var(--red); margin-bottom: 16px; animation: scaleIn 0.5s ease forwards; }
.success-icon svg { width: 64px; height: 64px; }
.form-success h3 { font-family: var(--font-heading); font-weight: 900; font-size: 32px; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.6); }
.btn-link { margin-top: 24px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); transition: color 0.3s ease; }
.btn-link:hover { color: var(--white); }

/* ===================== FOOTER ===================== */
.footer { position: relative; background: var(--dark); padding: 80px 0 0; overflow: hidden; }
.footer-giant {
  position: absolute; bottom: -3vw; left: 0; right: 0; text-align: center; opacity: 0.04;
  font-family: var(--font-heading); font-weight: 900; font-size: 22vw; line-height: 1; color: var(--white);
  pointer-events: none;
}
.footer-content { position: relative; z-index: 1; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer-brand .footer-logo { width: 56px; height: 56px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 6px; margin-bottom: 16px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 320px; line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); transition: all 0.3s ease; }
.footer-social svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h4 { font-family: var(--font-heading); font-weight: 700; font-size: 16px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; letter-spacing: 0.05em; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,0.6); margin-bottom: 10px; font-size: 14px; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; padding-top: 32px; padding-bottom: 32px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 14px; }

/* ===================== ANIMATIONS ===================== */
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--red), var(--blue)); border-radius: 5px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
    background: rgba(6,10,20,0.98); backdrop-filter: blur(12px); flex-direction: column; align-items: flex-start;
    padding: 80px 24px 24px; gap: 4px; transition: right 0.4s ease; z-index: 99; }
  .nav-links.open { right: 0; }
  .nav-links > a { width: 100%; padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 16px; }
  .nav-links > a::after { display: none; }
  .btn-associate { margin: 16px 0 0; width: 100%; text-align: center; }
  .nav-social { display: flex; gap: 16px; margin-top: 24px; }
  .nav-social a { color: rgba(255,255,255,0.6); font-size: 14px; }
  .menu-toggle { display: flex; z-index: 101; }
  .hero-content { padding: 96px 20px 64px; margin-left: 20px; max-width: 100%; }
  .hero-emblem { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .info-left { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-content h1 { font-size: clamp(40px, 14vw, 64px); }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-stat { right: 0; padding: 16px 24px; }
  .league-band-text { padding: 24px; }
  .league-band-text h3 { font-size: 36px; }
}