/* Mobile-specific styles for Scale section */

/* Place after scale.css */

@media (max-width: 768px) {
    /* Force box sizing */
    *, *:before, *:after { box-sizing: border-box; }

    .scale-section {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 40px 20px 0 20px; /* equal sides */
        text-align: center;
    }

    .scale-section h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .scale-section h2:nth-of-type(2) {
        font-size: 24px;
        margin-top: 5px;
    }

    .scale-image-container {
        width: 100%;
        display: flex;
        justify-content: center;

        margin-top: 15;
        margin-bottom: 0px;
    }

    .scale-image {
        width: 100%;
        max-width: 600px;
        border-radius: 12px;
        transform: scale(1.05);
    }

    .feature-bullets-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        max-width: 100%;
        padding: 0 10px;
    }

    .feature-bullet-card {
        text-align: center;
        align-items: center;
        padding: 25px 20px;
        min-height: auto;
        margin: 0 auto;
        max-width: 320px;
    }

    .feature-bullet-card h3 {
        font-size: 18px;
        margin: 15px 0 10px;
    }

    .feature-bullet-card p {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }

    .icon-circle {
        margin-bottom: 10px;
    }

    .icon-circle i {
        font-size: 24px;
    }
}

/* Smaller phones */
@media (max-width: 480px) {
    .scale-section {
        padding: 30px 10px;
    }

    .scale-section h2 {
        font-size: 28px;
    }

    .scale-section h2:nth-of-type(2) {
        font-size: 20px;
    }

    /* Image sizing for very small phones */
    .scale-image {
        width: 120%;
        max-width: 400px;
        border-radius: 10px;
        transform: scale(1);
        margin: 0 auto 8px;
    }

    .feature-bullet-card {
        padding: 20px 15px;
        max-width: 280px;
    }

    .feature-bullet-card h3 {
        font-size: 16px;
    }

    .feature-bullet-card p {
        font-size: 13px;
    }

    .icon-circle i {
        font-size: 20px;
    }
}
