/* Download Page Styles */
.download-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.download-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.download-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.download-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.download-benefits h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
}

.system-requirements {
    margin-top: 48px;
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.system-requirements h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.system-requirements ul {
    list-style: none;
}

.system-requirements li {
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.system-requirements li i {
    color: #667eea;
    font-size: 14px;
}

.download-form-container {
    position: sticky;
    top: 100px;
}

.download-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.download-form h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-subtitle {
    color: #666;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.required {
    color: #e74c3c;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-download {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-download i {
    font-size: 18px;
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    display: none;
    font-weight: 600;
    text-align: center;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.privacy-note {
    margin-top: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.privacy-note i {
    color: #667eea;
    font-size: 18px;
    margin-top: 2px;
}

.privacy-note p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.download-info-box {
    margin-top: 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.download-info-box i {
    color: #856404;
    font-size: 20px;
    margin-top: 2px;
}

.download-info-box p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

.download-info-box a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 968px) {
    .download-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-form-container {
        position: relative;
        top: 0;
    }

    .download-hero h1 {
        font-size: 36px;
    }
}