/* Pilot Program Section */
.pilot-program {
    padding: 6rem 0;
    background: #EFE7E5;
    text-align: center;
}

.pilot-program .section-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pilot-program .section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.2;
    text-align: center;
}

.pilot-program .section-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.2;
    text-align: center;
}

.pilot-program .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pilot-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.pilot-description {
    font-size: 1.25rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.pilot-description h2 {
    font-size: 2rem;
    color: #3d3953;
    margin-bottom: 1.5rem;
}

.pilot-description p {
    font-size: 1.25rem;
    color: var(--light-text);
    line-height: 1.6;
}

.pilot-benefits {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
    text-align: center;
}

.pilot-benefits h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.pilot-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 800px;
}

.pilot-benefits li {
    text-align: center;
    padding: 0 1rem;
}

.pilot-benefits h3 {
    font-size: 1.25rem;
    color: #3d3953;
    margin-bottom: 0.75rem;
}

.pilot-benefits p {
    color: var(--light-text);
    line-height: 1.6;
}

.pilot-cta {
    text-align: center;
    margin-top: 32px;
}

/* Dedicated pilot page styles */
.pilot-requirements {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
}

.pilot-requirements h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.pilot-requirements ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.pilot-requirements li {
    color: var(--light-text);
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pilot-requirements li:last-child {
    border-bottom: none;
}

.pilot-requirements li::before {
    content: "✓";
    color: #3d3953;
    font-weight: bold;
}

.pilot-application {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.pilot-application h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.pilot-application p {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 2rem;
}

.pilot-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3d3953;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #3d3953;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    background-color: #2B273D;
}

/* Responsive styles */
@media (max-width: 768px) {
    .pilot-program {
        padding: 5rem 0 4rem;
    }
    
    .pilot-program .section-header {
        margin-bottom: 32px;
        padding: 0 1.5rem;
    }
    
    .pilot-program .section-header h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .pilot-program .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .pilot-program .section-subtitle {
        font-size: 1.1rem;
    }
    
    .pilot-content {
        padding: 0 0.5rem;
    }
    
    .benefits-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .benefit-card,
    .requirement-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .application-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 0.875rem;
    }
    
    .pilot-benefits,
    .pilot-requirements,
    .pilot-application {
        padding: 2rem 1rem;
        margin: 0 0.25rem 2rem;
    }
    
    .pilot-benefits ul {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pilot-benefits li {
        padding: 0;
    }
    
    .pilot-benefits h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pilot-benefits h3 {
        font-size: 1.125rem;
    }
} 