/* Audit RSE IA - Styles Spécifiques */
.solution-page.audit-rse-page {
    background: var(--dark);
}

/* Hero Section Audit */
.solution-hero.audit-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    overflow: hidden;
}

.audit-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ai-network {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(9, 132, 227, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(108, 92, 231, 0.06) 0%, transparent 50%);
    position: relative;
}

.ai-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 170, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(9, 132, 227, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.3) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: networkPulse 4s ease-in-out infinite;
}

@keyframes networkPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
    backdrop-filter: blur(10px);
}

.audit-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.audit-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.audit-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Processus Audit */
.audit-process {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-glow);
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.process-step ul {
    list-style: none;
    text-align: left;
}

.process-step li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.process-step li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    text-align: left;
}

.feature-card li {
    padding: 0.4rem 0;
    color: var(--gray-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.feature-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.demo-content > p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.demo-steps {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.demo-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    flex: 1;
    transition: var(--transition);
}

.demo-step.active {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.step-indicator {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sector-selector {
    margin-bottom: 2rem;
}

.sector-selector h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gray-light);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sector-btn {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.sector-btn:hover,
.sector-btn.active {
    background: rgba(0, 212, 170, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-demo {
    width: 100%;
    justify-content: center;
}

/* Demo Visual */
.demo-visual {
    position: relative;
    height: 400px;
}

.ai-visualization {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.data-flow {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--gradient-primary);
    animation: dataFlow 3s linear infinite;
}

.data-flow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: dataParticle 3s linear infinite;
}

@keyframes dataFlow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes dataParticle {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.analysis-node {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow);
    animation: nodePulse 2s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.results-panel {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: resultsSlide 4s ease-in-out infinite;
}

@keyframes resultsSlide {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(-20px); opacity: 1; }
}

/* Pricing Section Audit */
.pricing-section {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    color: var(--gray);
    font-size: 0.9rem;
}

.plan-description {
    color: var(--gray);
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-included {
    color: var(--light);
}

.feature-excluded {
    color: var(--gray);
    text-decoration: line-through;
}

.feature-included i {
    color: var(--primary);
}

.feature-excluded i {
    color: var(--gray);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Styles pour le formulaire enrichi */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
    color: var(--gray);
}

.checkbox input[type="checkbox"] {
    margin: 0;
}

.form-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section h5 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.audit-simulator {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.simulator-progress {
    margin: 2rem 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    margin-top: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.simulator-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.simulator-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
    opacity: 0.5;
}

.simulator-step.active {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid var(--primary);
    opacity: 1;
}

.simulator-step i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content {
    margin: 2rem 0;
    min-height: 200px;
}

.data-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.data-category {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.data-category i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.data-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 212, 170, 0.2);
    color: var(--primary);
    font-weight: 600;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.simulator-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    margin-top: 1rem;
}

.recommendation {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    border-left: 4px solid;
    margin-bottom: 1rem;
}

.priority-high {
    background: rgba(231, 76, 60, 0.1);
    border-left-color: #e74c3c;
}

.priority-medium {
    background: rgba(241, 196, 15, 0.1);
    border-left-color: #f1c40f;
}

.priority-low {
    background: rgba(46, 204, 113, 0.1);
    border-left-color: #2ecc71;
}

.final-results {
    text-align: center;
}

.results-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.score-display {
    text-align: center;
}

.overall-score {
    margin-bottom: 2rem;
}

.score-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pillar-scores {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 1s ease;
}

.analyzing-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
}

.recommendations {
    margin-top: 1.5rem;
}

.results-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    text-align: left;
}

.results-details h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Styles pour les nouvelles sections du formulaire */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Styles pour les résultats détaillés */
.result-comparison {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.result-detail {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Styles pour la feuille de route */
.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.timeline-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content strong {
    display: block;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Styles responsifs améliorés */
@media (max-width: 1024px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .demo-visual {
        height: 300px;
    }
    
    .audit-hero .hero-title {
        font-size: 3rem;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .results-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .audit-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-steps {
        flex-direction: column;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .results-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-grid .form-section > div {
        grid-template-columns: 1fr !important;
    }
    
    .results-actions {
        flex-direction: column;
    }
    
    .simulator-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .audit-hero .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .results-actions {
        flex-direction: column;
    }
    
    .simulator-steps {
        grid-template-columns: 1fr;
    }
    
    .data-category {
        flex-direction: column;
        text-align: center;
    }
    
    .data-category i {
        margin-top: 0;
    }
}

/* Animations supplémentaires pour l'expérience utilisateur */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* États de chargement améliorés */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Améliorations pour l'accessibilité */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states pour l'accessibilité */
.form-input:focus,
.sector-btn:focus,
.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Styles d'impression */
@media print {
    .nav-header,
    .demo-section,
    .pricing-section,
    .cta-section,
    footer {
        display: none !important;
    }
    
    .solution-hero,
    .audit-process,
    .features-section {
        padding: 2rem 0 !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Correction pour le menu déroulant */
.form-input option {
    background: var(--dark);
    color: var(--light);
    padding: 0.75rem 1rem;
    border: none;
}

.form-input select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300d4aa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

/* Pour assurer la visibilité sur tous les navigateurs */
.form-input select option:checked {
    background: var(--primary);
    color: var(--dark);
}

.form-input select option:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Correction spécifique pour Firefox */
@-moz-document url-prefix() {
    .form-input select {
        color: var(--light);
        background-color: var(--dark);
    }
    
    .form-input select option {
        background: var(--dark);
        color: var(--light);
    }
}

/* Pour Internet Explorer */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-input select {
        color: var(--light);
        background: var(--dark);
    }
    
    .form-input select option {
        background: var(--dark);
        color: var(--light);
    }
}