/* ====================================
   TABLET STYLES - 768px to 1023px
   ==================================== */

@media (min-width: 768px) and (max-width: 1023px) {
    /* Typography */
    h1, .h1 {
        font-size: var(--font-size-5xl);
    }
    
    .section-title {
        font-size: var(--font-size-4xl);
    }
    
    /* Container */
    .container {
        max-width: var(--container-lg);
    }
    
    /* Header */
    .header-wrapper {
        height: 70px;
    }
    
    .logo img {
        width: 140px;
    }
    
    .nav-menu {
        gap: var(--space-3);
    }
    
    .nav-link {
        font-size: var(--font-size-sm);
    }
    
    /* Grid Systems */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Course Card */
    .course-meta {
        flex-wrap: wrap;
    }
    
    /* Hero Section */
    .hero-grid {
        gap: var(--space-8);
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-image-wrapper {
        flex: 1;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    /* Forms */
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        gap: var(--space-8);
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Quiz */
    .quiz-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Process Steps */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    /* Pricing Cards */
    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    /* Hide mobile-only, show tablet */
    .mobile-only {
        display: none;
    }
    
    .tablet-only {
        display: block;
    }
}