/* ================================================================
   TABLET STYLES - 768px to 1023px
   ================================================================ */

@media (min-width: 768px) {
  
  /* Typography */
  h1 {
    font-size: var(--text-4xl);
  }
  
  h2 {
    font-size: var(--text-3xl);
  }
  
  .section-title {
    font-size: var(--text-4xl);
  }
  
  /* Container */
  .container {
    max-width: var(--container-tablet);
    padding: 0 var(--space-lg);
  }
  
  /* Section Spacing */
  section {
    padding: var(--space-3xl) 0;
  }
  
  /* Header */
  .header-container {
    padding: var(--space-md) var(--space-lg);
  }
  
  .logo {
    font-size: var(--text-xl);
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  /* Hero */
  .hero {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-description {
    font-size: var(--text-xl);
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Grid System */
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Cards */
  .card {
    padding: var(--space-xl);
  }
  
  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  /* Courses */
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  /* CTA */
  .cta {
    padding: var(--space-3xl) var(--space-2xl);
    margin: var(--space-3xl) var(--space-lg);
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

