/* ============================================================
   GTHQ Website Styles
   ============================================================ */

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-icon {
  font-size: 24px;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-600);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: 140px 0 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-100);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.hero-highlight {
  color: var(--green-600);
}

.hero-subtitle {
  font-size: 19px;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  max-width: 640px;
  margin: 0 auto;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-600);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green-600);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-secondary {
  background: #fff;
  color: var(--green-700);
  border: 2px solid var(--green-600);
}

.btn-secondary:hover {
  background: var(--green-50);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--green-700);
  font-weight: 700;
  padding: 16px 36px;
  font-size: 16px;
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ============================================================
   Section Helpers
   ============================================================ */

.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-100);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}

.section-alt {
  padding: 96px 0;
  background: var(--gray-50);
}

.section-light {
  padding: 96px 0;
  background: #fff;
}

/* ============================================================
   Features Grid
   ============================================================ */

.features {
  padding: 96px 0;
  background: #fff;
  text-align: center;
}

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

.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: var(--green-500);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

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

/* ============================================================
   Split Sections (Coaches / Players)
   ============================================================ */

.split-section {
  display: flex;
  align-items: center;
  gap: 64px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.benefit-list {
  list-style: none;
  margin-top: 28px;
}

.benefit-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.benefit-list strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  display: block;
  margin-bottom: 2px;
}

.benefit-list p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   Phone Mockup
   ============================================================ */

.phone-mockup {
  width: 280px;
  background: var(--gray-900);
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

.phone-screen {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  padding-bottom: 20px;
}

.phone-header {
  background: var(--green-600);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 16px 20px;
  text-align: center;
}

.phone-card {
  padding: 20px;
}

.phone-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-stat-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-700);
}

.phone-stat-row:last-child {
  border-bottom: none;
}

/* ============================================================
   CTA Section
   ============================================================ */

.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--gray-900);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .split-section.reverse {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    text-align: center !important;
  }

  .benefit-list {
    text-align: left;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    padding: 0 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .phone-mockup {
    width: 240px;
  }
}
