/* CSS Custom Properties - Professional Corporate Theme */
:root {
  --primary-color: #1e293b;
  --primary-light: #334155;
  --primary-dark: #0f172a;
  --secondary-color: #f1f5f9;
  --accent-color: #0ea5e9;
  --accent-hover: #0284c7;
  --text-color: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.logo {
  width: 40px;
  height: 40px;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent-color);
  background-color: var(--gray-50);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Main Content */
.main {
  margin-top: var(--header-height);
}

/* Page Management */
.page {
  display: none;
  min-height: calc(100vh - var(--header-height));
}

.page.active {
  display: block;
}

/* Ensure all new sub-pages are properly handled */
#client-types-page,
#products-page,
#platforms-page,
#data-content-page,
#fan-engagement-page,
#coaching-integrity-page {
  display: none;
  min-height: calc(100vh - var(--header-height));
}

#client-types-page.active,
#products-page.active,
#platforms-page.active,
#data-content-page.active,
#fan-engagement-page.active,
#coaching-integrity-page.active {
  display: block;
}

.page-header {
  text-align: center;
  padding: 4rem 0 2rem;
}

.page__title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.page__subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.1);
  pointer-events: none;
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero__description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: var(--gray-50);
}

.section__title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature__icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.feature__title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature__description {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Services Page */
.service-section {
  margin-bottom: 4rem;
}

.service-section__title {
  color: var(--primary-color);
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent-color);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-card__icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card__title {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.service-card__description {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* News Section */
.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-card__image {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__icon {
  font-size: 3rem;
  color: var(--white);
}

.news-card__content {
  padding: 1.5rem;
}

.news-card__title {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.news-card__excerpt {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-light);
}

.news-card__category {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4px 8px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Contact Section */
.contact__content {

  gap: 4rem;
  margin-bottom: 3rem;
}

.contact__title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact__description {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail i {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
}

.contact__detail h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}

.contact__detail p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Form Styles */
.contact__form {
  background-color: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.form__group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form__input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--white);
  transition: var(--transition);
}

.form__input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
  transform: translateY(-1.5rem) scale(0.85);
  color: var(--accent-color);
}

.form__label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--text-light);
  font-size: 1rem;
  pointer-events: none;
  transition: var(--transition);
  transform-origin: left top;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer__content {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer__description {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.footer__social-link:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer__title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--primary-light);
  color: var(--secondary-color);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  /* Navigation */
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav__toggle {
    display: flex;
  }

  /* Hero Section */
  .hero {
    padding: 4rem 0;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__description {
    font-size: 1.125rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Features */
  .features {
    padding: 4rem 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* News */
  .news__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Contact */
  .contact__content {
    gap: 2rem;
  }

  /* Footer */
  .footer__content {
  
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 2rem 0 1rem;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .service-section {
    margin-bottom: 2rem;
  }

  .contact__form {
    padding: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page.active {
  animation: fadeInUp 0.5s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
  display: none;
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav__link:focus,
.form__input:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero__stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: var(--gray-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial__quote {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial__author strong {
  color: var(--primary-color);
  font-weight: 600;
}

.testimonial__author span {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Industry Stats Section */
.industry-stats {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item__number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Featured Article */
.featured-article {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.featured-article::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.featured-article__badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-article__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-article__excerpt {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.featured-article__meta {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.featured-article__meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Enhanced News Cards */
.news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.news-card__read-time {
  color: var(--primary-color);
  font-weight: 500;
}

/* Enhanced Contact Section */
.contact__detail {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact__detail:last-child {
  border-bottom: none;
}

/* Enhanced Footer */
.footer__section {
  margin-bottom: 2rem;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

/* Navigation Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown .nav__link i {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  transition: var(--transition);
}

.nav__dropdown:hover .nav__link i {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu li {
  list-style: none;
}

.nav__dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  border-radius: 0;
  font-size: 0.875rem;
}

.nav__dropdown-link:hover {
  background-color: var(--gray-50);
  color: var(--primary-color);
}

/* Client Detail Pages */
.client-detail {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.client-detail__header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-detail__icon {
  font-size: 2.5rem;
  opacity: 0.9;
}

.client-detail__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
}

.client-detail__content {
  padding: 2rem;
}

.client-detail__description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.client-detail__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-category h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.feature-category ul {
  list-style: none;
  padding: 0;
}

.feature-category li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.feature-category li:last-child {
  border-bottom: none;
}

.feature-category strong {
  color: var(--primary-color);
}

/* Product Showcase */
.product-showcase {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.product-showcase__header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.product-showcase__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.product-showcase__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.product-showcase__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0;
}

.product-showcase__content {
  padding: 2rem;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-feature {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background-color: var(--gray-50);
}

.product-feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-feature p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.product-feature ul {
  list-style: none;
  padding: 0;
}

.product-feature li {
  padding: 0.25rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1rem;
}

.product-feature li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 2rem;
  background-color: var(--gray-50);
  border-radius: var(--radius);
}

.product-stat {
  text-align: center;
}

.product-stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.product-stat__label {
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Platform Detail Pages */
.platform-detail {
  margin-bottom: 4rem;
}

.platform-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.platform-header__title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.platform-header__subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.platform-header__description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}

.platform-header__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.platform-stat {
  text-align: center;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.platform-stat__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.platform-stat__label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.platform-features {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.platform-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.platform-feature {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.platform-feature__icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.platform-feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.platform-feature ul {
  list-style: none;
  padding: 0;
}

.platform-feature li {
  padding: 0.5rem 0;
  color: var(--text-color);
  border-bottom: 1px solid var(--gray-100);
}

.platform-feature li:last-child {
  border-bottom: none;
}

/* Data & Content Pages */
.data-solution {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.data-solution__header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.data-solution__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.data-solution__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.data-solution__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0;
}

.data-solution__content {
  padding: 2rem;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.data-feature {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
}

.data-feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.data-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.data-spec {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
}

.data-endpoints {
  background-color: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius);
}

.data-endpoints h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.endpoint-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.endpoint {
  padding: 1rem;
  background-color: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
}

/* Fan Engagement Pages */
.engagement-platform {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.engagement-platform__header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.engagement-platform__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.engagement-platform__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.engagement-platform__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0;
}

.engagement-platform__content {
  padding: 2rem;
}

.platform-overview {
  margin-bottom: 2rem;
}

.platform-overview p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
}

.platform-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.platform-feature-card {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background-color: var(--gray-50);
}

.platform-feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.platform-feature-card ul {
  list-style: none;
  padding: 0;
}

.platform-feature-card li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1rem;
}

.platform-feature-card li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Coaching & Integrity Pages */
.coaching-solution,
.integrity-solution {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.coaching-solution__header,
.integrity-solution__header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.coaching-solution__icon,
.integrity-solution__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.coaching-solution__title,
.integrity-solution__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.coaching-solution__subtitle,
.integrity-solution__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0;
}

.coaching-solution__content,
.integrity-solution__content {
  padding: 2rem;
}

.coaching-features,
.integrity-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.coaching-feature,
.integrity-service {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background-color: var(--gray-50);
}

.coaching-feature h3,
.integrity-service h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.coaching-feature p,
.integrity-service p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.coaching-feature ul,
.integrity-service ul {
  list-style: none;
  padding: 0;
}

.coaching-feature li,
.integrity-service li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1rem;
}

.coaching-feature li::before,
.integrity-service li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.additional-services {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-lg);
}

.additional-services__title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.additional-service {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.additional-service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.additional-service i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.additional-service h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.additional-service p {
  color: var(--text-light);
  margin: 0;
}

/* Missing styles for specific sections */
.insight-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.insight-category {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background-color: var(--gray-50);
}

.insight-category h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.insight-category ul {
  list-style: none;
  padding: 0;
}

.insight-category li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1rem;
}

.insight-category li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.broadcast-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.broadcast-service {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background-color: var(--gray-50);
}

.broadcast-service h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.broadcast-service p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.broadcast-service ul {
  list-style: none;
  padding: 0;
}

.broadcast-service li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1rem;
}

.broadcast-service li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.moments-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.moments-feature {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background-color: var(--gray-50);
}

.moments-feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.moments-feature p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.moments-feature ul {
  list-style: none;
  padding: 0;
}

.moments-feature li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1rem;
}

.moments-feature li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.sponsorship-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sponsorship-tool {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background-color: var(--gray-50);
}

.sponsorship-tool h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.sponsorship-tool ul {
  list-style: none;
  padding: 0;
}

.sponsorship-tool li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1rem;
}

.sponsorship-tool li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Responsive Updates */
@media (max-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero__stat-number {
    font-size: 1.5rem;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item__number {
    font-size: 2rem;
  }

  .featured-article {
    padding: 2rem;
  }

  .featured-article__title {
    font-size: 1.5rem;
  }

  .featured-article__meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Navigation dropdown responsive */
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    margin-left: 1rem;
    display: none;
  }

  .nav__dropdown.active .nav__dropdown-menu {
    display: block;
  }

  .nav__dropdown:hover .nav__dropdown-menu {
    transform: none;
  }

  .nav__dropdown .nav__link i {
    transition: var(--transition);
  }

  .nav__dropdown.active .nav__link i {
    transform: rotate(180deg);
  }

  /* Sub-pages responsive */
  .client-detail__features {
    grid-template-columns: 1fr;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .platform-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .platform-feature-grid {
    grid-template-columns: 1fr;
  }

  .data-grid {
    grid-template-columns: 1fr;
  }

  .endpoint-list {
    grid-template-columns: 1fr;
  }

  .platform-features-grid {
    grid-template-columns: 1fr;
  }

  .coaching-features,
  .integrity-services {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .broadcast-services {
    grid-template-columns: 1fr;
  }

  .insight-categories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .featured-article {
    padding: 1.5rem;
  }

  .news-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .nav__toggle {
    display: none;
  }

  .main {
    margin-top: 0;
  }

  .page {
    display: block !important;
  }
}