 :root {
            --primary-orange: #f97316;
            --secondary-amber: #ff9e00;
            --accent-gold: #ffb700;
            --dark-slate: #1f2937;
            --light-cream: #f7fafc;
            --neutral-gray: #1f2937;
            --success-teal: #10b981;
            --font-heading: "Poppins", sans-serif;
            --font-body: "Inter", sans-serif;
            --smooth-transition: all 0.3s ease;
            --premium-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --hover-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
            --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
            --corner-radius: 12px;
            --large-radius: 20px;
            --neo-gradient: linear-gradient(135deg, #fed7aa 0%, #f97316 50%, #e9c790 100%);
            --brand-gradient: linear-gradient(135deg, #f97316 0%, #ff9e00 100%);
            --background-gradient: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
            --reverse-gradient: linear-gradient(135deg, #ff9e00 0%, #ff6b35 50%, #f97316 100%);
            --glass-surface: rgba(255, 255, 255, 0.03);
            --glass-outline: rgba(255, 255, 255, 0.08);
            --gradient: linear-gradient(135deg, #f97316 0%, #ff9e00 100%);
            --dark-glass: rgba(31, 41, 55, 0.95);

              /* Fluid typography using clamp() for better scaling */
 
        }
/* Hybrid Approach Section */
.hybrid-section {
    background: #fff;
    position: relative;
}

.hybrid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hybrid-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hybrid-image {
    width: 400px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
}

.hybrid-features {
    list-style: none;
}

.hybrid-features li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hybrid-features li:last-child {
    border-bottom: none;
}

.hybrid-features i {
    color: var(--primary-orange);
    margin-top: 3px;
}

/* Responsive styles for Hybrid Approach Section */
@media (max-width: 900px) {
    .hybrid-grid {
        gap: 40px;
    }
    
    .hybrid-visual {
        height: 300px;
    }
    
    .hybrid-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hybrid-visual {
        height: 300px;
    }
    
    .hybrid-image {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 600px) {
    .hybrid-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .hybrid-visual {
        height: 200px;
    }
    
    .hybrid-image {
        width: 180px;
        height: 180px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .hybrid-visual {
        height: 180px;
    }
    
    .hybrid-image {
        width: 260px;
        height: 260px;
        border-radius: 12px;
    }
}

/* Process Section */
.process-section {
    background: white;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--brand-gradient);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content {
    background: white;
    padding: 30px;
    border-radius: var(--large-radius);
    box-shadow: var(--soft-shadow);
    width: 45%;
    position: relative;
}

.process-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
}

.process-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-slate);
}

.process-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Results Section */
.results-section {
    background: var(--background-gradient);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.result-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--large-radius);
    box-shadow: var(--soft-shadow);
    transition: var(--premium-transition);
}

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

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 10px;
}

.result-label {
    font-size: 1.1rem;
    color: var(--dark-slate);
    font-weight: 500;
    margin-bottom: 10px;
}

.result-description {
    color: #6b7280;
    font-size: 0.9rem;
}

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--dark-slate);
            background-color: var(--light-cream);
            overflow-x: hidden;
        }

        /* RESPONSIVE CONTAINER SYSTEM */
        .container {
            width: 100%;
            margin: 0 auto;
            padding: 0 1rem;
            max-width: 1200px;
        }

        @media (min-width: 576px) {
            .container { padding: 0 1.5rem; }
        }

        @media (min-width: 768px) {
            .container { padding: 0 2rem; }
        }

        @media (min-width: 992px) {
            .container { padding: 0 2rem; }
        }

        @media (min-width: 1200px) {
            .container { padding: 0 2rem; }
        }

        /* PARTICLES ANIMATION */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: var(--primary-orange);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 8s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
            33% { transform: translateY(-30px) rotate(120deg); opacity: 0.8; }
            66% { transform: translateY(15px) rotate(240deg); opacity: 0.4; }
        }

        /* HERO SECTION */
        .hero {
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f97316" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-text {
            color: var(--dark-slate);
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(249, 115, 22, 0.1);
            border: 1px solid rgba(249, 115, 22, 0.2);
            color: var(--primary-orange);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            margin-top: 2rem;
            box-shadow: var(--soft-shadow);
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
            background: var(--dark-slate);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero h1 span {
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.2rem);
            opacity: 0.8;
            margin-bottom: 40px;
            line-height: 1.6;
            color: var(--neutral-gray);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image {
            width: 100%;
            max-width: 400px;
            height: 300px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: var(--large-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--soft-shadow);
            margin: 0 auto;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .floating-icon {
            position: absolute;
            width: 50px;
            height: 50px;
            background: var(--brand-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: var(--soft-shadow);
            animation: float 6s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
        .floating-icon:nth-child(3) { bottom: 15%; left: 15%; animation-delay: 4s; }

        /* HERO STATS - RESPONSIVE GRID */
        .aut-hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .aut-stat-item {
            text-align: center;
            padding: 20px 10px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(249, 115, 22, 0.1);
            border-radius: var(--corner-radius);
            box-shadow: var(--soft-shadow);
            height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .aut-stat-number {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
        @media (max-width: 780px) {
            .process-step {
                flex-direction: column !important;
            }
            .process-content {
                width: 100%;
            }
            .process-timeline::before {
                left: 30px;
            }
            .process-number {
                left: 30px;
            }
        }
            font-weight: 800;
            color: var(--primary-orange);
            display: block;
        }

        .aut-stat-label {
            margin-top: 8px;
            color: var(--neutral-gray);
            opacity: 0.8;
            font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        }

        /* SECTION STYLES */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-light {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 6vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            background: var(--dark-slate);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title span {
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title-secondary {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 6vw, 2.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: var(--light-cream);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title-secondary span {
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: clamp(1rem, 8vw, 1.2rem);
            color: var(--neutral-gray);
            line-height: 1.6;
            opacity: 0.8;
            margin-top: 20px;
            text-align: center;
        }

        .section-subtitle-secondary {
            font-size: clamp(1rem, 8vw, 1.2rem);
            color: var(--light-cream);
            line-height: 1.6;
            opacity: 0.8;
            margin-top: 20px;
        }

        /* PROBLEM SECTION */
        .problem-section {
            background: var(--dark-glass);
            backdrop-filter: blur(30px);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .problem-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(249, 115, 22, 0.08) 50%, transparent 70%);
            animation: shimmer 4s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .problem-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--large-radius);
            padding: 30px;
            box-shadow: var(--glass-shadow);
            transition: var(--premium-transition);
            position: relative;
            overflow: hidden;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--brand-gradient);
        }

        .problem-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(249, 115, 22, 0.25);
        }

        .problem-icon {
            width: 60px;
            height: 60px;
            background: var(--neo-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: white;
            font-size: 1.5rem;
            box-shadow: var(--soft-shadow);
        }

        .problem-card-title {
            color: white;
            font-family: var(--font-heading);
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            margin-bottom: 16px;
        }

        .problem-card-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        /* SERVICES GRID */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(249, 115, 22, 0.1);
            border-radius: var(--large-radius);
            padding: 30px;
            box-shadow: var(--soft-shadow);
            transition: var(--premium-transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--brand-gradient);
        }

        .service-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--brand-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: white;
            font-size: 1.5rem;
            box-shadow: var(--soft-shadow);
            position: relative;
        }

        .service-card h3 {
            font-family: var(--font-heading);
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--dark-slate);
        }

        .service-description {
            color: var(--neutral-gray);
            margin-bottom: 24px;
            line-height: 1.6;
            opacity: 0.8;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

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

        .service-features li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: var(--neutral-gray);
            transition: var(--smooth-transition);
            opacity: 0.8;
            font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        }

        .service-features li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--primary-orange);
            font-weight: bold;
            font-size: 1rem;
        }

        /* AI AGENTS SECTION */
        .ai-agents {
            background: var(--dark-glass);
            backdrop-filter: blur(30px);
            color: white;
            position: relative;
        }

        .ai-agents::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
        }

        .agent-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .agent-card {
            background: var(--glass-surface);
            backdrop-filter: blur(25px);
            border: 1px solid var(--glass-outline);
            border-radius: var(--large-radius);
            padding: 25px;
            box-shadow: var(--glass-shadow);
            transition: var(--premium-transition);
            position: relative;
            overflow: hidden;
        }

        .agent-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
        }

        .agent-type {
            background: var(--neo-gradient);
            color: white;
            padding: 6px 15px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: var(--soft-shadow);
        }

        .agent-card-title {
            color: white;
            font-family: var(--font-heading);
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            margin-bottom: 16px;
        }

        .agent-card-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .agent-capabilities {
            list-style: none;
            padding: 0;
        }

        .agent-capabilities li {
            color: rgba(255, 255, 255, 0.9);
            padding: 6px 0;
            position: relative;
            padding-left: 25px;
            font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        }

        .agent-capabilities li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: bold;
        }

        /* PROCESS SECTION */
        .process-section {
            background: var(--background-gradient);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 158, 0, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 183, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

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

        .neural-node {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-orange);
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse 3s infinite;
        }

        .neural-connection {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
            opacity: 0.2;
            animation: flow 4s infinite;
        }

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

        @keyframes flow {
            0% { opacity: 0; }
            50% { opacity: 0.4; }
            100% { opacity: 0; }
        }

        .web3-process {
            position: relative;
            z-index: 2;
        }

        .process-square-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .process-square-container {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .process-square {
            width: 100%;
            max-width: 300px;
            height: 250px;
            background: white;
            position: relative;
            border-radius: var(--large-radius);
            transition: var(--premium-transition);
            cursor: pointer;
            border: 2px solid transparent;
            background-clip: padding-box;
            box-shadow: var(--soft-shadow);
        }

        .process-square:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: var(--hover-shadow);
        }

        .square-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            padding: 20px;
            width: 90%;
        }

        .square-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--brand-gradient);
            color: white;
            border-radius: 16px;
            font-size: 1.3rem;
            font-weight: 800;
            font-family: var(--font-heading);
            margin-bottom: 20px;
            position: relative;
            box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
        }

        .square-title {
            font-size: clamp(1rem, 3vw, 1.2rem);
            font-weight: 700;
            font-family: var(--font-heading);
            color: var(--dark-slate);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .square-description {
            color: var(--neutral-gray);
            font-size: clamp(0.85rem, 2.5vw, 0.9rem);
            font-family: var(--font-body);
            line-height: 1.5;
            opacity: 0.9;
        }

        .status-indicator {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 20px;
            height: 20px;
            background: var(--success-teal);
            border: 3px solid white;
            border-radius: 50%;
            animation: statusPulse 2s infinite;
        }

        @keyframes statusPulse {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }
            50% { 
                box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
            }
        }

        .holographic-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255, 158, 0, 0.15) 50%, 
                transparent 70%);
            border-radius: var(--large-radius);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .process-square:hover .holographic-overlay {
            animation: holographicScan 1s ease-out;
        }

        @keyframes holographicScan {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        

        .portfolio-section {
    background: var(--dark-slate);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.portfolio-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.before-section, .after-section {
    text-align: center;
}

.before-section h4, .after-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.before-stats, .after-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.before-stats span, .after-stats span {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 12px;
}

.result-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 15px;
    background: var(--secondary-amber);
    color: var(--light-cream);
    border-radius: 10px;
    font-weight: 600;
}

.va-monitoring {
    background: var(--light-cream);
}

.monitoring-features {
    display: grid;
    gap: 60px;
    margin-top: 60px;
}

.monitoring-dashboard, .monitoring-automation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.dashboard-screen {
    background: var(--dark-slate);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.status-live {
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

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

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
}

.metric-label {
    font-size: 12px;
    opacity: 0.7;
}

.dashboard-chart {
    display: flex;
    gap: 8px;
    align-items: end;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: var(--primary-orange);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--light-cream);
    border-radius: 10px;
    border: 2px solid var(--primary-orange);
}

.workflow-step i {
    font-size: 24px;
    color: var(--primary-orange);
}

.workflow-arrow {
    font-size: 20px;
    color: var(--primary-orange);
    font-weight: bold;
}

.monitoring-benefits {
    list-style: none;
    margin-top: 25px;
}

.monitoring-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.monitoring-benefits li:before {
    content: "✓";
    color: var(--primary-orange);
    font-weight: bold;
}

.pricing-section {
    background: var(--gradient-primary);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--accent-gold);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--dark-slate);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
}

