@layer base {
  .section {
    padding: var(--spacing-16) 0;
    background: var(--surface);
  }

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

  .header {
    text-align: center;
    margin-bottom: var(--spacing-16);
  }

  .title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-4);
  }

  .subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-8);
  }

  .stat {
    text-align: center;
    background: var(--card);
    padding: var(--spacing-8) var(--spacing-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--animation-duration-normal) ease,
                box-shadow var(--animation-duration-normal) ease;
  }

  .stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .statIcon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
  }

  .statValue {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-2);
    line-height: 1;
  }

  .statLabel {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 500;
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .title {
      font-size: 2rem;
    }

    .subtitle {
      font-size: 1.125rem;
    }

    .stats {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--spacing-6);
    }

    .stat {
      padding: var(--spacing-6) var(--spacing-4);
    }

    .statIcon {
      width: 3rem;
      height: 3rem;
    }

    .statValue {
      font-size: 2rem;
    }

    .statLabel {
      font-size: 0.9375rem;
    }
  }

  @media (max-width: 480px) {
    .section {
      padding: var(--spacing-12) 0;
    }

    .header {
      margin-bottom: var(--spacing-12);
    }

    .stats {
      grid-template-columns: repeat(2, 1fr);
    }

    .statValue {
      font-size: 1.75rem;
    }

    .statLabel {
      font-size: 0.875rem;
    }
  }
}