/* =====================================================
   Mobile-Specific Styles
   ===================================================== */

/* General Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 24px; /* Adjusted padding for tablets */
    }

    .vsl-headline {
        font-size: 36px;
        line-height: 44px;
    }

    /* Underline removed from main CSS - no longer needed */

    .assessment-subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .vsl-subtext {
        font-size: 16px;
        line-height: 24px;
        max-width: 90%;
        margin: 0 auto 32px;
    }

    .skills-features,
    .features-grid,
    .experience-stats-top {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        gap: 24px;
    }

    /* Two-card layout becomes single column on tablets */
    .offerings-grid-two {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 32px auto 0;
    }

    .next-steps-flow {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: -20px 0;
    }

    .pricing-card {
        margin-bottom: 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .modal-content {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px; /* Further reduced padding for mobile */
    }

    .vsl-headline {
        font-size: 28px;
        line-height: 36px;
    }

    /* Underline removed from main CSS - no longer needed */

    h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .assessment-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .skill-box,
    .feature-item,
    .top-stat-item {
        padding: 20px;
    }
    
    .pricing-wrapper {
        padding: 0;
    }

    .pricing-card {
        padding: 24px;
    }
    
    .criteria-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .modal-header {
        padding: 16px;
    }

    .modal-body {
        padding: 16px;
    }
} 