/* AI Development Page Styles - Premium Blue Design */

/* Hero Section with YouTube Video */
.ai-hero-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f3a 25%, #2a2f5a 50%, #1a1f3a 75%, #0a0f1c 100%);
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Premium Background Effects */
.ai-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 58, 138, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(29, 78, 216, 0.18) 0%, transparent 48%);
    z-index: 1;
}

.ai-hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

/* Hero Grid Layout */
.ai-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side: Content */
.ai-hero-content {
    padding: 40px;
    background: rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 20px 50px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-hero-content:hover {
    background: rgba(30, 58, 138, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 25px 60px rgba(15, 23, 42, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Premium Blue Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(30, 58, 138, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ai-badge:hover {
    background: rgba(30, 58, 138, 0.3);
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: #93c5fd;
}

.ai-badge svg {
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.ai-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 35px rgba(59, 130, 246, 0.4);
}

.ai-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.1rem, 1.8vw, 1.2rem);
    color: #bfdbfe; /* Lighter blue for better contrast */
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Buttons */
.ai-hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.ai-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.ai-btn-primary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    box-shadow: 
        0 10px 30px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ai-btn-primary::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;
}

.ai-btn-primary:hover::before {
    left: 100%;
}

.ai-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(30, 58, 138, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.ai-btn-outline {
    background: rgba(30, 58, 138, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 6px 20px rgba(15, 23, 42, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-btn-outline:hover {
    background: rgba(30, 58, 138, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(15, 23, 42, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: #93c5fd;
}

.ai-btn svg {
    transition: transform 0.3s ease;
}

.ai-btn:hover svg {
    transform: translateX(3px);
}

/* Right Side: YouTube Video */
.ai-hero-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(15, 23, 42, 0.5),
        0 0 30px rgba(30, 58, 138, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateY(-5deg);
    background: rgba(30, 58, 138, 0.1);
    backdrop-filter: blur(20px);
}

.ai-hero-video:hover {
    transform: perspective(1000px) rotateY(-2deg) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(15, 23, 42, 0.6),
        0 0 40px rgba(30, 58, 138, 0.5);
    border-color: rgba(59, 130, 246, 0.5);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
}

.video-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.video-badge {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Neural Network Animation */
.neural-network {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    animation: pulse 3s infinite alternate;
}

.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.8));
    transform-origin: left center;
    animation: connection-pulse 4s infinite alternate;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes connection-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.node-1 { top: 20%; left: 60%; animation-delay: 0s; }
.node-2 { top: 35%; left: 75%; animation-delay: 0.5s; }
.node-3 { top: 50%; left: 65%; animation-delay: 1s; }
.node-4 { top: 65%; left: 80%; animation-delay: 1.5s; }
.node-5 { top: 30%; left: 90%; animation-delay: 2s; }
.node-6 { top: 70%; left: 60%; animation-delay: 2.5s; }
.node-7 { top: 80%; left: 85%; animation-delay: 3s; }

.connection-1 {
    top: 20%;
    left: 60%;
    width: 15%;
    transform: rotate(30deg);
    animation-delay: 0.2s;
}

.connection-2 {
    top: 35%;
    left: 75%;
    width: 15%;
    transform: rotate(-20deg);
    animation-delay: 0.7s;
}

.connection-3 {
    top: 50%;
    left: 65%;
    width: 15%;
    transform: rotate(40deg);
    animation-delay: 1.2s;
}

.connection-4 {
    top: 30%;
    left: 90%;
    width: 10%;
    transform: rotate(-60deg);
    animation-delay: 1.7s;
}

.connection-5 {
    top: 65%;
    left: 80%;
    width: 10%;
    transform: rotate(-30deg);
    animation-delay: 2.2s;
}

.connection-6 {
    top: 70%;
    left: 60%;
    width: 25%;
    transform: rotate(20deg);
    animation-delay: 2.7s;
}

/* Background Elements */
.ai-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.ai-bg-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(30, 64, 175, 0.1) 50%, transparent 70%);
    opacity: 0.7;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 
        0 8px 30px rgba(30, 58, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-bg-element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
}

.ai-bg-element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
}

.ai-bg-element-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
}

/* Overview Section */
.ai-overview-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f3a 25%, #2a2f5a 50%, #1a1f3a 75%, #0a0f1c 100%);
    padding: 100px 0;
    overflow: hidden;
}

.ai-overview-container {
    background: rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 20px 50px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-overview-container:hover {
    background: rgba(30, 58, 138, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 25px 60px rgba(15, 23, 42, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.ai-overview-header {
    text-align: center;
    margin-bottom: 40px;
}

.ai-section-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 35px rgba(59, 130, 246, 0.4);
}

.ai-section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.ai-overview-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    color: #bfdbfe;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ai-overview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ai-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(15, 23, 42, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-feature-card:hover {
    background: rgba(30, 58, 138, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ai-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ai-feature-card:hover .ai-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.ai-feature-content h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.ai-feature-card:hover .ai-feature-content h3 {
    color: #60a5fa;
}

.ai-feature-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #bfdbfe;
    line-height: 1.6;
    margin: 0;
}

/* Services Section - ENHANCED DESIGN */
.ai-services-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f3a 25%, #2a2f5a 50%, #1a1f3a 75%, #0a0f1c 100%);
    padding: 100px 0;
    overflow: hidden;
}

.ai-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-section-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: #bfdbfe;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* New Services Tabs Design */
.ai-services-showcase {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 20px 50px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-services-showcase:hover {
    box-shadow: 
        0 25px 60px rgba(15, 23, 42, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.ai-services-tabs {
    display: flex;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.3);
    position: relative;
    z-index: 2;
}

.ai-service-tab {
    flex: 1;
    padding: 20px 15px;
    background: transparent;
    border: none;
    color: #bfdbfe;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.ai-service-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.ai-service-tab.active {
    color: #60a5fa;
    background: rgba(30, 58, 138, 0.2);
}

.ai-service-tab.active::after {
    transform: scaleX(1);
}

.ai-service-tab:hover {
    color: #93c5fd;
    background: rgba(30, 58, 138, 0.15);
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(30, 58, 138, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ai-service-tab.active .tab-icon {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

.ai-service-tab:hover .tab-icon {
    transform: scale(1.1);
}

/* Service Panels */
.ai-services-content {
    position: relative;
}

.ai-service-panel {
    display: none;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.ai-service-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-service-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ai-service-panel-content {
    padding: 40px;
}

.ai-service-panel-badge {
    display: inline-block;
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 20px;
}

.ai-service-panel-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ai-service-panel-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    color: #bfdbfe;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ai-service-panel-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.ai-service-panel-features li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ai-service-panel-features li:last-child {
    margin-bottom: 0;
}

.feature-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(30, 58, 138, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    transition: all 0.3s ease;
    margin-top: 3px;
}

.ai-service-panel-features li:hover .feature-check {
    background: rgba(30, 58, 138, 0.3);
    transform: scale(1.1);
    color: #93c5fd;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.ai-service-panel-features li:hover .feature-content h4 {
    color: #60a5fa;
}

.feature-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #bfdbfe;
    line-height: 1.5;
    margin: 0;
}

.ai-service-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ai-service-panel-btn::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;
}

.ai-service-panel-btn:hover::before {
    left: 100%;
}

.ai-service-panel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.ai-service-panel-btn svg {
    transition: transform 0.3s ease;
}

.ai-service-panel-btn:hover svg {
    transform: translateX(3px);
}

/* Service Panel Visual */
.ai-service-panel-visual {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-service-panel-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(15, 23, 42, 0.4),
        0 0 20px rgba(30, 58, 138, 0.3);
    height: 170px;
    transition: all 0.4s ease;
}

.ai-service-panel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.2) 0%,
        rgba(15, 23, 42, 0.4) 100%
    );
    z-index: 1;
    transition: all 0.4s ease;
}

.ai-service-panel-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(15, 23, 42, 0.5),
        0 0 30px rgba(30, 58, 138, 0.4);
}

.ai-service-panel-image:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.1) 0%,
        rgba(15, 23, 42, 0.3) 100%
    );
}

.ai-service-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ai-service-panel-image:hover img {
    transform: scale(1.05);
}

/* Service Stats */
.ai-service-stats {
    display: flex;
    gap: 20px;
}

.ai-stat {
    flex: 1;
    background: rgba(30, 58, 138, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-stat:hover {
    background: rgba(30, 58, 138, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(15, 23, 42, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-stat-value {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.ai-stat-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    color: #bfdbfe;
}

/* Tech Badges */
.ai-service-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-tech-badge {
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.ai-tech-badge:hover {
    background: rgba(30, 58, 138, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 
        0 5px 15px rgba(30, 58, 138, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #93c5fd;
}

/* Neural Network Small for Services Section */
.neural-network-small.services-network {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 200px;
    height: 200px;
    opacity: 0.4;
}

/* Benefits Section */
.ai-benefits-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f3a 25%, #2a2f5a 50%, #1a1f3a 75%, #0a0f1c 100%);
    padding: 100px 0;
    overflow: hidden;
}

.ai-benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-benefit-card {
    background: rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 40px rgba(15, 23, 42, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-benefit-card:hover {
    background: rgba(30, 58, 138, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ai-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ai-benefit-card:hover .ai-benefit-icon {
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.ai-benefit-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ai-benefit-card:hover .ai-benefit-title {
    color: #60a5fa;
}

.ai-benefit-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #bfdbfe;
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.ai-process-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f3a 25%, #2a2f5a 50%, #1a1f3a 75%, #0a0f1c 100%);
    padding: 100px 0;
    overflow: hidden;
}

.ai-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.ai-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #1e40af, #3b82f6, #60a5fa);
    border-radius: 1px;
}

.ai-process-step {
    position: relative;
    margin-bottom: 50px;
    padding-left: 30px;
}

.ai-process-step:last-child {
    margin-bottom: 0;
}

.ai-step-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 
        0 8px 25px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.ai-process-step:hover .ai-step-number {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.ai-step-content {
    background: rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(15, 23, 42, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-process-step:hover .ai-step-content {
    background: rgba(30, 58, 138, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
    box-shadow: 
        0 15px 40px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ai-step-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.ai-process-step:hover .ai-step-title {
    color: #60a5fa;
}

.ai-step-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #bfdbfe;
    line-height: 1.6;
    margin: 0;
}

/* Case Studies Section */
.ai-case-studies-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f3a 25%, #2a2f5a 50%, #1a1f3a 75%, #0a0f1c 100%);
    padding: 100px 0;
    overflow: hidden;
}

.ai-case-studies-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-case-study-card {
    background: rgba(30, 58, 138, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 40px rgba(15, 23, 42, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-case-study-card:hover {
    background: rgba(30, 58, 138, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ai-case-study-image {
    height: 200px;
    overflow: hidden;
}

.ai-case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ai-case-study-card:hover .ai-case-study-image img {
    transform: scale(1.1);
}

.ai-case-study-content {
    padding: 30px;
}

.ai-case-study-badge {
    display: inline-block;
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 15px;
}

.ai-case-study-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ai-case-study-card:hover .ai-case-study-title {
    color: #60a5fa;
}

.ai-case-study-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #bfdbfe;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ai-case-study-results {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.ai-result-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ai-case-study-card:hover .ai-result-item {
    background: rgba(30, 58, 138, 0.25);
}

.ai-result-value {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 5px;
}

.ai-result-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    color: #bfdbfe;
}

/* CTA Section */
.ai-cta-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f3a 25%, #2a2f5a 50%, #1a1f3a 75%, #0a0f1c 100%);
    padding: 100px 0;
    overflow: hidden;
}

.ai-cta-container {
    background: rgba(30, 58, 138, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: 
        0 20px 50px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-cta-container:hover {
    background: rgba(30, 58, 138, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(15, 23, 42, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ai-cta-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 35px rgba(59, 130, 246, 0.4);
}

.ai-cta-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    color: #bfdbfe;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ai-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ai-cta-btn::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;
}

.ai-cta-btn:hover::before {
    left: 100%;
}

.ai-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(30, 58, 138, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.ai-cta-btn svg {
    transition: transform 0.3s ease;
}

.ai-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Neural Network Small */
.neural-network-small {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.node-small-1 { top: 20%; left: 20%; }
.node-small-2 { top: 50%; left: 50%; }
.node-small-3 { top: 80%; left: 30%; }
.node-small-4 { top: 40%; left: 80%; }

.connection-small-1 {
    top: 20%;
    left: 20%;
    width: 30%;
    transform: rotate(30deg);
}

.connection-small-2 {
    top: 50%;
    left: 50%;
    width: 30%;
    transform: rotate(-30deg);
}

.connection-small-3 {
    top: 40%;
    left: 80%;
    width: 20%;
    transform: rotate(60deg);
}

/* Footer */
.ai-footer {
    background: rgba(15, 23, 42, 0.95);
    padding: 30px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.ai-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-copyright {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #bfdbfe;
}

.ai-footer-links {
    display: flex;
    gap: 20px;
}

.ai-footer-links a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #bfdbfe;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai-footer-links a:hover {
    color: #60a5fa;
}

.ai-footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Background Patterns */
.ai-section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.ai-bg-pattern {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    opacity: 0.6;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 
        0 8px 30px rgba(30, 58, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-bg-pattern-1 { width: 200px; height: 200px; top: 10%; left: 5%; }
.ai-bg-pattern-2 { width: 150px; height: 150px; top: 60%; right: 10%; }
.ai-bg-pattern-3 { width: 120px; height: 120px; bottom: 20%; left: 15%; }
.ai-bg-pattern-4 { width: 180px; height: 180px; top: 15%; right: 8%; }
.ai-bg-pattern-5 { width: 140px; height: 140px; top: 70%; left: 12%; }
.ai-bg-pattern-6 { width: 100px; height: 100px; bottom: 30%; right: 20%; }
.ai-bg-pattern-7 { width: 160px; height: 160px; top: 20%; left: 10%; }
.ai-bg-pattern-8 { width: 130px; height: 130px; top: 65%; right: 15%; }
.ai-bg-pattern-9 { width: 110px; height: 110px; bottom: 25%; left: 18%; }
.ai-bg-pattern-10 { width: 190px; height: 190px; top: 25%; right: 12%; }
.ai-bg-pattern-11 { width: 145px; height: 145px; top: 75%; left: 8%; }
.ai-bg-pattern-12 { width: 125px; height: 125px; bottom: 15%; right: 25%; }
.ai-bg-pattern-13 { width: 170px; height: 170px; top: 30%; left: 15%; }
.ai-bg-pattern-14 { width: 135px; height: 135px; top: 80%; right: 18%; }
.ai-bg-pattern-15 { width: 115px; height: 115px; bottom: 35%; left: 22%; }
.ai-bg-pattern-16 { width: 210px; height: 210px; top: 35%; right: 5%; }
.ai-bg-pattern-17 { width: 155px; height: 155px; top: 85%; left: 25%; }
.ai-bg-pattern-18 { width: 105px; height: 105px; bottom: 40%; right: 28%; }

/* Animation on scroll */
.ai-hero-content,
.ai-hero-video,
.ai-overview-container,
.ai-feature-card,
.ai-service-card,
.ai-benefit-card,
.ai-process-step,
.ai-case-study-card,
.ai-cta-container {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.ai-hero-content { animation-delay: 0.2s; }
.ai-hero-video { animation-delay: 0.4s; }
.ai-overview-container { animation-delay: 0.3s; }

.ai-feature-card:nth-child(1) { animation-delay: 0.4s; }
.ai-feature-card:nth-child(2) { animation-delay: 0.5s; }
.ai-feature-card:nth-child(3) { animation-delay: 0.6s; }
.ai-feature-card:nth-child(4) { animation-delay: 0.7s; }

.ai-service-card:nth-child(1) { animation-delay: 0.3s; }
.ai-service-card:nth-child(2) { animation-delay: 0.4s; }
.ai-service-card:nth-child(3) { animation-delay: 0.5s; }
.ai-service-card:nth-child(4) { animation-delay: 0.6s; }

.ai-benefit-card:nth-child(1) { animation-delay: 0.3s; }
.ai-benefit-card:nth-child(2) { animation-delay: 0.4s; }
.ai-benefit-card:nth-child(3) { animation-delay: 0.5s; }
.ai-benefit-card:nth-child(4) { animation-delay: 0.6s; }
.ai-benefit-card:nth-child(5) { animation-delay: 0.7s; }
.ai-benefit-card:nth-child(6) { animation-delay: 0.8s; }

.ai-process-step:nth-child(1) { animation-delay: 0.3s; }
.ai-process-step:nth-child(2) { animation-delay: 0.4s; }
.ai-process-step:nth-child(3) { animation-delay: 0.5s; }
.ai-process-step:nth-child(4) { animation-delay: 0.6s; }
.ai-process-step:nth-child(5) { animation-delay: 0.7s; }
.ai-process-step:nth-child(6) { animation-delay: 0.8s; }
.ai-process-step:nth-child(7) { animation-delay: 0.9s; }

.ai-case-study-card:nth-child(1) { animation-delay: 0.3s; }
.ai-case-study-card:nth-child(2) { animation-delay: 0.4s; }
.ai-case-study-card:nth-child(3) { animation-delay: 0.5s; }

.ai-cta-container { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .ai-hero-section {
        padding: 120px 0 80px;
    }
    
    .ai-hero-grid {
        gap: 40px;
    }
    
    .ai-hero-content {
        padding: 35px;
    }
    
    .ai-overview-container,
    .ai-cta-container {
        padding: 50px;
    }
    
    .ai-overview-features {
        gap: 25px;
    }
    
    .ai-feature-card {
        padding: 25px;
    }
    
    .ai-services-grid,
    .ai-benefits-grid {
        gap: 25px;
    }
    
    .ai-service-panel-grid {
        gap: 25px;
    }
    
    .ai-service-panel-content,
    .ai-service-panel-visual {
        padding: 30px;
    }
    
    .ai-service-panel-image {
        height: 180px;
    }
    
    .ai-case-studies-grid {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .ai-hero-section {
        padding: 100px 0 70px;
    }
    
    .ai-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-hero-content {
        padding: 30px;
        text-align: center;
    }
    
    .ai-hero-buttons {
        justify-content: center;
    }
    
    .ai-hero-video {
        transform: perspective(1000px) rotateY(0);
        max-width: 700px;
        margin: 0 auto;
    }
    
    .ai-overview-container,
    .ai-cta-container {
        padding: 40px;
    }
    
    .ai-overview-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ai-services-tabs {
        flex-wrap: wrap;
    }
    
    .ai-service-tab {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .ai-service-panel-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ai-service-panel-content {
        order: 2;
    }
    
    .ai-service-panel-visual {
        order: 1;
    }
    
    .ai-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ai-benefit-card {
        padding: 30px;
    }
    
    .ai-case-studies-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .ai-process-timeline {
        padding-left: 30px;
    }
    
    .ai-step-content {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .ai-hero-section {
        padding: 80px 0 60px;
    }
    
    .ai-hero-content {
        padding: 25px;
    }
    
    .ai-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .ai-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ai-overview-container,
    .ai-cta-container {
        padding: 30px;
    }
    
    .ai-services-tabs {
        overflow-x: auto;
        padding-bottom: 5px;
        margin-bottom: -5px;
        -webkit-overflow-scrolling: touch;
    }
    
    .ai-service-tab {
        flex: 0 0 auto;
        min-width: 150px;
        white-space: nowrap;
    }
    
    .ai-service-panel-content,
    .ai-service-panel-visual {
        padding: 25px;
    }
    
    .ai-service-panel-image {
        height: 180px;
    }
    
    .ai-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ai-benefit-card {
        padding: 25px;
    }
    
    .ai-process-timeline {
        padding-left: 25px;
    }
    
    .ai-step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        left: -30px;
    }
    
    .ai-step-content {
        padding: 20px;
    }
    
    .ai-footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .ai-hero-section {
        padding: 70px 0 50px;
    }
    
    .ai-hero-content {
        padding: 20px;
    }
    
    .ai-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .ai-description {
        font-size: clamp(1rem, 1.5vw, 1.1rem);
    }
    
    .ai-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .video-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .ai-overview-container,
    .ai-cta-container {
        padding: 25px;
    }
    
    .ai-feature-card {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .ai-service-tab {
        min-width: 120px;
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .tab-icon {
        width: 28px;
        height: 28px;
    }
    
    .ai-service-panel-content,
    .ai-service-panel-visual {
        padding: 20px;
    }
    
    .ai-service-panel-title {
        font-size: 1.6rem;
    }
    
    .ai-service-panel-description {
        font-size: 1rem;
    }
    
    .ai-service-panel-features li {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .feature-check {
        width: 24px;
        height: 24px;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .ai-service-panel-image {
        height: 160px;
    }
    
    .ai-service-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .ai-benefit-card {
        padding: 20px;
    }
    
    .ai-benefit-title {
        font-size: 1.3rem;
    }
    
    .ai-benefit-description {
        font-size: 0.95rem;
    }
    
    .ai-process-timeline {
        padding-left: 20px;
    }
    
    .ai-process-timeline::before {
        left: 15px;
    }
    
    .ai-step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        left: -25px;
    }
    
    .ai-step-content {
        padding: 15px;
    }
    
    .ai-step-title {
        font-size: 1.1rem;
    }
    
    .ai-step-description {
        font-size: 0.9rem;
    }
    
    .ai-case-study-content {
        padding: 20px;
    }
    
    .ai-case-study-title {
        font-size: 1.2rem;
    }
    
    .ai-case-study-description {
        font-size: 0.9rem;
    }
    
    .ai-result-value {
        font-size: 1.3rem;
    }
    
    .ai-result-label {
        font-size: 0.8rem;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .ai-hero-section {
        padding: 160px 0 120px;
    }
    
    .ai-hero-grid {
        gap: 80px;
    }
    
    .ai-hero-content {
        padding: 50px;
    }
    
    .ai-overview-container,
    .ai-cta-container {
        padding: 70px;
    }
    
    .ai-overview-features {
        gap: 35px;
    }
    
    .ai-feature-card {
        padding: 35px;
    }
    
    .ai-service-panel-content,
    .ai-service-panel-visual {
        padding: 50px;
    }
    
    .ai-service-panel-image {
        height: 180px;
    }
    
    .ai-benefits-grid {
        gap: 35px;
    }
    
    .ai-benefit-card {
        padding: 45px;
    }
    
    .ai-case-studies-grid {
        gap: 35px;
    }
    
    .ai-process-timeline {
        max-width: 1000px;
    }
    
    .ai-step-content {
        padding: 35px;
    }
}

/* Performance optimizations */
.ai-hero-content,
.ai-hero-video,
.ai-feature-card,
.ai-service-card,
.ai-benefit-card,
.ai-step-content,
.ai-case-study-card,
.ai-cta-container {
    will-change: transform;
    backface-visibility: hidden;
}

/* Accessibility */
.ai-btn:focus-visible,
.ai-feature-card:focus-visible,
.ai-service-card:focus-visible,
.ai-benefit-card:focus-visible,
.ai-step-content:focus-visible,
.ai-case-study-card:focus-visible,
.ai-service-tab:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ai-hero-content,
    .ai-hero-video,
    .ai-overview-container,
    .ai-feature-card,
    .ai-service-card,
    .ai-benefit-card,
    .ai-process-step,
    .ai-case-study-card,
    .ai-cta-container {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .neural-node,
    .neural-connection {
        animation: none;
    }
    
    .ai-hero-video:hover,
    .ai-feature-card:hover,
    .ai-service-card:hover,
    .ai-benefit-card:hover,
    .ai-process-step:hover .ai-step-content,
    .ai-case-study-card:hover {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .ai-hero-content,
    .ai-hero-video,
    .ai-overview-container,
    .ai-feature-card,
    .ai-service-card,
    .ai-benefit-card,
    .ai-step-content,
    .ai-case-study-card,
    .ai-cta-container {
        border-width: 2px;
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .ai-badge {
        background: #1e40af;
        color: white;
        border-color: white;
    }
    
    .ai-title,
    .ai-section-title {
        background: none;
        -webkit-text-fill-color: white;
        color: white;
    }
}