/* Download Page Styles */
.download-hero {
    background: linear-gradient(135deg, var(--red) 0%, #c53030 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.download-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--white);
}

.download-hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.6;
}

.trial-features {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Download Form Section */
.download-section {
    background-color: var(--light-gray);
    padding: 5rem 2rem;
}

.download-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.download-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--red);
}

.download-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.download-form-wrapper p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
}

.form-group input {
    padding: 1rem;
    border: 2px solid #e2e2e2;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    appearance: none;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--red);
    border-color: var(--red);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 3px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: linear-gradient(135deg, var(--red) 0%, #c53030 100%);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Download Info */
.download-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--black);
}

.download-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.download-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.download-benefits li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

.download-benefits li strong {
    color: var(--red);
    font-weight: 600;
}

.system-requirements {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.system-requirements h4 {
    margin-bottom: 1rem;
    color: var(--black);
}

.system-requirements ul {
    list-style: none;
    padding-left: 0;
}

.system-requirements li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.system-requirements li:before {
    content: "•";
    color: var(--red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Form Results */
.form-result {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid;
}

.form-result.success {
    background-color: #f0fdf4;
    border-left-color: var(--success-green);
    color: #166534;
}

.form-result.error {
    background-color: #fef2f2;
    border-left-color: var(--error-red);
    color: #b91c1c;
}

.form-result h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.form-result ol {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.form-result ol li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Steps Section */
.steps-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.steps-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--red);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.step p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--red);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--red);
}

.faq-item h4 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-form-wrapper, 
    .download-info {
        padding: 2rem;
    }
    
    .download-hero h1 {
        font-size: 2.5rem;
    }
    
    .download-hero h2 {
        font-size: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}