/* ===============================
   APPS SECTION
================================ */

.apps-section {
    width: 100%;
    background-color: #f5f5f7;

    margin-top: 16px;
    padding: 72px 24px;
}

.apps-content {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.apps-content h2 {
    margin: 0;

    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;

    color: #111;
}

.apps-content > p {
    margin: 14px 0 0;

    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;

    color: #555;
}

.apps-feature-card {
    width: 100%;
    max-width: 900px;

    margin-top: 42px;
    padding: 36px 28px;

    background-color: #eeeeef;
    border-radius: 32px;

    border: 1px solid rgba(0, 0, 0, 0.04);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.10),
        0 2px 6px rgba(0, 0, 0, 0.05);

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.apps-text h3 {
    margin: 0;

    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;

    color: #111;
}

.apps-text p {
    margin: 12px 0 0;

    font-size: 20px;
    line-height: 1.35;

    color: #555;
}

.apps-image-wrapper {
    margin-top: 34px;

    width: 100%;
    max-width: 220px;
}

.apps-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 44px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.apps-buttons {
    margin-top: 36px;

    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.apps-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 22px;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.apps-btn.primary {
    background-color: #0071e3;
    color: white;
}

.apps-btn.secondary {
    background-color: white;
    color: #0071e3;
}


/* ===== MOBILE ===== */

@media (max-width: 768px) {
    .apps-section {
        margin-top: 12px;
        padding: 56px 22px;
    }

    .apps-content h2 {
        font-size: 42px;
    }

    .apps-content > p {
        font-size: 20px;
    }

    .apps-feature-card {
        margin-top: 34px;
        padding: 30px 22px;

        border-radius: 28px;
    }

    .apps-text h3 {
        font-size: 26px;
    }

    .apps-text p {
        font-size: 18px;
    }

    .apps-image-wrapper {
        margin-top: 28px;
        max-width: 200px;
    }

    .apps-buttons {
        margin-top: 30px;
        gap: 12px;
    }

    .apps-btn {
        min-height: 42px;
        padding: 0 18px;

        font-size: 14px;
    }
}