/* ========================================
   IronCore Gym — Styles
   ======================================== */

:root {
  --bg: #0b0c10;
  --surface: #14161a;
  --text: #e6e8eb;
  --muted: #9aa0a6;
  --accent: #00e676;
  --accent-dim: #00c853;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,12,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  min-height: 64px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo span { color: var(--accent); }
.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
}
.header-phone {
  font-weight: 600;
  color: var(--accent);
}
.header-hours {
  color: var(--muted);
  display: none;
}

/* HERO */
.hero {
  padding: 100px 0 90px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 6px 20px rgba(0,230,118,0.25);
}
.btn-primary:hover {
  background: var(--accent-dim);
  box-shadow: 0 8px 24px rgba(0,230,118,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.btn-small { padding: 10px 20px; font-size: 0.9rem; }
.btn-large { padding: 16px 36px; font-size: 1rem; }

/* SECTIONS */
section { padding: 80px 0; }
section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
}

/* PRICES */
.prices { background: var(--surface); }
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.price-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: rgba(0,230,118,0.35);
  box-shadow: 0 0 0 1px rgba(0,230,118,0.15), var(--shadow);
}
.badge {
  position: absolute;
  top: -12px;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 20px;
}
.price-name {
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.price-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.price-features li {
  padding: 6px 0;
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .2s ease, transform .2s ease;
}
.review-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.stars {
  color: #ffc107;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.review-card footer {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* CONTACT */
.contact { background: var(--surface); }
.contact-inner { text-align: center; }
.contact-inner p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* FOOTER */
.footer {
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}

/* RESPONSIVE */
@media (min-width: 640px) {
  .header-hours { display: inline; }
}
@media (max-width: 480px) {
  .hero { padding: 70px 0 60px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }
  .contact-actions { flex-direction: column; align-items: center; }
  .contact-actions .btn { width: 100%; max-width: 320px; }
  section { padding: 60px 0; }
}
