/* AI Automation Page Styles */

/* Page-level AI styles */
.ai-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    font-family: 'JetBrains Mono', monospace;
}

.ai-page h1, .ai-page h2, .ai-page h3, .ai-page h4, .ai-page h5, .ai-page h6 {
    font-family: 'Orbitron', monospace;
}

/* Enhanced gradient effects for AI theme */
.ai-gradient-text {
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* AI-themed animations */
@keyframes aiPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.ai-icon {
    animation: aiPulse 2s ease-in-out infinite;
}

/* Neural network background effect */
.neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* AI Automation Hero Section Styles */
.ai-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.ai-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ai-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.1);
    border: 2px solid rgba(79, 70, 229, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.ai-badge .badge-icon {
    font-size: 1.2rem;
}

.ai-badge .badge-text {
    font-weight: 600;
    color: #4f46e5;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.ai-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.ai-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #475569;
    max-width: 500px;
}

.ai-hero-benefits {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    justify-content: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.benefit-icon {
    font-size: 1.2rem;
}

.benefit-text {
    font-size: 0.9rem;
    color: #4f46e5;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.ai-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ai-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ai-cta-button.primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.ai-cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.ai-cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #4f46e5;
    border: 2px solid rgba(79, 70, 229, 0.3);
    backdrop-filter: blur(10px);
}

.ai-cta-button.secondary:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: #4f46e5;
}

.cta-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* AI Demo Visual */
.ai-demo-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-workflow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workflow-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

.workflow-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.workflow-title {
    font-weight: 700;
    color: #1e293b;
    flex-grow: 1;
}

.workflow-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #22c55e;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-item.active {
    background: rgba(79, 70, 229, 0.05);
    border-left: 3px solid #4f46e5;
}

.step-icon {
    font-size: 1.2rem;
    width: 32px;
    text-align: center;
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    text-align: center;
}

.step-subtitle {
    font-size: 0.85rem;
    color: #64748b;
}

.step-progress {
    width: 60px;
    height: 4px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
    animation: progressMove 2s ease-in-out infinite;
}

.workflow-impact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(79, 70, 229, 0.1);
}

.impact-item {
    text-align: center;
}

.impact-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.impact-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4f46e5;
    font-family: 'JetBrains Mono', monospace;
}

