/* Services Page Styles */
.tiers-section {
  padding: 3rem 0;
  background: var(--bg-dark, #181818);
}
.tiers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}
.tier-card {
  background: #232323;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px #0005;
  padding: 2.5rem 2rem;
  min-width: 380px;
  max-width: 520px;
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f5f5f5;
}
.tier-card h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #3a7;
  text-shadow: 0 2px 8px #000a;
}
.tier-card.fighter h2 { color: #3a7; }
.tier-card.fighter-plus h2 { color: #d18b00; }
.tier-card.trial h2 { color: #555; }
.tier-tagline {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f5f5f5;
  text-align: center;
  text-shadow: 0 1px 4px #000a;
}
.tier-features {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  font-size: 1.15rem;
  color: #e0e0e0;
  text-align: left;
}
.tier-features li {
  margin-bottom: 0.7rem;
  color: #e0e0e0;
  text-shadow: 0 1px 4px #000a;
  font-size: 1.15rem;
}
.tier-cta {
  margin-top: 1.5rem;
  text-align: center;
}
.cta-button {
  display: block;
  margin: 0 auto 1rem auto;
  padding: 0.9rem 2.2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 0.7rem;
  border: none;
  cursor: pointer;
  background: #3a7;
  color: #fff;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s;
}
.cta-button.fighter-plus {
  background: #d18b00;
  color: #fff;
}
.cta-button.trial {
  background: #555;
  color: #fff;
}
.cta-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 1.15rem;
  color: #f5f5f5;
  margin-top: 0.5rem;
  text-shadow: 0 1px 4px #000a;
}
.tier-card.fighter-plus {
  box-shadow: 0 0 24px 4px #ffd70088, 0 4px 24px #0005;
  border: 2px solid #ffd700;
}
@media (max-width: 1100px) {
  .tiers-grid {
    flex-direction: column;
    align-items: center;
  }
  .tier-card {
    max-width: 95vw;
  }
}
