/* CSS Reset and Base Styles - AI Commerce v2.3 - Dropdown Menu AI Theme Fixed */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 209, 178, 0.2);
    box-shadow: 0 4px 20px rgba(0, 209, 178, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, #06b6d4 0%, #00d1b2 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navigation Menu */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #333;
}

.dropdown .fas {
    font-size: 0.7rem;
}

/* Navigation Actions */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-call-btn {
    background: linear-gradient(135deg, #00d1b2, #7c3aed);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 209, 178, 0.3);
}

.book-call-btn:hover {
    background-color: #F1C232;
    transform: translateY(-1px);
}

.language-selector {
    color: #666;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Mobile Menu Toggle */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
    transform-origin: center;
}

/* Hamburger Animation */

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Menus */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(16, 16, 32, 0.98) 100%);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

/* All Dropdown Menus */

.capabilities-dropdown,
.strategy-dropdown,
.acquisition-dropdown,
.optimisation-dropdown,
.integration-dropdown,
.training-dropdown {
    width: 800px;
    max-width: 90vw;
}

.capabilities-card {
    padding: 2rem;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: #ffffff !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    color: #06b6d4 !important;
    background: rgba(124, 58, 237, 0.1);
    padding-left: 1rem;
    border-radius: 8px;
}

.service-item i {
    width: 20px;
    color: #7c3aed !important;
    font-size: 1rem;
}

.capabilities-actions {
    margin-bottom: 2rem;
    text-align: center;
}

.all-services-btn {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: #ffffff;
    border: 2px solid rgba(124, 58, 237, 0.5);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.all-services-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    border: 2px solid #7c3aed;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.contact-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.contact-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.book-call-now-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.book-call-now-btn:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.contact-illustration {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.paper-plane {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 1.5rem;
}

/* Mobile Responsive for All Dropdown Menus */

