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

:root {
  --bg:          #0B1E3B;
  --bg-alt:      #061028;
  --surface:     #132F5C;
  --surface-lt:  #1E4280;
  --primary:     #4A9EF5;
  --accent:      #1976D2;
  --text:        #FFFFFF;
  --text-sec:    #B0BEC5;
  --text-gold:   #E2EAF5;
  --success:     #00E676;
  --error:       #FF5252;
  --silver:      #E2EAF5;
  --font: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 560px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: rgba(74,158,245,.15);
  color: var(--primary);
  border: 1px solid rgba(74,158,245,.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(74,158,245,.35);
}
.btn-primary:hover {
  background: #5baeff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74,158,245,.5);
}

.btn-secondary {
  background: rgba(74,158,245,.15);
  color: var(--primary);
  border: 1.5px solid rgba(74,158,245,.4);
}
.btn-secondary:hover {
  background: rgba(74,158,245,.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ─── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,16,40,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .5px;
}
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: var(--text-sec);
  font-size: 14px;
  font-weight: 600;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 14px !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: #5baeff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text-sec);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--primary); }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('stadium_bg.png');
  background-size: cover;
  background-position: center;
  opacity: .12;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74,158,245,.12) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,230,118,.1);
  border: 1px solid rgba(0,230,118,.3);
  color: var(--success);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--primary);
  text-shadow: 0 0 60px rgba(74,158,245,.5);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-sec);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-sec);
  opacity: .7;
}

/* Phone Mockup */
.hero-phone {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.phone-mockup {
  width: 280px;
  background: var(--bg-alt);
  border-radius: 40px;
  border: 2px solid rgba(74,158,245,.3);
  box-shadow:
    0 0 80px rgba(74,158,245,.15),
    0 40px 80px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.08);
  padding: 32px 16px 24px;
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.phone-logo { width: 24px; height: 24px; object-fit: contain; }
.phone-header span { font-size: 14px; font-weight: 700; }

.phone-match-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(74,158,245,.2);
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-sec);
  font-weight: 600;
}
.team-league-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.match-score { text-align: center; }
.score-live {
  display: block;
  font-size: 9px;
  color: var(--error);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.score-nums {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
}

.prediction-row {
  display: flex;
  gap: 8px;
}
.pred-btn {
  flex: 1;
  padding: 7px;
  border-radius: 8px;
  border: 1.5px solid rgba(74,158,245,.3);
  background: transparent;
  color: var(--text-sec);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.pred-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.phone-stats {
  display: flex;
  justify-content: space-between;
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 12px;
}
.stat-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-val { font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 3px; }
.stat-lbl { display: block; font-size: 9px; color: var(--text-sec); }
.coin-inline { width: 14px; height: 14px; object-fit: contain; }

.phone-card-preview {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.card-wrap img {
  width: 100%;
  max-width: 56px;
  border-radius: 5px;
  display: block;
}
.card-label {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.legendary-lbl { color: #f5c842; }
.epic-lbl      { color: #c97fff; }
.special-lbl   { color: var(--success); }
.common-lbl    { color: var(--primary); }

/* ─── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-block {}
.stat-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text-sec);
  font-weight: 500;
}

/* ─── APP SCREENSHOTS ───────────────────────────────────────── */
.screenshots { background: var(--bg-alt); }

.screenshots-banner,
.screenshots-trio {
  display: flex;
  justify-content: center;
}

.screenshots-banner { margin-bottom: 32px; }

.screenshot-img {
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .55);
  width: 100%;
}

.screenshot-img--full  { max-width: 1100px; }
.screenshot-img--trio  { max-width: 820px; }

@media (max-width: 768px) {
  .screenshot-img--full,
  .screenshot-img--trio { border-radius: var(--radius-sm); }
}

/* ─── FEATURES ──────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(74,158,245,.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.how { background: var(--bg-alt); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  opacity: .25;
  line-height: 1;
  min-width: 80px;
  text-align: right;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.6;
}

.step-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,158,245,.3), transparent);
  margin: 0 0 0 108px;
}

/* ─── TOURNAMENTS ───────────────────────────────────────────── */
.leagues-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.league-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 10px 22px 10px 14px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.league-badge:hover {
  border-color: var(--primary);
  background: var(--surface-lt);
  transform: translateY(-2px);
}
.league-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.league-badge--more {
  gap: 10px;
  padding-left: 18px;
}
.more-icon {
  width: 36px;
  height: 36px;
  background: var(--surface-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
}

/* ─── CARDS & PACKS ─────────────────────────────────────────── */
.cards-section { background: var(--bg-alt); }

/* Cartas */
.cards-showcase {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 160px;
}

.card-img-wrap {
  border-radius: 12px;
  transition: var(--transition);
}
.card-img-wrap:hover { transform: translateY(-8px) scale(1.04); }
.card-img-wrap img {
  width: 140px;
  border-radius: 12px;
  display: block;
}

.common-glow   { filter: drop-shadow(0 8px 20px rgba(74,158,245,.4)); }
.special-glow  { filter: drop-shadow(0 8px 24px rgba(0,230,118,.45)); }
.epic-glow     { filter: drop-shadow(0 8px 28px rgba(160,90,255,.55)); }
.legendary-glow{ filter: drop-shadow(0 8px 32px rgba(255,180,0,.6)); }

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

.rarity-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 8px;
}
.common-tag   { background: rgba(74,158,245,.15); color: var(--primary); border: 1px solid rgba(74,158,245,.3); }
.special-tag  { background: rgba(0,230,118,.12);  color: var(--success);  border: 1px solid rgba(0,230,118,.3); }
.epic-tag     { background: rgba(160,90,255,.15); color: #c97fff;         border: 1px solid rgba(160,90,255,.35); }
.legendary-tag{ background: rgba(255,180,0,.12);  color: #f5c842;         border: 1px solid rgba(255,180,0,.35); }

.card-info p {
  font-size: 12px;
  color: var(--text-sec);
  line-height: 1.5;
}

/* Sobres */
.packs-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.packs-title h3 {
  font-size: 22px;
  font-weight: 700;
}
.coin-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,.1);
  border: 1px solid rgba(245,200,66,.3);
  color: #f5c842;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
}
.coin-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.pack-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: var(--transition);
}
.pack-item:hover {
  transform: translateY(-6px);
  border-color: rgba(74,158,245,.3);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
}

.pack-item--featured {
  border-color: rgba(74,158,245,.5);
  background: linear-gradient(135deg, var(--surface-lt), var(--surface));
  box-shadow: 0 0 32px rgba(74,158,245,.15);
}

.pack-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pack-img-wrap {
  width: 120px;
  transition: var(--transition);
}
.pack-item:hover .pack-img-wrap { transform: scale(1.06); }
.pack-img-wrap img { width: 100%; display: block; }

.pack-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pack-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .5px;
}
.pack-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #f5c842;
}
.pack-price img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.pack-desc {
  font-size: 12px;
  color: var(--text-sec);
}

/* ─── GAMIFICATION ──────────────────────────────────────────── */
.gamification { background: var(--bg); }

.loop-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 64px;
}

.loop-step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  width: 160px;
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.loop-step:hover {
  border-color: rgba(74,158,245,.3);
  transform: translateY(-4px);
}

.loop-icon { font-size: 32px; margin-bottom: 10px; }
.loop-step h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.loop-step p { font-size: 12px; color: var(--text-sec); line-height: 1.5; }

.loop-arrow {
  font-size: 24px;
  color: var(--primary);
  opacity: .5;
  font-weight: 700;
}

.badges-section h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.badge-item:hover { border-color: rgba(74,158,245,.3); }

.badge-emoji { font-size: 32px; flex-shrink: 0; }
.badge-item strong { font-size: 15px; font-weight: 700; display: block; margin-bottom: 4px; }
.badge-item p { font-size: 13px; color: var(--text-sec); }

/* ─── PLANS ─────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  transition: var(--transition);
}
.plan-card:hover { transform: translateY(-4px); }

.plan-card.plan-popular {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(74,158,245,.2);
  background: linear-gradient(135deg, var(--surface-lt), var(--surface));
}

.plan-badge-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  white-space: nowrap;
}

.plan-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.plan-amount {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}
.plan-period {
  font-size: 16px;
  color: var(--text-sec);
}

.plan-annual {
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 28px;
}

.plan-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sec);
}
.plan-features li::before {
  content: '✓';
  font-size: 13px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plan-features li.yes { color: var(--text); }
.plan-features li.yes::before {
  color: var(--success);
  background: rgba(0,230,118,.12);
}
.plan-features li.no { opacity: .45; }
.plan-features li.no::before {
  content: '✕';
  color: var(--text-sec);
  background: rgba(255,255,255,.06);
}

.plan-card .btn { width: 100%; justify-content: center; }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials { background: var(--bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.07);
}

.testimonial-stars {
  color: #f5c842;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-sec);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-author span { font-size: 12px; color: var(--text-sec); }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact { background: var(--bg-alt); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }

.contact-info h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--text-sec);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ch-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-highlights li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-highlights li strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.contact-highlights li span {
  font-size: 13px;
  color: var(--text-sec);
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(74,158,245,.12);
  border: 1px solid rgba(74,158,245,.35);
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 50px;
  transition: var(--transition);
}

.contact-email-link:hover {
  background: rgba(74,158,245,.22);
  border-color: var(--primary);
}

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }

.btn-full { width: 100%; justify-content: center; }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-sec);
  margin-top: -8px;
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── DOWNLOAD ──────────────────────────────────────────────── */
.download {
  background: linear-gradient(135deg, var(--surface-lt), var(--surface));
  border-top: 1px solid rgba(74,158,245,.2);
  border-bottom: 1px solid rgba(74,158,245,.2);
}

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

.download-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 30px rgba(74,158,245,.5));
}

.download-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}

.download-content p {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 14px 24px;
  transition: var(--transition);
  min-width: 180px;
}
.store-btn:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.store-btn small {
  display: block;
  font-size: 11px;
  color: var(--text-sec);
  font-weight: 500;
}
.store-btn strong { font-size: 16px; font-weight: 700; }

.download-note {
  font-size: 14px;
  color: var(--text-sec);
}
.download-note a {
  color: var(--primary);
  font-weight: 600;
  transition: opacity var(--transition);
}
.download-note a:hover { opacity: .8; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-brand {
  max-width: 280px;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 8px;
}
.footer-brand span {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-sec);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary); }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-mockup { animation: float 5s ease-in-out infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .6s ease forwards; }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; gap: 48px; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-note { text-align: center; }
  .hero-phone { padding: 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

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

  .loop-container { gap: 4px; }
  .loop-step { width: 140px; }
  .loop-arrow { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-title { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
  .phone-mockup { width: 240px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 32px; }
  .plans-grid { grid-template-columns: 1fr; }
  .download-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 280px; justify-content: center; }
  .steps { padding: 0 8px; }
  .step-line { margin-left: 88px; }

  /* Cards & Packs mobile */
  .cards-showcase { gap: 16px; }
  .card-item { width: 130px; }
  .card-img-wrap img { width: 110px; }
  .packs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pack-img-wrap { width: 90px; }
  .packs-title { flex-direction: column; align-items: flex-start; }

  /* Leagues mobile */
  .league-badge { padding: 8px 14px 8px 10px; font-size: 13px; }
  .league-badge img { width: 28px; height: 28px; }
}