.price-period {
    font-size: 14px;
    opacity: 0.8;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features i {
    color: var(--accent-gold);
}

.cta-button {
    
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--accent-gold);
    color: var(--dark-slate);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--accent-gold);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}


/* Sample Works Carousel Section */
        .sample-works {
            padding: 100px 0;
            background: var(--dark-slate);
            position: relative;
            overflow: hidden;
        }

        .sample-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 158, 0, 0.08) 0%, transparent 50%);
        }

        .sample-works-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .sample-works-header h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .sample-works-header .highlight {
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            overflow: hidden;
            border-radius: var(--large-radius);
            position: relative;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            background: var(--glass-surface);
            border: 1px solid var(--glass-outline);
            backdrop-filter: blur(20px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 40px;
            padding: 40px;
        }

        .video-container {
            position: relative;
            aspect-ratio: 16/9;
            background: var(--neo-gradient);
            border-radius: var(--corner-radius);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .video-container:hover {
            transform: scale(1.02);
        }

        .video-placeholder {
            color: white;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .video-placeholder i {
            font-size: 3rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .video-placeholder h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .slide-content {
            color: white;
        }

        .slide-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 16px;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .slide-content .client-info {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .slide-content p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .brand-assets {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .asset-tag {
            background: rgba(249, 115, 22, 0.2);
            border: 1px solid rgba(249, 115, 22, 0.3);
            color: var(--secondary-amber);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .result-highlight {
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 12px 20px;
            border-radius: var(--corner-radius);
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--success-teal);
            font-weight: 600;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .nav-btn {
            background: var(--glass-surface);
            border: 1px solid var(--glass-outline);
            backdrop-filter: blur(20px);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: var(--premium-transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .nav-btn:hover {
            background: rgba(249, 115, 22, 0.2);
            border-color: rgba(249, 115, 22, 0.4);
            transform: scale(1.1);
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--smooth-transition);
        }

        .indicator.active {
            background: var(--primary-orange);
            transform: scale(1.2);
        }

        /* Branding Services Section */
        .branding-services {
            padding: 100px 0;
            background: var(--light-cream);
            position: relative;
        }

        .services-grid-branding {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .branding-service-card {
            background: white;
            border-radius: var(--large-radius);
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--soft-shadow);
            transition: var(--premium-transition);
            border: 1px solid rgba(249, 115, 22, 0.1);
        }

        .branding-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--brand-gradient);
        }

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

        .service-icon-web3 {
            width: 80px;
            height: 80px;
            background: var(--neo-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
        }

        .service-icon-web3::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            transform: translate(-50%, -50%);
        }

        .service-icon-web3 i {
            font-size: 2rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .branding-service-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--dark-slate);
            margin-bottom: 16px;
        }

        .branding-service-card p {
            color: rgba(31, 41, 55, 0.7);
            margin-bottom: 24px;
            line-height: 1.6;
        }

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

        .service-features-web3 li {
            color: rgba(31, 41, 55, 0.8);
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }

        .service-features-web3 li::before {
            content: '✨';
            position: absolute;
            left: 0;
            color: var(--primary-orange);
        }

        /* Results Showcase */
        .results-showcase {
            padding: 100px 0;
            background: var(--dark-slate);
            position: relative;
            overflow: hidden;
        }

        .results-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 158, 0, 0.1) 0%, transparent 50%);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .result-card {
            background: var(--glass-surface);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-outline);
            border-radius: var(--large-radius);
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--premium-transition);
        }

        .result-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
        }

        .result-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--brand-gradient);
        }

        .result-metric {
            font-size: 3rem;
            font-weight: 800;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .result-label {
            color: white;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .result-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }

        /* Success Stories Section */
        .success-stories {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-cream) 0%, rgba(255,248,240,0.8) 100%);
            position: relative;
        }

        .success-stories::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 40%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
        }

        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .story-card {
            background: white;
            border-radius: var(--large-radius);
            padding: 40px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: var(--premium-transition);
            border: 1px solid rgba(249, 115, 22, 0.1);
        }

        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .story-quote {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--dark-slate);
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
        }

        .story-quote::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary-orange);
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: serif;
            opacity: 0.3;
        }

        .story-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brand-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.5rem;
        }

        .author-info h4 {
            font-weight: 600;
            color: var(--dark-slate);
            margin-bottom: 5px;
        }

        .author-info p {
            color: rgba(31, 41, 55, 0.6);
            font-size: 0.9rem;
        }

        .story-results {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .result-badge {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success-teal);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        @media (max-width: 768px) {
            .carousel-slide {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px 20px;
            }
            
            .video-container {
                order: -1;
            }
            
            .services-grid-branding,
            .results-grid,
            .stories-grid {
                grid-template-columns: 1fr;
            }
        }

@media (max-width: 768px) {
    .monitoring-dashboard, .monitoring-automation {
        grid-template-columns: 1fr;
    }
    
    .workflow-diagram {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

        /* RESPONSIVE BREAKPOINTS */
        @media (min-width: 768px) {
            .hero {
                padding: 100px 0;
            }

            .hero-content {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }

            .hero-text {
                text-align: left;
            }

            .hero-subtitle {
                margin-left: 0;
                margin-right: 0;
            }

            .aut-hero-stats {
                grid-template-columns: repeat(4, 1fr);
                margin-left: 0;
                margin-right: 0;
            }

            .aut-stat-item {
                height: 130px;
            }

            .hero-image {
                max-width: 500px;
                height: 400px;
            }

            .floating-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .problem-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

            .problem-card {
                padding: 40px;
            }

            .problem-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }

            .service-card {
                padding: 40px 30px;
            }

            .service-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .agent-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }

            .agent-card {
                padding: 35px;
            }

            .process-square-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 40px;
                max-width: none;
            }

            .process-square {
                width: 280px;
                height: 280px;
            }

            .square-content {
                padding: 30px;
            }

            .square-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .section {
                padding: 100px 0;
            }

            .section-header {
                margin-bottom: 80px;
            }
        }

        /* Case study section for the automation class */

          .case-study-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 80px;
        }
        
        .case-details {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(249, 115, 22, 0.1);
        }
        
        .client-info {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .client-info h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .client-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            font-size: 0.95rem;
        }
        
        .challenge-section {
            margin-bottom: 30px;
        }
        
        .challenge-section h4 {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .challenge-list {
            list-style: none;
            space: 15px;
        }
        
        .challenge-list li {
            padding: 15px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .challenge-list li:last-child {
            border-bottom: none;
        }
        
        .challenge-icon {
            background: var(--primary-color);
            color: var(--white);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .results-summary {
            background: linear-gradient(135deg, var(--success-color), #48bb78);
            color: var(--white);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
        }
        
        .results-summary h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .key-metric {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .dashboard-container {
            background: var(--dark-color);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            border: 1px solid #374151;
        }
        
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #374151;
        }
        
        .dashboard-title {
            color: var(--white);
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .dashboard-date {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .dashboard-metric-card {
            background: #374151;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #4b5563;
            transition: all 0.3s ease;
            display: block;
        }
        
        .dashboard-metric-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.2);
            border-color: var(--primary-color);
        }
        
        .metric-label {
            color: var(--gray-color);
            font-size: 0.85rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .metric-value {
            color: var(--white);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .metric-change {
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .positive {
            color: var(--success-color);
        }
        
        .negative {
            color: var(--error-color);
        }
        
        .chart-container {
            background: #374151;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid #4b5563;
        }
        
        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .chart-title {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .chart-period {
            color: var(--gray-color);
            font-size: 0.8rem;
        }
        
        .chart-area {
            height: 220px;
            background: linear-gradient(180deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            padding: 20px;
        }
        
        .line-chart {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .chart-svg {
            width: 100%;
            height: 100%;
        }
        
        .chart-line {
            fill: none;
            stroke: var(--primary-color);
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
            filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.3));
        }
        
        .chart-area-fill {
            fill: url(#gradient);
            opacity: 0.6;
        }
        
        .chart-dot {
            fill: var(--primary-color);
            stroke: var(--white);
            stroke-width: 2;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .chart-dot:hover {
            fill: var(--secondary-color);
            transform: scale(1.2);
            stroke-width: 3;
        }
        
        .chart-grid-line {
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 1;
        }
        
        .chart-label {
            fill: var(--gray-color);
            font-size: 10px;
            text-anchor: middle;
        }
        
        @keyframes drawLine {
            0% { stroke-dasharray: 0 1000; }
            100% { stroke-dasharray: 1000 0; }
        }
        
        .chart-line {
            stroke-dasharray: 1000;
            animation: drawLine 2s ease-in-out forwards;
        }
        
        .activity-feed {
            background: #374151;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid #4b5563;
            height: 306px;
            overflow-y: auto;
        }
        
        .activity-header {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .activity-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #4b5563;
        }
        
        .activity-item:last-child {
            border-bottom: none;
        }
        
        .activity-icon {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary-color);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .activity-text {
            color: var(--gray-color);
            font-size: 0.9rem;
            flex: 1;
        }
        
        .activity-time {
            color: #6b7280;
            font-size: 0.8rem;
        }
        
        .gauge-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .gauge-card {
            background: #374151;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #4b5563;
            text-align: center;
            position: relative;
        }
        
        .gauge-title {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .gauge-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: conic-gradient(var(--primary-color) 0deg, var(--primary-color) var(--progress), #4b5563 var(--progress), #4b5563 360deg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            position: relative;
            animation: gaugeAnimation 2s ease-out;
        }
        
        .gauge-circle::before {
            content: '';
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: #374151;
            position: absolute;
        }
        
        .gauge-value {
            color: var(--white);
            font-size: 1.8rem;
            font-weight: 700;
            z-index: 1;
            position: relative;
        }
        
        .gauge-label {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        .gauge-improvement {
            color: var(--success-color);
            font-size: 0.85rem;
            margin-top: 8px;
            font-weight: 600;
        }
        
        @keyframes gaugeAnimation {
            from { transform: rotate(-90deg); }
            to { transform: rotate(0deg); }
        }
        
        .revenue-gauge { --progress: 270deg; }
        .time-gauge { --progress: 306deg; }
        
        .bottom-metrics {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        
        @media (max-width: 768px) {
            .case-study-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .metrics-grid {
                grid-template-columns: 1fr;
            }
            
            .gauge-container {
                grid-template-columns: 1fr;
            }
            
            .bottom-metrics {
                grid-template-columns: 1fr;
            }
            
            .client-details {
                grid-template-columns: 1fr;
            }
            
        }

        /* UTILITY CLASSES */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .enhanced-hover {
            transition: var(--premium-transition);
        }

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

     

        /* FLOATING PARTICLE ANIMATIONS */
        .floating-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--brand-gradient);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 6s infinite;
        }

        .blockchain-connection {
            display: none;
        }

        @media (min-width: 768px) {
            .blockchain-connection {
                display: block;
                position: absolute;
                top: 50%;
                left: 100%;
                width: 60px;
                height: 2px;
                background: var(--brand-gradient);
                transform: translateY(-50%);
                opacity: 0.8;
                animation: dataFlow 2s infinite;
            }

            .blockchain-connection::after {
                content: '';
                position: absolute;
                right: -8px;
                top: 50%;
                width: 0;
                height: 0;
                border-left: 8px solid var(--secondary-amber);
                border-top: 4px solid transparent;
                border-bottom: 4px solid transparent;
                transform: translateY(-50%);
            }
        }

        @keyframes dataFlow {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 0%; }
        }

        /* ADDITIONAL MOBILE OPTIMIZATIONS */
        @media (max-width: 575px) {
            .hero {
                padding: 40px 0 60px;
            }

            .hero-image {
                height: 250px;
            }

            .aut-hero-stats {
                gap: 10px;
            }

            .aut-stat-item {
                padding: 15px 8px;
                height: 100px;
            }

            .section {
                padding: 60px 0;
            }

            .problem-card, .service-card, .agent-card {
                padding: 20px;
            }

            .process-square {
                height: 220px;
            }

            .square-content {
                padding: 15px;
            }

            .square-number {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }

        /* HIGH DPI DISPLAYS */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .hero::before {
                background-size: 50px 50px;
            }
        }

        /* ACCESSIBILITY IMPROVEMENTS */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }