.mobile-app-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.outer-container {
    padding: 30px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 70px;
    box-shadow: var(--box-shadow-inset);
}

.glass-banner {
    max-height: 500px;
    background-color: var(--brand-primary);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.store-btn {
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #1a1a1a !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: var(--box-shadow-inset);
}

.store-btn img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

.store-btn .text-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.store-btn p {
    margin: 0 !important;
    padding: 0 !important;
}

.store-btn:hover {
    transform: translateY(-2px);
    background-color: #ffffff;
    box-shadow: var(--brand-box-shadow);
}

.phone-mockup {
    position: relative;
    width: 45%;
    display: flex;
    justify-content: flex-end;
}

.phone-mockup img {
    width: 100%;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Tailwind-style utilities if not present */
.max-w-md {
    max-width: 28rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.font-bold {
    font-weight: 700;
}

.mb-4 {
    margin-bottom: 1rem;
}

.leading-tight {
    line-height: 1.25;
}

.text-blue-100 {
    color: #dbeafe;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-lg {
    font-size: 1.125rem;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 1rem;
}

.text-left {
    text-align: left;
}

.text-\[10px\] {
    font-size: 10px;
}

.uppercase {
    text-transform: uppercase;
}

.opacity-70 {
    opacity: 0.7;
}

.leading-none {
    line-height: 1;
}

.text-sm {
    font-size: 0.875rem;
}

.mt-4 {
    margin-top: 1rem;
}

.inline-block {
    display: inline-block;
}

.text-xs {
    font-size: 0.75rem;
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7);
}

.hover\:text-white:hover {
    color: #fff;
}

.underline {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .glass-banner {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .phone-mockup {
        max-width: 150px;
    }

    .max-w-md {
        max-width: 100%;
    }

    .flex-wrap {
        justify-content: center;
    }
}