@media (max-width: 768px) {
    .capabilities-dropdown,
    .strategy-dropdown,
    .acquisition-dropdown,
    .optimisation-dropdown,
    .integration-dropdown,
    .training-dropdown {
        width: 95vw;
        left: 2.5vw;
        transform: none;
    }
    .capabilities-card {
        padding: 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .service-column {
        gap: 0.75rem;
    }
    .service-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    .contact-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .contact-text {
        text-align: left;
    }
    .book-call-now-btn {
        align-self: stretch;
        justify-content: center;
    }
    .contact-illustration {
        display: none;
    }
}

@media (max-width: 480px) {
    .capabilities-card {
        padding: 1rem;
    }
    .service-item {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    .all-services-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    .contact-section {
        padding: 1rem;
    }
    .contact-text h3 {
        font-size: 1rem;
    }
    .contact-text p {
        font-size: 0.8rem;
    }
    .book-call-now-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
}

/* Hero Section */

.hero-section {
    padding: 140px 0 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 209, 178, 0.08) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

/* Hero Text Content with Animations */

.hero-text {
    padding-right: 2rem;
    animation: slideInFromLeft 1s ease-out;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #00d1b2;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tag-line {
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, #00d1b2, #7c3aed);
    border-radius: 2px;
    animation: expandWidth 1.2s ease-out 0.5s both, pulseGlow 2s ease-in-out infinite;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.3s both, textGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.hero-description {
    margin-bottom: 3rem;
}

.hero-description p {
    font-size: 1.2rem;
    color: #b0b0c3;
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out both;
    font-weight: 400;
}

.hero-description p:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-description p:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-description p:nth-child(3) {
    animation-delay: 1s;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.cta-button {
    background: linear-gradient(135deg, #00d1b2 0%, #06b6d4 100%) !important;
    color: #0a0a0a !important;
    border: 2px solid transparent;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 209, 178, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 209, 178, 0.5);
    border-color: rgba(0, 209, 178, 0.5);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Social Links */

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    animation: bounceIn 0.6s ease-out both;
}

.social-link:nth-child(1) {
    animation-delay: 1.4s;
}

.social-link:nth-child(2) {
    animation-delay: 1.5s;
}

.social-link:nth-child(3) {
    animation-delay: 1.6s;
}

.social-link:nth-child(4) {
    animation-delay: 1.7s;
}

.social-link:nth-child(5) {
    animation-delay: 1.8s;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(245, 200, 66, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #F5C842;
    color: #333;
    transform: translateY(-2px);
}

/* Hero Visual Section with Animations */

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInFromRight 1.2s ease-out 0.3s both;
}

.mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 700px;
    animation: scaleInCenter 1s ease-out 0.5s both;
}

/* Design Tools Icons with Enhanced Animations */

.design-tools {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    pointer-events: none;
}

.tool-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: toolFloat 6s ease-in-out infinite;
}

.tool-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.tool-icon.figma {
    background-color: #fff;
    top: 60px;
    left: 50px;
    z-index: 16;
    animation: toolFloat 6s ease-in-out infinite, slideInTool 0.8s ease-out 1s both;
}

.figma-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #F24E1E, #A259FF, #1ABCFE, #0ACF83);
    border-radius: 6px;
    animation: gradientSpin 4s linear infinite;
}

.tool-icon.adobe-ae {
    background-color: #9999FF;
    color: white;
    top: 20px;
    right: 30px;
    z-index: 16;
    animation: toolFloat 6s ease-in-out infinite 1s, slideInTool 0.8s ease-out 1.2s both;
}

.tool-icon.adobe-ai {
    background-color: #FF9A00;
    color: white;
    bottom: 90px;
    right: 20px;
    z-index: 16;
    animation: toolFloat 6s ease-in-out infinite 2s, slideInTool 0.8s ease-out 1.4s both;
}

.tool-icon.adobe-ps {
    background-color: #31A8FF;
    color: white;
    bottom: 20px;
    right: 70px;
    z-index: 16;
    animation: toolFloat 6s ease-in-out infinite 3s, slideInTool 0.8s ease-out 1.6s both;
}

/* AI Agent Tool Icons */

.tool-icon.ai-agent {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    top: 60px;
    left: 50px;
    z-index: 16;
    animation: toolFloat 6s ease-in-out infinite, slideInTool 0.8s ease-out 1s both;
}

.agent-icon {
    font-size: 1.5rem;
    animation: robotPulse 2s ease-in-out infinite;
}

.tool-icon.ml-model {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    top: 20px;
    right: 30px;
    z-index: 16;
    font-size: 1rem;
    font-weight: 700;
    animation: toolFloat 6s ease-in-out infinite 1s, slideInTool 0.8s ease-out 1.2s both;
}

.tool-icon.automation {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    bottom: 90px;
    right: 20px;
    z-index: 16;
    font-size: 0.8rem;
    font-weight: 700;
    animation: toolFloat 6s ease-in-out infinite 2s, slideInTool 0.8s ease-out 1.4s both;
}

.tool-icon.neural-net {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    bottom: 20px;
    right: 70px;
    z-index: 16;
    font-size: 1.8rem;
    animation: toolFloat 6s ease-in-out infinite 3s, slideInTool 0.8s ease-out 1.6s both;
}

/* Main Desktop Mockup */

.screen-mockup {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 300px;
    z-index: 10;
}

.screen-frame {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.screen-frame::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background-color: #333;
    border-radius: 0 0 20px 20px;
}

.screen-frame::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50px;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.screen-header {
    position: absolute;
    top: 8px;
    left: 12px;
    z-index: 15;
}

.dots {
    display: flex;
    gap: 5px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.dots span:first-child {
    background-color: #ff5f57;
}

.dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.dots span:last-child {
    background-color: #28ca42;
}

.screen-body {
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.content-section {
    flex: 1;
    max-width: 220px;
}

.content-section h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.content-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.screen-btn {
    background-color: white;
    color: #6366f1;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.character-illustration {
    width: 120px;
    height: 120px;
    position: relative;
    margin-left: 2rem;
}

.character {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character::before {
    content: '👤';
    font-size: 3rem;
    color: white;
}

/* Mobile Screens */

.mobile-screens {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
}

.mobile-screen {
    position: absolute;
    width: 100px;
    height: 180px;
    background-color: #1a1a1a;
    border-radius: 25px;
    padding: 3px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mobile-screen.left {
    left: 0;
    top: -20px;
    z-index: 9;
}

.mobile-screen.right {
    left: 60px;
    top: 40px;
    z-index: 8;
}

.mobile-content {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.mobile-content.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.mobile-content.dark {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

/* AI Chat Interface */

.mobile-content.ai-chat {
    background: linear-gradient(135deg, #10a37f 0%, #1a7f64 100%);
}

.mobile-content.ai-dashboard {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.mobile-header {
    height: 25px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 8px;
    border-radius: 6px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: white;
    font-weight: 500;
}

.ai-indicator {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.dashboard-title {
    font-size: 0.7rem;
    color: white;
    font-weight: 600;
}

.mobile-body {
    height: calc(100% - 40px);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Chat Bubbles */

.chat-bubble {
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    max-width: 80%;
}

.chat-bubble.ai {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    align-self: flex-start;
    margin-left: 0;
}

.chat-bubble.user {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    align-self: flex-end;
    margin-right: 0;
    font-weight: 500;
}

.typing-dots {
    display: flex;
    gap: 2px;
    align-items: center;
}

.typing-dots span {
    width: 4px;
    height: 4px;
    background-color: white;
    border-radius: 50%;
    animation: typingDots 1.4s ease-in-out infinite both;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* AI Dashboard */

.ai-metric {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 6px;
}

.metric-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2px;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #22c55e;
}

.ai-chart {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 30px;
}

.chart-bar {
    width: 8px;
    background: linear-gradient(to top, #22c55e, #16a34a);
    border-radius: 2px 2px 0 0;
    animation: chartGrow 2s ease-out 1s both;
}

/* AI Agent Status */

.agent-status {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.agent-item {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px 6px;
    border-radius: 4px;
    border-left: 2px solid #22c55e;
    animation: agentStatusPulse 3s ease-in-out infinite;
}

.agent-item:nth-child(2) {
    animation-delay: 1s;
    border-left-color: #f59e0b;
}

.agent-item:nth-child(3) {
    animation-delay: 2s;
    border-left-color: #3b82f6;
}

/* AI System Chat Bubble */

.chat-bubble.ai-system {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    align-self: flex-start;
    margin-left: 0;
    font-size: 0.65rem;
    font-weight: 600;
    border-left: 3px solid #a855f7;
}

.mobile-body {
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 8px;
    border-radius: 6px;
    margin-top: 15px;
}

/* AI Neural Network Elements */

.ai-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.ai-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 209, 178, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 60%, rgba(124, 58, 237, 0.05) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    animation: networkBg 8s ease-in-out infinite alternate;
}

.ai-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10a37f 0%, #22c55e 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(16, 163, 127, 0.6);
}

.ai-node.node-1 {
    top: 25%;
    right: 20%;
    animation: nodePulse 4s ease-in-out infinite;
}

.ai-node.node-2 {
    top: 55%;
    right: 10%;
    animation: nodePulse 4s ease-in-out infinite 1.3s;
}

.ai-node.node-3 {
    top: 40%;
    right: 35%;
    animation: nodePulse 4s ease-in-out infinite 2.6s;
}

.node-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(16, 163, 127, 0.4);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ai-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #10a37f 50%, transparent 100%);
    transform-origin: left;
}

.connection.line-1 {
    top: calc(25% + 10px);
    right: 20%;
    width: 200px;
    transform: rotate(25deg);
    animation: dataFlow 3s ease-in-out infinite;
}

.connection.line-2 {
    top: calc(55% + 10px);
    right: 10%;
    width: 250px;
    transform: rotate(-15deg);
    animation: dataFlow 3s ease-in-out infinite 1s;
}

.connection.line-3 {
    top: calc(40% + 10px);
    right: 35%;
    width: 180px;
    transform: rotate(45deg);
    animation: dataFlow 3s ease-in-out infinite 2s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* AI Animation Keyframes */

@keyframes nodePulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(16, 163, 127, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(16, 163, 127, 0.8);
    }
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(1);
    }
}

@keyframes typingDots {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@keyframes chartGrow {
    0% {
        height: 0;
    }
    100% {
        height: var(--target-height, 50%);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes robotPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

@keyframes agentStatusPulse {
    0%,
    100% {
        opacity: 0.9;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(2px);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(0, 209, 178, 0.3);
    }
    100% {
        text-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 209, 178, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.8);
    }
}

@keyframes networkBg {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes cardHover {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 80px rgba(0, 209, 178, 0.3);
    }
}

/* Hero Section Animation Keyframes */

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleInCenter {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandWidth {
    0% {
        width: 0;
    }
    100% {
        width: 3rem;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes toolFloat {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes slideInTool {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes gradientSpin {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Responsive Design */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-visual {
        height: 400px;
    }
    .screen-mockup {
        width: 300px;
        height: 200px;
    }
    .mobile-screen {
        width: 80px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    .nav-menu.mobile-active {
        right: 0;
    }
    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: #333;
        border-bottom: none;
    }
    .nav-actions {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    /* Mobile dropdown adjustments */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        margin-top: 0;
        padding: 1rem 0;
        border-radius: 0;
    }
    .capabilities-dropdown {
        width: 100%;
        max-height: none;
    }
    .services-grid {
        flex-direction: column;
        gap: 0;
    }
    .service-column {
        width: 100%;
    }
    .service-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #e0e0e0;
    }
    .capabilities-actions {
        padding: 1rem;
        border-top: 1px solid #e0e0e0;
    }
    .contact-section {
        display: none;
    }
    .hero-section {
        padding: 6rem 0 1rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description p {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-visual {
        height: 300px;
    }
    .screen-mockup {
        width: 250px;
        height: 160px;
    }
    .tool-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .mobile-screen {
        width: 60px;
        height: 100px;
    }
    .container {
        padding: 0 1rem;
    }
    .navbar {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 7rem 0 1rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .service-tag {
        font-size: 0.75rem;
    }
    .tag-line {
        width: 2rem;
    }
    .hero-visual {
        height: 250px;
    }
    .screen-mockup {
        width: 200px;
        height: 130px;
    }
    .content-section h3 {
        font-size: 1rem;
    }
    .content-section p {
        font-size: 0.7rem;
    }
    .character-illustration {
        width: 60px;
        height: 60px;
    }
}

/* Bottleneck Section */

.bottleneck-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(16, 16, 32, 0.9) 100%);
    position: relative;
}

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

.bottleneck-text {
    max-width: 550px;
}

.bottleneck-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 2rem;
    white-space: nowrap;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.bottleneck-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.plans-button {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    color: #ffffff;
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
}

a.plans-button {
    color: #ffffff;
    text-decoration: none;
}

.plans-button:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
    border-color: rgba(124, 58, 237, 0.5);
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.6);
}

/* Company Logos */

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.company-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.company-logo:hover {
    filter: grayscale(0%);
}

/* Responsive Design for Bottleneck Section */

@media (max-width: 1024px) {
    .bottleneck-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .bottleneck-title {
        font-size: 2.2rem;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .bottleneck-section {
        padding: 3rem 0;
    }
    .bottleneck-title {
        font-size: 2rem;
    }
    .bottleneck-description {
        font-size: 1rem;
    }
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .company-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .bottleneck-title {
        font-size: 1.8rem;
    }
    .bottleneck-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .plans-button {
        margin: 0 auto;
        align-self: center;
    }
    .logos-grid {
        gap: 1.5rem;
    }
    .company-logo {
        max-width: 80px;
        max-height: 40px;
    }
}

/* Services Section */

.services-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
    position: relative;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
    animation: textGlow 3s ease-in-out infinite alternate;
}

/* Services Carousel Container */

.services-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    overflow: hidden;
}

.services-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 1rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

/* Carousel Navigation Arrows */

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #F5C842;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background-color: #FF6B35;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-arrow-left {
    left: -25px;
}

.carousel-arrow-right {
    right: -25px;
}

.service-card {
    min-width: 320px;
    height: 380px;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 16, 32, 0.95) 100%);
    border: 1px solid rgba(0, 209, 178, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 209, 178, 0.3);
    border-color: rgba(0, 209, 178, 0.5);
    animation: cardHover 0.4s ease forwards;
}

.gray-card {
    background-color: #E5E7EB;
}

.dark-card {
    background-color: #374151;
}

.yellow-card {
    background-color: #FDE047;
}

.light-gray-card {
    background-color: #F3F4F6;
}

.service-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-image {
    max-width: 180px;
    max-height: 180px;
    width: 100%;
    height: auto;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    text-align: left;
}

.dark-card .service-name {
    color: white;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

.all-services-button {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.all-services-button:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Services Section */

@media (max-width: 1024px) {
    .services-title {
        font-size: 2.5rem;
    }
    .service-card {
        min-width: 260px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    .services-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .services-carousel-container {
        padding: 0 1rem;
    }
    .carousel-arrow {
        display: none;
        /* Hide arrows on mobile, use touch scrolling */
    }
    .services-carousel {
        gap: 1rem;
        padding: 0 0 1rem 0;
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
    }
    .service-card {
        min-width: 240px;
        height: 280px;
        padding: 1.5rem;
    }
    .service-name {
        font-size: 1.1rem;
    }
    .service-image {
        max-width: 150px;
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .services-carousel {
        padding: 0 0.5rem 2rem;
        gap: 1rem;
    }
    .service-card {
        min-width: 220px;
        height: 260px;
    }
    .services-title {
        font-size: 1.8rem;
    }
}

/* Works Section */

.works-section {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(16, 16, 32, 0.9) 100%);
    position: relative;
}

.works-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.large-item {
    grid-row: span 2;
}

.medium-item {
    grid-column: span 1;
    grid-row: span 1;
}

.small-item {
    grid-column: span 1;
    grid-row: span 1;
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.work-title-text {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

/* Specific item styling */

.brand-item {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.debt-item {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.debt-item .work-title-text {
    color: white;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
}

.app-item {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.tech-item {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.minutes-item {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

.minutes-item .work-title-text {
    color: white;
    font-size: 1.8rem;
}

.web-item {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.mobile-item {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.portfolio-item {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

/* Responsive Design for Works Section */

@media (max-width: 1024px) {
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    .large-item {
        grid-row: span 1;
    }
    .works-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .works-section {
        padding: 4rem 0 0 0;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
        gap: 1rem;
    }
    .large-item,
    .medium-item,
    .small-item {
        grid-column: span 1;
        grid-row: span 1;
    }
    .works-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .work-title-text {
        font-size: 1.5rem;
    }
    .debt-item .work-title-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .works-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 160px);
    }
    .works-title {
        font-size: 1.8rem;
    }
    .work-title-text {
        font-size: 1.3rem;
    }
    .debt-item .work-title-text {
        font-size: 1.8rem;
    }
}

/* Process Flow Section */

.process-section {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(180deg, rgba(16, 16, 32, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.process-text {
    max-width: 400px;
}

.process-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.see-plans-button {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

a.see-plans-button {
    color: #333;
    text-decoration: none;
}

.see-plans-button:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.process-flow {
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, #7c3aed 0%, #06b6d4 100%);
    z-index: 1;
}

.step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.step-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Responsive Design for Process Section */

@media (max-width: 1024px) {
    .process-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .process-title {
        font-size: 2.4rem;
    }
    .process-flow {
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 3rem 0 0 0;
    }
    .process-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .process-step {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .process-step:not(:last-child)::after {
        left: 17px;
        height: 50px;
    }
    .step-icon {
        width: 35px;
        height: 35px;
    }
    .step-icon i {
        font-size: 1rem;
    }
    .step-title {
        font-size: 1.1rem;
    }
    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .works-section {
        padding: 3rem 0 0 0;
    }
    .process-section {
        padding: 2rem 0 0 0;
    }
    .process-title {
        font-size: 1.8rem;
    }
    .process-step {
        margin-bottom: 1.8rem;
    }
    .step-title {
        font-size: 1rem;
    }
    .step-description {
        font-size: 0.85rem;
    }
}

/* Flexibility Section */

.flexibility-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(16, 16, 32, 0.9) 100%);
    position: relative;
}

.flexibility-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 16, 32, 0.95) 100%);
    border: 1px solid rgba(0, 209, 178, 0.3);
    border-radius: 32px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.flexibility-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    max-width: 400px;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.testimonials {
    position: relative;
    height: 300px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(16, 16, 32, 0.9) 100%);
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 209, 178, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    position: absolute;
    max-width: 280px;
}

.testimonial-card:hover {
    transform: translateY(-2px);
}

.testimonial-card:nth-child(1) {
    top: 0;
    left: 20px;
    transform: rotate(-2deg);
}

.testimonial-card:nth-child(2) {
    top: 80px;
    left: 0;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    transform: rotate(1deg);
}

.testimonial-card:nth-child(3) {
    top: 160px;
    left: 40px;
    transform: rotate(-1deg);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.testimonial-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.testimonial-link {
    width: 25px;
    height: 25px;
    background-color: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.testimonial-check {
    width: 25px;
    height: 25px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.testimonial-emoji {
    font-size: 1.2rem;
}

.benefits-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 16, 32, 0.95) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 209, 178, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Flexibility Section */

@media (max-width: 1024px) {
    .flexibility-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    .flexibility-title {
        font-size: 2.4rem;
        text-align: center;
        max-width: none;
    }
    .testimonials {
        height: 280px;
    }
    .testimonial-card:nth-child(1) {
        top: 0;
        left: 10px;
        transform: rotate(-1deg);
    }
    .testimonial-card:nth-child(2) {
        top: 70px;
        left: 50px;
        transform: rotate(1deg);
    }
    .testimonial-card:nth-child(3) {
        top: 140px;
        left: 20px;
        transform: rotate(-0.5deg);
    }
}

@media (max-width: 768px) {
    .flexibility-section {
        padding: 4rem 0;
    }
    .flexibility-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    .flexibility-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .testimonials {
        height: 250px;
    }
    .testimonial-card {
        padding: 1rem;
        gap: 0.8rem;
        max-width: 250px;
    }
    .testimonial-card:nth-child(1) {
        top: 0;
        left: 0;
        transform: rotate(-1deg);
    }
    .testimonial-card:nth-child(2) {
        top: 60px;
        left: 20px;
        transform: rotate(0.5deg);
    }
    .testimonial-card:nth-child(3) {
        top: 120px;
        left: 10px;
        transform: rotate(-0.5deg);
    }
    .testimonial-name {
        font-size: 0.85rem;
    }
    .testimonial-text {
        font-size: 0.8rem;
    }
    .benefit-item {
        padding: 1.2rem;
    }
    .benefit-title {
        font-size: 1.1rem;
    }
    .benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .flexibility-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    .flexibility-title {
        font-size: 1.8rem;
    }
    .testimonials {
        height: 220px;
    }
    .testimonial-card {
        max-width: 220px;
    }
    .testimonial-card:nth-child(1) {
        top: 0;
        left: 0;
        transform: rotate(-0.5deg);
    }
    .testimonial-card:nth-child(2) {
        top: 50px;
        left: 15px;
        transform: rotate(0.5deg);
    }
    .testimonial-card:nth-child(3) {
        top: 100px;
        left: 5px;
        transform: rotate(-0.3deg);
    }
    .benefits-area {
        gap: 1.5rem;
    }
    .benefit-title {
        font-size: 1rem;
    }
}

/* Speed and Professionalism Section */

.speed-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(16, 16, 32, 0.9) 100%);
    position: relative;
}

.speed-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 16, 32, 0.95) 100%);
    border: 1px solid rgba(0, 209, 178, 0.3);
    border-radius: 32px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.speed-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    max-width: 400px;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.team-photos {
    position: relative;
    height: 300px;
}

.photo-card {
    position: absolute;
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(16, 16, 32, 0.9) 100%);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 209, 178, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: scale(1.05) translateY(-5px);
}

.photo-1 {
    top: 20px;
    left: 40px;
    transform: rotate(-8deg);
}

.photo-2 {
    top: 0;
    left: 160px;
    transform: rotate(5deg);
}

.photo-3 {
    top: 120px;
    left: 20px;
    transform: rotate(3deg);
}

.photo-4 {
    top: 140px;
    left: 140px;
    transform: rotate(-5deg);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.speed-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.speed-benefit-item {
    margin-bottom: 1rem;
}

.speed-benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.speed-benefit-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Speed Section */

@media (max-width: 1024px) {
    .speed-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    .speed-title {
        font-size: 2.4rem;
        text-align: center;
        max-width: none;
    }
    .team-photos {
        height: 280px;
    }
    .photo-card {
        width: 90px;
        height: 110px;
    }
    .photo-1 {
        top: 20px;
        left: 30px;
        transform: rotate(-6deg);
    }
    .photo-2 {
        top: 0;
        left: 140px;
        transform: rotate(4deg);
    }
    .photo-3 {
        top: 110px;
        left: 15px;
        transform: rotate(2deg);
    }
    .photo-4 {
        top: 130px;
        left: 120px;
        transform: rotate(-4deg);
    }
}

@media (max-width: 768px) {
    .speed-section {
        padding: 4rem 0;
    }
    .speed-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    .speed-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .team-photos {
        height: 250px;
    }
    .photo-card {
        width: 80px;
        height: 100px;
    }
    .photo-1 {
        top: 15px;
        left: 20px;
        transform: rotate(-5deg);
    }
    .photo-2 {
        top: 0;
        left: 120px;
        transform: rotate(3deg);
    }
    .photo-3 {
        top: 100px;
        left: 10px;
        transform: rotate(2deg);
    }
    .photo-4 {
        top: 120px;
        left: 100px;
        transform: rotate(-3deg);
    }
    .speed-benefit-title {
        font-size: 1.2rem;
    }
    .speed-benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .speed-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    .speed-title {
        font-size: 1.8rem;
    }
    .team-photos {
        height: 220px;
    }
    .photo-card {
        width: 70px;
        height: 90px;
    }
    .photo-1 {
        top: 10px;
        left: 15px;
        transform: rotate(-3deg);
    }
    .photo-2 {
        top: 0;
        left: 100px;
        transform: rotate(2deg);
    }
    .photo-3 {
        top: 80px;
        left: 5px;
        transform: rotate(1deg);
    }
    .photo-4 {
        top: 100px;
        left: 85px;
        transform: rotate(-2deg);
    }
    .speed-benefit-title {
        font-size: 1.1rem;
    }
    .speed-benefit-description {
        font-size: 0.85rem;
    }
}

/* Organization and Full Control Section */

.organization-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(16, 16, 32, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
}

.organization-content {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 16, 32, 0.95) 100%);
    border: 1px solid rgba(0, 209, 178, 0.3);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.organization-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.organization-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-board {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(16, 16, 32, 0.9) 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 209, 178, 0.2);
    backdrop-filter: blur(10px);
}

.task-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(16, 16, 32, 0.9) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid rgba(0, 209, 178, 0.5);
    position: relative;
    border: 1px solid rgba(0, 209, 178, 0.1);
    backdrop-filter: blur(5px);
}

.task-card.completed {
    border-left-color: #22c55e;
    background-color: #f0fdf4;
}

.task-card.progress {
    border-left-color: #f59e0b;
    background-color: #fffbeb;
}

.task-card.ready {
    border-left-color: #ef4444;
    background-color: #fef2f2;
}

.task-status {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 0.5rem;
}

.task-card.completed .task-status {
    color: #22c55e;
}

.task-card.progress .task-status {
    color: #f59e0b;
}

.task-card.ready .task-status {
    color: #ef4444;
}

.task-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.task-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.task-tools {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.tool-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.tool-icon.ai {
    background-color: #ff6600;
}

.tool-icon.ps {
    background-color: #001e36;
}

.trello-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.integration-icon {
    width: 40px;
    height: 40px;
}

/* Removed control-features section that generated floating tooltips */

/* Removed floating feature-item tooltips - these were creating white overlay cards */

/* Removed feature-title and feature-description styles for floating tooltips */

/* Responsive Design for Organization Section */

@media (max-width: 1024px) {
    .organization-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 2.5rem;
    }
    .organization-title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }
    /* Removed control-features responsive styles */
    /* Removed responsive floating feature items */
}

@media (max-width: 768px) {
    .organization-section {
        padding: 4rem 0;
    }
    .organization-content {
        padding: 2rem;
        margin: 0 1rem;
        gap: 2.5rem;
    }
    .organization-title {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }
    .project-board {
        padding: 1.5rem;
    }
    .task-card {
        padding: 0.75rem;
    }
    /* Removed control-features and feature-item mobile styles */
    /* Removed mobile floating feature items */
    /* Removed responsive feature tooltip styles */
}

@media (max-width: 480px) {
    .organization-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
        gap: 2rem;
    }
    .organization-title {
        font-size: 2rem;
    }
    .project-board {
        padding: 1rem;
    }
    .task-card {
        padding: 0.5rem;
        margin-bottom: 0.75rem;
    }
    .task-title {
        font-size: 0.9rem;
    }
    .task-description {
        font-size: 0.8rem;
    }
    /* Removed control-features and feature-item small screen styles */
    /* Removed small screen floating feature items */
    /* Removed small screen feature tooltip styles */
    .trello-icon {
        top: -8px;
        right: -8px;
        padding: 6px;
    }
    .integration-icon {
        width: 32px;
        height: 32px;
    }
}

/* CTA Section */

.cta-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(16, 16, 32, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 16, 32, 0.95) 100%);
    border: 1px solid rgba(0, 209, 178, 0.3);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.cta-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    max-width: 400px;
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 300px;
}

.video-call-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.video-call-image {
    width: 450px;
    height: 300px;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    border-radius: 15px;
}

.video-call-image:hover {
    transform: scale(1.02) translateY(-5px);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.25));
}

.call-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: white;
    font-size: 1.4rem;
    animation: sparkle 2.5s infinite ease-in-out;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sparkle-1 {
    top: 15%;
    right: 25%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 65%;
    left: 20%;
    animation-delay: 0.8s;
}

.sparkle-3 {
    top: 35%;
    right: 15%;
    animation-delay: 1.6s;
}

.sparkle-4 {
    top: 80%;
    right: 40%;
    animation-delay: 2.4s;
}

.sparkle-5 {
    top: 25%;
    left: 10%;
    animation-delay: 3.2s;
}

@keyframes sparkle {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design for CTA Section */

@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 2.5rem;
    }
    .cta-title {
        font-size: 2.8rem;
    }
    .cta-description {
        max-width: none;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 0 0 4rem 0;
    }
    .cta-content {
        padding: 2rem;
        margin: 0 1rem;
        gap: 2.5rem;
    }
    .cta-title {
        font-size: 2.4rem;
        margin-bottom: 1.25rem;
    }
    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .video-call-image {
        width: 350px;
        height: 233px;
        display: block;
    }
    .cta-visual {
        display: flex !important;
        justify-content: center;
        align-items: center;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .cta-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
        gap: 2rem;
    }
    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .video-call-image {
        width: 280px;
        height: 187px;
        display: block;
        margin: 0 auto;
    }
    .cta-visual {
        display: flex !important;
        justify-content: center;
        align-items: center;
        min-height: 200px;
        width: 100%;
    }
    .video-call-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .sparkle {
        font-size: 1.2rem;
    }
}

/* Policy Page Styles */

.policy-section {
    padding: 8rem 2rem 4rem 2rem;
    background-color: #F9F6F0;
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.policy-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #F5C842;
    padding-bottom: 0.5rem;
}

.policy-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
    margin: 1.5rem 0 0.75rem 0;
}

.policy-text p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.policy-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.policy-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-details {
    background-color: #F9F6F0;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.contact-item i {
    color: #F5C842;
    width: 20px;
}

.contact-form-link {
    text-align: center;
    margin: 2rem 0;
}

.policy-acknowledgment {
    background-color: #FFF3CD;
    border: 1px solid #F5C842;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
}

.policy-acknowledgment p {
    margin: 0;
    color: #856404;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 6rem 1rem 4rem 1rem;
    }
    .policy-content {
        padding: 2rem;
    }
    .policy-title {
        font-size: 2.2rem;
    }
    .policy-text h2 {
        font-size: 1.3rem;
    }
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Footer Section */

.footer-section {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(16, 16, 32, 0.95) 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-address {
    color: #A0AEC0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-address p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    width: 24px;
    height: 24px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-continued {
    margin-top: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #06b6d4;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-email {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

.contact-phone {
    color: #A0AEC0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-cta-button {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) !important;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4) !important;
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
}

.footer-cta-button:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.6) !important;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1.5rem;
}

.footer-badge {
    width: 30px;
    height: 30px;
}

/* Mobile Footer Spacing */

@media (max-width: 768px) {
    .footer-cta-button {
        margin-top: 2rem;
        margin-bottom: 2rem;
        clear: both;
        display: block;
    }
    .footer-badges {
        margin-top: 2rem;
    }
    .contact-info {
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }
    .footer-contact-info {
        padding-bottom: 3rem;
        position: relative;
    }
    .contact-email {
        margin-bottom: 2rem;
        display: block;
    }
}

.footer-partners {
    padding: 2rem 0;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    margin-bottom: 2rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #06b6d4;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.footer-copyright p {
    color: #A0AEC0;
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Design for Footer */

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    .footer-company {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
    .footer-contact {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
    .partner-logos {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 0 1rem;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer-company {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
    .footer-copyright {
        align-items: center;
    }
    .partner-logos {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 1rem 0;
    }
    .footer-content {
        padding: 0 0.5rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-company {
        align-items: center;
    }
    .footer-contact {
        align-items: center;
    }
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    .partner-logos {
        gap: 1rem;
        justify-content: center;
    }
    .partner-logo {
        height: 20px;
    }
    .footer-badge {
        width: 24px;
        height: 24px;
    }
}

/* Mobile Navigation Responsive Styles */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(249, 246, 240, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.mobile-active {
        right: 0;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    /* Mobile dropdown menu adjustments */
    .dropdown {
        position: relative;
    }
    .dropdown-menu {
        position: static !important;
        display: none;
        box-shadow: none !important;
        background: #f8f8f8 !important;
        margin: 0 !important;
        padding: 0.5rem 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-height: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow-y: auto !important;
        border-left: 3px solid #7c3aed !important;
    }
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    .capabilities-dropdown,
    .strategy-dropdown,
    .acquisition-dropdown,
    .optimisation-dropdown,
    .integration-dropdown,
    .training-dropdown {
        width: 100%;
        max-height: none;
    }
    .services-grid {
        flex-direction: column;
        gap: 0;
    }
    .service-column {
        width: 100%;
    }
    .service-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border-bottom: 1px solid #e0e0e0;
        margin: 0;
    }
    .capabilities-actions {
        padding: 1rem;
        border-top: 1px solid #e0e0e0;
        margin: 0;
    }
    .contact-section {
        display: none;
    }
    /* Reduce spacing between mobile menu categories */
    .nav-menu li {
        margin-bottom: 0;
    }
    .nav-menu .dropdown {
        margin-bottom: 0;
    }
    .nav-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        padding: 4rem 1.5rem 2rem;
    }
}

/* AI Services Grid Styles */

.ai-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.ai-service-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 16, 32, 0.95) 100%);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 209, 178, 0.2);
    backdrop-filter: blur(10px);
}

.ai-service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 209, 178, 0.3);
    border-color: rgba(0, 209, 178, 0.5);
    animation: cardHover 0.4s ease forwards;
}

.consultancy-card:hover {
    border-color: #1E40AF;
}

.builds-card:hover {
    border-color: #10B981;
}

.microservices-card:hover {
    border-color: #F59E0B;
}

.service-number {
    position: absolute;
    top: -10px;
    left: 2rem;
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.service-illustration {
    margin: 1rem 0 2rem 0;
    text-align: center;
}

.service-illustration img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
}

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

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
    font-size: 1rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #333;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.875rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.service-cta:hover {
    background: #F5C842;
    color: #333;
    transform: translateY(-2px);
}

.service-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(3px);
}

/* Responsive Design for AI Services Grid */

@media (max-width: 1024px) {
    .ai-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    .ai-service-card {
        padding: 1.5rem;
    }
    .service-title {
        font-size: 1.2rem;
    }
    .service-illustration img {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .ai-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    .ai-service-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    .service-title {
        font-size: 1.1rem;
    }
    .service-description {
        font-size: 0.95rem;
    }
    .service-features li {
        font-size: 0.9rem;
    }
    .service-cta {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
    }
    .service-illustration img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .ai-service-card {
        margin: 0 0.5rem;
        padding: 1.25rem;
    }
    .service-number {
        left: 1.25rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    .service-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    .service-features {
        margin-bottom: 1.5rem;
    }
    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    .service-cta {
        font-size: 0.8rem;
        padding: 0.7rem 1.1rem;
        width: 100%;
        justify-content: center;
    }
    .service-illustration img {
        max-width: 180px;
    }
}

/* Force cache refresh - AI Commerce Dark Theme Active */

/* AI Strategy Sessions Styles */

.strategy-visualization {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.strategy-phase {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.strategy-phase.completed {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.strategy-phase.active {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
}

.strategy-phase.pending {
    background: rgba(156, 163, 175, 0.1);
    border-color: rgba(156, 163, 175, 0.2);
}

.strategy-phase.future {
    background: rgba(75, 85, 99, 0.1);
    border-color: rgba(75, 85, 99, 0.2);
}

.strategy-phase .phase-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.strategy-phase .phase-label {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1;
}

.strategy-phase .phase-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: auto;
}

.strategy-phase .phase-status.active {
    background: #22c55e;
    animation: pulse 2s infinite;
}

.strategy-phase .phase-status.processing {
    background: #f59e0b;
    animation: pulse 2s infinite;
}

.strategy-phase .phase-status.waiting {
    background: #9ca3af;
}

.strategy-phase .phase-status.future {
    background: rgba(75, 85, 99, 0.5);
}

/* Remove old strategy dashboard styles */

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(5px) rotate(-3deg);
    }
}

/* AI Strategy Sessions Responsive Design */

@media (max-width: 768px) {
    .strategy-visualization {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    .strategy-phase {
        padding: 0.5rem;
        gap: 0.75rem;
    }
    .strategy-phase .phase-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    .strategy-phase .phase-label {
        font-size: 0.8rem;
    }
    .strategy-phase .phase-status {
        width: 10px;
        height: 10px;
    }
}

/* AI Tech Stack Review Styles */

.ai-tech-mockup .mockup-screen {
    background: linear-gradient(135deg, rgba(16, 16, 32, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.window-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.tech-stack-visualization {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.stack-layer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid transparent;
}

.stack-layer.data-layer {
    border-left-color: #06b6d4;
}

.stack-layer.ml-layer {
    border-left-color: #f59e0b;
}

.stack-layer.api-layer {
    border-left-color: #10b981;
}

.stack-layer.app-layer {
    border-left-color: #ef4444;
}

.layer-icon {
    color: #7c3aed;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.layer-label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.875rem;
    flex: 1;
}

.layer-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.layer-status.active {
    background: #10b981;
}

.layer-status.warning {
    background: #f59e0b;
}

.layer-status.error {
    background: #ef4444;
}

.floating-tech-icons {
    position: absolute;
    top: 20%;
    right: -10%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.tech-icon.tensorflow {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    color: white;
    animation-delay: 0s;
}

.tech-icon.openai {
    background: linear-gradient(135deg, #10a37f 0%, #1a7f64 100%);
    color: white;
    animation-delay: 0.5s;
}

.tech-icon.cloud {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    animation-delay: 1s;
}

.ai-workspace {
    background: linear-gradient(135deg, rgba(16, 16, 32, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.analysis-dashboard {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-section {
    display: flex;
    gap: 0.75rem;
}

.performance-metrics {
    justify-content: space-between;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    flex: 1;
}

.metric-value {
    color: #06b6d4;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.health-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.health-indicator.good {
    background: #10b981;
}

.health-indicator.warning {
    background: #f59e0b;
}

.health-indicator.error {
    background: #ef4444;
}

.cost-analysis {
    flex: 1;
}

.cost-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 60px;
}

.chart-bar {
    background: linear-gradient(to top, #7c3aed, #06b6d4);
    border-radius: 2px;
    flex: 1;
    min-height: 8px;
}

.floating-ai-elements {
    position: absolute;
    top: 20%;
    right: -8%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-element {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.floating-element.neural-node {
    background: radial-gradient(circle, #7c3aed, #4c1d95);
    animation-delay: 0s;
}

.floating-element.data-flow {
    background: radial-gradient(circle, #06b6d4, #0891b2);
    animation-delay: 0.7s;
}

.floating-element.optimization {
    background: radial-gradient(circle, #f59e0b, #d97706);
    animation-delay: 1.4s;
}

.cta-section {
    background: linear-gradient(135deg, rgba(16, 16, 32, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    padding: 4rem 0;
    margin: 4rem 0 0 0;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 16, 32, 0.95) 100%);
    border: 1px solid rgba(0, 209, 178, 0.3);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* AI Tech Stack Review Page Specific Styles */

.ai-services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 16, 32, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    border-top: 1px solid rgba(0, 209, 178, 0.2);
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #b0b0c3;
    max-width: 600px;
    margin: 0 auto;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content p {
    color: #b0b0c3;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-stats {
    padding: 0.75rem 1rem;
    background: rgba(0, 209, 178, 0.1);
    border-radius: 8px;
    border-left: 3px solid #00d1b2;
}

.stat-highlight {
    color: #00d1b2;
    font-weight: 600;
    font-size: 0.9rem;
}

.key-features-section {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.5);
}

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

.features-text {
    padding-right: 2rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.features-list {
    margin-bottom: 2.5rem;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list .feature-item i {
    color: #00d1b2;
    font-size: 1.2rem;
    width: 20px;
}

.features-list .feature-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
}

.feature-cta {
    margin-top: 2rem;
}

.features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-dashboard-mockup {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, rgba(16, 16, 32, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    border: 2px solid rgba(0, 209, 178, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 209, 178, 0.2);
}

.dashboard-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-tabs {
    display: flex;
    gap: 1rem;
}

.dashboard-tabs .tab {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #b0b0c3;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dashboard-tabs .tab.active {
    background: linear-gradient(135deg, #00d1b2 0%, #06b6d4 100%);
    color: #0a0a0a;
    font-weight: 600;
}

.dashboard-body {
    padding: 2rem 1.5rem;
}

.metric-cards {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 209, 178, 0.2);
}

.metric-value {
    color: #00d1b2;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #b0b0c3;
    font-size: 0.9rem;
    font-weight: 500;
}

.health-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.cost-chart {
    display: flex;
    gap: 0.5rem;
    height: 80px;
    align-items: end;
    justify-content: center;
}

.chart-bar {
    background: linear-gradient(to top, #7c3aed, #00d1b2);
    border-radius: 4px;
    width: 20px;
    min-height: 10px;
    animation: chart-grow 1s ease-out;
}

@keyframes chart-grow {
    from {
        height: 0;
    }
    to {
        height: var(--height, 50%);
    }
}

.audit-areas-section {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.3);
}

.audit-header {
    text-align: center;
    margin-bottom: 4rem;
}

.audit-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.audit-subtitle {
    font-size: 1.2rem;
    color: #b0b0c3;
    max-width: 600px;
    margin: 0 auto;
}

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

.audit-card {
    background: linear-gradient(135deg, rgba(16, 16, 32, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 1px solid rgba(0, 209, 178, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00d1b2 0%, #06b6d4 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audit-card:hover::before {
    opacity: 1;
}

.audit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 209, 178, 0.4);
    box-shadow: 0 15px 40px rgba(0, 209, 178, 0.1);
}

.audit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d1b2 0%, #06b6d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.audit-icon i {
    font-size: 1.5rem;
    color: #0a0a0a;
}

.audit-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.audit-description {
    color: #b0b0c3;
    font-size: 1rem;
    line-height: 1.6;
}

.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 16, 32, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    border-top: 1px solid rgba(0, 209, 178, 0.2);
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d1b2 0%, #7c3aed 50%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-description {
    color: #b0b0c3;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
}

/* Mobile Responsiveness for AI Tech Stack Page */

@media (max-width: 768px) {
    .services-title,
    .audit-title,
    .final-cta-title {
        font-size: 2rem;
    }
    .features-title {
        font-size: 1.8rem;
    }
    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .features-text {
        padding-right: 0;
    }
    .audit-grid {
        grid-template-columns: 1fr;
    }
    .metric-cards {
        flex-direction: column;
    }
    .ai-dashboard-mockup {
        max-width: 100%;
    }
}