:root {
  --bg: #0a0a0a;
  --bg-alt: #121412;
  --green: #a6ce39;
  --green-bright: #c4f542;
  --white: #f5f5f5;
  --gray: #b8b8b8;
  --max-width: 1100px;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}

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

h1, h2, h3, .tagline {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  letter-spacing: 0.03em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid rgba(166,206,57,0.25);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo { height: 40px; width: auto; border-radius: 4px; }

.nav a {
  color: var(--white);
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav a:hover { color: var(--green-bright); }

.nav-cta {
  color: var(--green-bright) !important;
  font-weight: 700 !important;
}

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  padding: 140px 0 100px;
  text-align: center;
}

.hero-inner { max-width: 700px; margin: 0 auto; }

.tagline {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 0 24px rgba(166,206,57,0.35);
}

.hero-sub {
  color: var(--gray);
  font-size: 1.15rem;
  margin: 20px 0 32px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: #0a0a0a;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 20px;
  color: var(--white);
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--green);
  margin-top: 12px;
}

.section-lead {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 760px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #0a0a0a;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.step-desc { color: var(--gray); font-size: 0.95rem; }

/* Training explainer */
.training-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.training-benefits {
  list-style: none;
  margin-top: 24px;
}

.training-benefits li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--gray);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.training-benefits li::before {
  content: "▸";
  color: var(--green-bright);
  position: absolute;
  left: 0;
}

.training-benefits strong { color: var(--white); }

.training-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.service-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 32px 26px;
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--green-bright);
}

.service-card p { color: var(--gray); font-size: 0.95rem; }

.service-card-featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 20px 50px rgba(166,206,57,0.08);
}

.services-note {
  margin-top: 28px;
  color: var(--gray);
  font-style: italic;
  font-size: 0.9rem;
}

/* Sports */
.sports-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sports-list span {
  border: 1px solid var(--green);
  color: var(--green-bright);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* About */
.about-grid { max-width: 760px; }

/* Contact */
.contact-section { text-align: center; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact-section .section-title::after { margin-left: auto; margin-right: auto; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}

.contact-note {
  margin-top: 20px;
  color: #777;
  font-size: 0.8rem;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-logo { height: 30px; margin-bottom: 12px; opacity: 0.8; }

.site-footer p { color: #666; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 780px) {
  .nav { display: none; }
  .training-grid { grid-template-columns: 1fr; }
  .training-image { order: -1; }
}
