/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 20px 10px;
    }

    h1 {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    /* Tabs Navigation Mobile */
    .tabs-nav {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 30px;
    }

    .tab-button {
        width: 100%;
        padding: 12px 10px;
        margin: 0;
        text-align: center;
        line-height: 1.3;
        font-size: 20px;
    }

    /* Pricing Cards Mobile */
    .pricing-grid {
        gap: 20px;
        margin-top: 20px;
    }

    .pricing-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px 15px;
    }

    /* Speed Title Mobile */
    .speed-title {
        font-size: 1.8em;
        padding: 15px 10px;
        margin: -20px -15px 15px -15px;
    }

    /* Price Section Mobile */
    .old-price {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .price {
        display: flex;
        justify-content: center;
    }

    /* Features List Mobile */
    .features-list {
        margin: 20px 0;
        padding: 12px;
    }

    /* CTA Button Mobile */
    .cta-button {
        padding: 12px 20px;
    }

    /* Promo Note Mobile */
    .promo-note {
        margin-top: 8px;
    }
}

/* Very Small Mobile (max 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.3em;
    }

    .tab-button {
        width: 100%;
        padding: 10px 8px;
        font-size: 20px;
    }
}
