.download-hero {
    padding: 100px 0;
    background: var(--light-bg);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.store-buttons {
    display: flex;
    gap: 16px;
    margin: 32px 0;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--light-text-primary);
    color: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.store-btn i {
    font-size: 28px;
}

.store-btn div {
    display: flex;
    flex-direction: column;
}

.store-btn span {
    font-size: 12px;
}

.store-btn strong {
    font-size: 18px;
}

.app-info {
    display: flex;
    gap: 32px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text-secondary);
}

.info-item i {
    color: var(--accent);
}

.app-mockup {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.floating-feature {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.feature-1 {
    top: 20%;
    left: -10%;
}

.feature-2 {
    bottom: 20%;
    right: -10%;
}

.qr-section {
    padding: 80px 0;
    text-align: center;
}

.qr-box {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
    background: var(--light-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.qr-code img {
    width: 200px;
    height: 200px;
    margin: 24px 0;
}

@media (max-width: 1024px) {
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .app-info {
        justify-content: center;
    }
}