@keyframes progressMove {
    0% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile Responsiveness for Hero */
@media (max-width: 768px) {
    .ai-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .ai-hero-benefits {
        justify-content: center;
    }
    
    .ai-hero-cta {
        justify-content: center;
    }
    
    .ai-demo-container {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}

/* AI Overview Section Styles */
.ai-overview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.ai-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid rgba(124, 58, 237, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-badge .badge-icon {
    font-size: 1.2rem;
}

.section-badge .badge-text {
    font-weight: 600;
    color: #7c3aed;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ai-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
}

.card-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-example {
    background: rgba(79, 70, 229, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid #4f46e5;
}

.example-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4f46e5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.example-text {
    font-size: 0.95rem;
    color: #374151;
    font-style: italic;
}

/* Transformation Demo */
.ai-transformation-demo {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.demo-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.transformation-grid {
    display: flex;
    justify-content: center;
}

.before-after-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    width: 100%;
}

.before-section, .after-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.section-label {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-label.before {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.section-label.after {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(79, 70, 229, 0.03);
}

.task-icon {
    font-size: 1.2rem;
    width: 32px;
    text-align: center;
}

.task-content {
    flex-grow: 1;
}

.task-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.task-time {
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
}

.arrow-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.transformation-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: pulse 2s infinite;
}

.transformation-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Mobile Responsiveness for Overview */
@media (max-width: 768px) {
    .ai-overview {
        padding: 4rem 0;
    }
    
    .ai-overview-container {
        padding: 0 1rem;
    }
    
    .ai-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-transformation-demo {
        padding: 2rem;
    }
    
    .before-after-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .arrow-section {
        order: 2;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
}

/* AI Business Cases Section Styles */
.ai-business-cases {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.ai-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Industry Tabs */
.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.industry-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(79, 70, 229, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #4f46e5;
    backdrop-filter: blur(10px);
}

.industry-tab:hover {
    border-color: #4f46e5;
    background: rgba(79, 70, 229, 0.05);
    transform: translateY(-2px);
}

.industry-tab.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-label {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Industry Content Panels */
.industry-content {
    position: relative;
    min-height: 600px;
}

.industry-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.industry-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    position: relative;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Use Case Cards */
.use-case-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: fit-content;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.use-case-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.use-case-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.use-case-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.benefit-icon {
    font-size: 1rem;
}

/* Cases CTA */
.cases-cta {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.cta-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ai-business-cases {
        padding: 4rem 0;
    }
    
    .ai-cases-container {
        padding: 0 1rem;
    }
    
    .industry-tabs {
        gap: 0.5rem;
    }
    
    .industry-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .tab-label {
        display: none;
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-card {
        padding: 1.5rem;
    }
    
    .cases-cta {
        padding: 2rem;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .industry-tab {
        padding: 0.5rem 0.75rem;
    }
    
    .tab-icon {
        font-size: 1rem;
    }
}

/* AI Implementation Section Styles */
.ai-implementation {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.ai-implementation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Process Timeline */
.implementation-process {
    margin: 4rem 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(180deg, #4f46e5, rgba(79, 70, 229, 0.3));
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(10px);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.step-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-details {
    margin-bottom: 1.5rem;
}

.detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #374151;
}

.detail-icon {
    font-size: 1rem;
}

.step-outcome {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.outcome-label {
    font-weight: 600;
    color: #16a34a;
    font-size: 0.9rem;
}

.outcome-text {
    color: #374151;
    font-size: 0.9rem;
    font-style: italic;
}

/* Implementation Features */
.implementation-features {
    margin: 4rem 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.features-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    max-width: 320px;
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-description {
    color: #475569;
    line-height: 1.6;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ai-implementation {
        padding: 4rem 0;
    }
    
    .ai-implementation-container {
        padding: 0 1rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .detail-list {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .implementation-features {
        padding: 2rem;
    }
}

/* AI Examples Section Styles */
.ai-examples {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.ai-examples-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Examples Showcase */
.examples-showcase {
    margin: 4rem 0;
}

.example-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.example-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.example-card.featured {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(124, 58, 237, 0.05));
    border: 2px solid rgba(79, 70, 229, 0.2);
    padding: 3rem;
    margin-bottom: 3rem;
}

.example-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.example-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.example-meta {
    flex: 1;
}

.example-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.example-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

/* Featured Example Comparison */
.scenario-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.before-scenario, .after-scenario {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.scenario-label {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.before-scenario .scenario-label {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.after-scenario .scenario-label {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.scenario-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat {
    font-size: 0.9rem;
    padding: 0.5rem;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 6px;
    font-weight: 500;
}

.scenario-description {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.arrow-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.arrow-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4f46e5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Example Impact Metrics */
.example-impact {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    text-align: center;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: #16a34a;
    font-family: 'JetBrains Mono', monospace;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.example-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transformation-summary {
    background: rgba(79, 70, 229, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid #4f46e5;
}

.before-after {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.before, .after {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label {
    font-weight: 600;
    font-size: 0.9rem;
}

.before .label {
    color: #dc2626;
}

.after .label {
    color: #16a34a;
}

.value {
    font-size: 0.9rem;
    font-style: italic;
    color: #374151;
}

.example-description {
    color: #475569;
    line-height: 1.6;
}

.key-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit {
    font-size: 0.9rem;
    padding: 0.5rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 6px;
    font-weight: 500;
    color: #374151;
}

/* Examples CTA */
.examples-cta {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Override for examples-cta section - darker text for better contrast */
.examples-cta .cta-subtitle {
    color: #1e293b;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.cta-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ai-examples {
        padding: 4rem 0;
    }
    
    .ai-examples-container {
        padding: 0 1rem;
    }
    
    .example-card.featured {
        padding: 2rem;
    }
    
    .scenario-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .transformation-arrow {
        order: 2;
    }
    
    .arrow-icon {
        transform: rotate(90deg);
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .examples-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .example-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .before-after {
        gap: 0.75rem;
    }
    
    .before, .after {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
}

/* AI CTA Section Styles */
.ai-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.ai-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.ai-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Neural Network Background */
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
    animation: nodePulse 3s ease-in-out infinite;
}

.neural-node:nth-child(2) {
    animation-delay: 0.5s;
}

.neural-node:nth-child(3) {
    animation-delay: 1s;
}

.neural-node:nth-child(4) {
    animation-delay: 1.5s;
}

.neural-node:nth-child(5) {
    animation-delay: 2s;
}

.neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* CTA Content */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 3;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.2);
    border: 2px solid rgba(79, 70, 229, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.cta-badge .badge-icon {
    font-size: 1.2rem;
}

.cta-badge .badge-text {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* CTA Benefits */
.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    border-color: rgba(79, 70, 229, 0.5);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
}

.benefit-text {
    text-align: left;
}

.benefit-title {
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.benefit-description {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.6);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-subtext {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    flex-shrink: 0;
}

.cta-alternatives {
    text-align: center;
}

.alternative-text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(79, 70, 229, 0.5);
}

.contact-icon {
    font-size: 1rem;
}


/* CTA Stats */
.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(79, 70, 229, 0.5);
}

.stat-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Animations */
@keyframes nodePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ai-cta {
        padding: 4rem 0;
    }
    
    .ai-cta-container {
        padding: 0 1rem;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-text {
        text-align: center;
    }
    
    .cta-button {
        padding: 1.25rem 2rem;
        width: 100%;
        max-width: 350px;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
}