/* Service Pages Specific Styles */

/* Hero Service Section */
.hero-service {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-service .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-service h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-service .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem 0;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Language Switcher */
.language-switcher {
    margin-left: 1rem;
}

.lang-link {
    padding: 0.5rem 1rem;
    background: var(--border-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: var(--bg-white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.overview-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.transformation-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.step h4 {
    color: var(--text-dark);
    margin: 0;
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.approach-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.approach-icon i {
    font-size: 2rem;
    color: white;
}

.approach-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Services Details with Tabs */
.services-details {
    padding: 80px 0;
    background: var(--bg-white);
}

.services-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
}

.tab-content.active {
    display: block;
}

.tab-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-text h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.tab-text ul {
    list-style: none;
}

.tab-text li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tab-text i {
    color: var(--primary-color);
}

/* Tab Visuals */
.strategy-pyramid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pyramid-level {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
}

.pyramid-level:nth-child(1) { width: 100%; }
.pyramid-level:nth-child(2) { width: 85%; margin: 0 auto; }
.pyramid-level:nth-child(3) { width: 70%; margin: 0 auto; }
.pyramid-level:nth-child(4) { width: 55%; margin: 0 auto; }

.process-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.process-step {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tech-layer {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
}

.change-curve {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.curve-point {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.875rem;
}

.curve-point:nth-child(1) { height: 60px; }
.curve-point:nth-child(2) { height: 80px; }
.curve-point:nth-child(3) { height: 100px; }
.curve-point:nth-child(4) { height: 120px; }

/* Case Study */
.case-study {
    padding: 80px 0;
    background: var(--bg-light);
}

.case-study-content {
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.case-info h3,
.case-solution h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.case-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.metric-before,
.metric-after {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.metric-before {
    color: #dc2626;
}

.metric-after {
    color: #16a34a;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.case-results {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.case-results h3 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.result-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--bg-light);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.result-icon i {
    font-size: 1.5rem;
    color: white;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Technologies Section */
.technologies {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.tech-category {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.tech-category h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-item {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .hero-service h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .transformation-steps {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .tab-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-flow-diagram {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .change-curve {
        flex-direction: column;
        gap: 1rem;
    }
    
    .curve-point {
        height: auto !important;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-dropdown:hover .dropdown-content {
        display: none;
    }
    
    .nav-dropdown.active .dropdown-content {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-service {
        padding: 100px 0 60px;
    }
    
    .service-overview,
    .approach,
    .services-details,
    .case-study,
    .technologies,
    .cta-section {
        padding: 60px 0;
    }
    
    .tab-content {
        padding: 2rem;
    }
    
    .case-results {
        padding: 2rem;
    }
    
    .tech-category {
        padding: 1.5rem;
    }
}

/* Process Mining Specific Styles */
.process-mining-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mining-node {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    min-width: 100px;
    text-align: center;
}

.mining-node.start {
    background: var(--gradient-accent);
}

.mining-node.end {
    background: #16a34a;
}

.mining-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.conformance-gauge {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.gauge-container {
    position: relative;
    width: 200px;
    height: 100px;
    background: var(--border-color);
    border-radius: 100px 100px 0 0;
    overflow: hidden;
}

.gauge-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.gauge-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    color: var(--primary-color);
}

.ai-enhancement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.enhancement-item {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.enhancement-item i {
    font-size: 1.5rem;
}

.enhancement-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.prediction-chart {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 1rem;
    height: 150px;
    padding: 1rem;
}

.chart-bar {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 4px 4px 0 0;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive adjustments for Process Mining */
@media (max-width: 768px) {
    .process-mining-visual {
        flex-direction: column;
    }
    
    .mining-arrow {
        transform: rotate(90deg);
    }
    
    .ai-enhancement {
        gap: 0.5rem;
    }
    
    .enhancement-arrow {
        display: none;
    }
    
    .prediction-chart {
        height: 120px;
    }
    
    .chart-bar {
        width: 30px;
    }
}

/* Microsoft 365 Specific Styles */
.savings-card {
    position: relative;
    overflow: hidden;
}

.savings-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #16a34a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.25rem;
}

.academy-card {
    position: relative;
    overflow: hidden;
}

.academy-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.audit-dashboard {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.dashboard-metric {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    background: var(--bg-light);
}

.dashboard-metric .metric-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.dashboard-metric .metric-icon i {
    color: white;
    font-size: 1.25rem;
}

.dashboard-metric .metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.dashboard-metric .metric-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.optimization-chart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.chart-section {
    text-align: center;
}

.chart-section h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cost-bar {
    background: #dc2626;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cost-bar.optimized {
    background: #16a34a;
}

.chart-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.savings {
    color: #16a34a;
    font-weight: 600;
    font-size: 0.875rem;
}

.implementation-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.timeline-step {
    text-align: center;
    flex: 1;
}

.timeline-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
}

.timeline-step .step-label {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.academy-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.academy-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.academy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.academy-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.academy-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.benefit-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
}

.academy-platform {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.platform-header h3 {
    color: var(--text-dark);
    margin: 0;
}

.platform-stats {
    font-size: 0.875rem;
    color: var(--text-light);
}

.course-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.course-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.course-item span {
    flex: 1;
    font-weight: 500;
    color: var(--text-dark);
}

.progress-bar {
    width: 100px;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.pricing-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.pricing-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.pricing-header h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-original {
    font-size: 1.25rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-discounted {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-light);
}

.discount-badge {
    position: absolute;
    top: 40px;
    right: -10px;
    background: #16a34a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.popular-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-features .fa-star {
    color: #f59e0b;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
}

.pricing-note p {
    color: var(--text-light);
    font-style: italic;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.guarantee i {
    color: #f59e0b;
}

/* Responsive adjustments for Microsoft 365 */
@media (max-width: 768px) {
    .audit-dashboard {
        flex-direction: column;
        gap: 1rem;
    }
    
    .optimization-chart {
        flex-direction: column;
        gap: 1rem;
    }
    
    .chart-arrow {
        transform: rotate(90deg);
    }
    
    .implementation-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .academy-features {
        grid-template-columns: 1fr;
    }
    
    .academy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Intelligence Artificielle Specific Styles */
.solution-benefits {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit-stat {
    text-align: center;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 120px;
}

.benefit-stat .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.chatbot-demo {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-header i {
    font-size: 1.25rem;
}

.status-online {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    margin-left: auto;
}

.chat-messages {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.message {
    margin-bottom: 1rem;
    display: flex;
}

.message.user {
    justify-content: flex-end;
}

.message.bot {
    justify-content: flex-start;
}

.message span {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    font-size: 0.875rem;
    line-height: 1.4;
}

.message.user span {
    background: var(--primary-color);
    color: white;
}

.message.bot span {
    background: var(--bg-light);
    color: var(--text-dark);
}

.message.bot.typing span {
    background: var(--border-color);
    color: var(--text-light);
    font-style: italic;
}

.document-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 150px;
}

.flow-step .step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.flow-step .step-icon i {
    font-size: 1.5rem;
    color: white;
}

.flow-step h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.extraction-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.document-preview {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    max-width: 300px;
}

.doc-header {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.field-highlight {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    background: rgba(37, 99, 235, 0.1);
    border-left: 3px solid var(--primary-color);
}

.field-label {
    font-weight: 500;
    color: var(--text-dark);
}

.field-value {
    color: var(--primary-color);
    font-weight: 600;
}

.extraction-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.system-integration {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.system-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.system-icon i {
    font-size: 1.5rem;
    color: white;
}

.custom-ai-process {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.process-step h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.case-studies-grid {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.case-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-card .case-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.case-card .case-icon i {
    font-size: 2rem;
    color: white;
}

.case-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.case-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-results {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-item .result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.result-item .result-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.case-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.cta-features .feature i {
    color: #f59e0b;
}

/* Responsive adjustments for Intelligence Artificielle */
@media (max-width: 768px) {
    .solution-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .document-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .extraction-demo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .extraction-arrow {
        transform: rotate(90deg);
    }
    
    .custom-ai-process {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .chatbot-demo {
        max-width: 100%;
    }
    
    .document-preview {
        max-width: 100%;
    }
    
    .case-card {
        padding: 1.5rem;
    }
}
