/* ── DOWNLOAD APP PAGE STYLE SYSTEM ── */

.download-apps-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem 5rem;
    background-color: #fafbfc;
}



/* Premium Card Container */
.premium-card {
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
}

.premium-card:hover {
    border-color: rgba(62, 213, 152, 0.4);
    box-shadow: 0 15px 40px rgba(62, 213, 152, 0.08);
}

.premium-card-body {
    display: flex;
    gap: 4rem;
    align-items: center;
}

/* Left Side: Presentation */
.app-presentation {
    flex: 1.2;
}

.app-branding {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.app-logo {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
    color: #3ED598;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(11, 31, 58, 0.15);
}

.app-meta-title h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.app-version {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

.app-intro-desc {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.app-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.app-features-list li:last-child {
    margin-bottom: 0;
}

.app-features-list li i {
    color: #3ED598;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Right Side: Actions Panel */
.app-actions-panel {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 1px solid var(--border);
    padding-left: 4rem;
    text-align: center;
}

.qr-code-section {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code-wrap {
    width: 140px;
    height: 140px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.qr-code-wrap:hover {
    border-color: #3ED598;
}

.qr-code-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.75rem;
    gap: 6px;
}

.qr-placeholder i {
    font-size: 2.2rem;
    color: #e2e8f0;
}

.qr-hint {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
    max-width: 220px;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 240px;
}

.store-btn {
    display: flex;
    align-items: center;
    background: #0f172a;
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.75rem 1.4rem;
    border-radius: 10px;
    gap: 0.8rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.store-btn:hover {
    background: #1e293b;
    border-color: rgba(62, 213, 152, 0.4);
    transform: translateY(-2px);
}

.store-btn i {
    font-size: 1.6rem;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.store-btn small {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.store-btn strong {
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive styles */
@media (max-width: 991px) {
    .download-page-header h1 {
        font-size: 2.2rem;
    }
    
    .premium-card {
        padding: 3rem 2rem;
    }
    
    .premium-card-body {
        gap: 3rem;
    }
    
    .app-actions-panel {
        padding-left: 3rem;
    }
}

@media (max-width: 768px) {
    .download-apps-section {
        padding: 6rem 1rem 4rem;
    }

    .download-page-header {
        margin-bottom: 2.5rem;
    }
    
    .premium-card-body {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
    }
    
    .app-actions-panel {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 2.5rem;
    }
    
    .store-buttons {
        max-width: 280px;
        margin: 0 auto;
    }
}
