/* ========== GLOBAL BUTTON STYLES ========== */

.experience {
    cursor: pointer;
    z-index: 3;
    width: 28rem;
    height: 6.0rem;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, #027BFF, #4da3ff);
    border: none;
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 600;
    white-space: normal;
    box-shadow: 0 0.4rem 1.6rem rgba(2, 123, 255, 0.3);
    padding: 0 2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.experience:hover {
    background: linear-gradient(135deg, #0066db, #3d93ff);
    box-shadow: 0 0.6rem 2.4rem rgba(2, 123, 255, 0.4);
    transform: translateY(-0.2rem);
    color: #ffffff;
}

.btn-consult {
    cursor: pointer;
    width: 23rem;
    /* Thu nhỏ để vừa hàng 3 nút */
    height: 5.6rem;
    border-radius: 1.2rem;
    background: #ffffff;
    border: 0.2rem solid #0055CC;
    color: #0055CC;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 0.4rem 1.2rem rgba(2, 123, 255, 0.08);
}

.btn-consult:hover {
    background: #f0f7ff;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 1.6rem rgba(2, 123, 255, 0.15);
    color: #003d99;
}

.btn-consult i {
    font-size: 1.8rem;
}

/* Specific variants */
.experience.small {
    width: 18rem;
    height: 4.8rem;
}

/* Responsive adjustment */
@media (max-width: 768px) {

    .experience,
    .btn-consult {
        width: 30rem;
        height: 6rem;
        font-size: 1.8rem;
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    /* Cưỡng bức nằm trên 1 hàng trên Desktop */
    gap: 2rem;
    width: 100%;
    margin-top: 3.2rem;
}

.footer-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    margin-top: 3.2rem;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-wrap: wrap !important;
        flex-direction: column;
        gap: 1.6rem;
    }

    .hero-buttons .btn-consult {
        display: none !important;
        /* Ẩn thực sự trên Mobile để nhường chỗ cho App Store */
    }

    .hero-buttons .experience,
    .hero-buttons .btn-download-app-device {
        width: 100% !important;
        max-width: 32rem !important;
        height: 5.4rem !important;
        font-size: 1.5rem !important;
        border-radius: 1.2rem !important;
        margin: 0 auto;
        padding: 0 2rem !important;
        white-space: nowrap;
    }
}

.btn-download-app-device {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 19rem;
    height: 5.6rem;
    border-radius: 1.2rem;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    gap: 0;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.btn-download-app-device:hover {
    background: transparent;
    transform: translateY(-0.2rem);
    color: #ffffff;
}

.btn-download-app-device .svg-appstore {
    width: 100%;
    height: 100%;
    display: block;
    flex-shrink: 0;
}

.btn-download-app-device b {
    color: #ffffff;
    margin-left: 0.4rem;
}

/* Ẩn nút nhận tư vấn 1-1 trên thiết bị thực tế (mobile/tablet) */
body.is-mobile .hero-buttons .btn-consult,
body.is-tablet .hero-buttons .btn-consult {
    display: none !important;
}

/* Kích thước đồng nhất cho nút Download trên các nền tảng body class */
body.is-mobile .btn-download-app-device,
body.is-tablet .btn-download-app-device {
    display: flex !important;
}