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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #374151;
            background: linear-gradient(to bottom, #fffbeb, #ffffff);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        header {
            font-family: 'Alan Sans','Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }



        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 4rem;
            padding: 0 1.5rem;
            flex-wrap: wrap
        }

        .logo {
            font-family: 'Alan Sans','Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #b45309;
            font-weight: 700;
            font-size: 2.25rem;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #6b7280;
            text-decoration: none;
            padding: 0.25rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #d97706;
            border-bottom-color: #d97706;
        }

        /* Main Content */
        .main-content {
            padding: 8rem 1rem 3rem;
        }

        .page-header {
            font-family: 'Alan Sans','Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            text-align: center;
            margin-bottom: 4rem;
        }

        h1 {
            font-family: 'Alan Sans','Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .subtitle {
            
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 1rem;
        }

        .section-divider {
            width: 5rem;
            height: 0.25rem;
            background: #d97706;
            margin: 1.5rem auto 2rem;
        }

        .intro-text {
            max-width: 48rem;
            margin: 0 auto;
            font-size: 1.125rem;
            color: #6b7280;
            line-height: 1.7;
        }

        .back-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

    .back-link:hover {
        color: #d97706;
    }

    .case-study-section {
        margin-bottom: 2.5rem;
    }

    ul {
        font-size: 1.125rem;
        color: #6b7280;
        margin-bottom: 1.5rem;
        line-height: 1.7;
        padding-left: 1.5rem;
    }

    li {
        margin-bottom: 0.5rem;
    }

    .highlight {
        background: #fffbeb;
        border-radius: 0.5rem;
        padding: 2rem;
        margin: 2.5rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #d97706;
    }

    .highlight h2 {
        color: #b45309;
        margin-bottom: 1rem;
    }

    .highlight p {
        color: #374151;
        margin-bottom: 0;
    }

    .navigation {
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid #e5e7eb;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-outline {
        padding: 0.75rem 2rem;
        background: transparent;
        color: #d97706;
        border: 2px solid #d97706;
        border-radius: 0.375rem;
        font-weight: 500;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        transition: all 0.3s ease;
    }

    .btn-outline:hover {
        background: #fffbeb;
    }

/* Case Studies Grid */
        .case-studies-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .case-study-card {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .case-study-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            padding: 1.5rem 1.5rem 1rem;
        }

        .case-study-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .case-study-subtitle {
            font-size: 0.875rem;
            color: #d97706;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .case-study-description {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .case-study-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .tag {
            padding: 0.25rem 0.75rem;
            background: #fef3c7;
            color: #b45309;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .card-footer {
            padding: 0 1.5rem 1.5rem;
        }

        .read-more {
            color: #d97706;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: #b45309;
        }

        .read-more svg {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }

        .read-more:hover svg {
            transform: translateX(2px);
        }

/* Testimonials Grid */
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .testimonial-card {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .quote-icon {
            color: #d97706;
            font-size: 2rem;
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.6;
        }

        .testimonial-text {
            color: #374151;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-attribution {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .testimonial-role {
            color: #1f2937;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .testimonial-context {
            color: #6b7280;
            font-size: 0.875rem;
        }


/* Demos Grid */
        .demos-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .demo-card {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            transition: all 0.3s ease;
            border-left: 4px solid #d97706;
        }

        .demo-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .demo-title {
            font-family: 'Alan Sans','Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .demo-description {
            color: #6b7280;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .demo-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #d97706;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border: 2px solid #d97706;
            border-radius: 0.375rem;
            transition: all 0.3s ease;
        }

        .demo-link:hover {
            background: #d97706;
            color: white;
            transform: translateY(-1px);
        }








/* Keyword Pills */
        .keyword-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .pill {
            background: #fef3c7;
            color: #92400e;
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            border: 1px solid #fcd34d;
        }



        /* Call to Action */
        .cta-section {
            background: #fffbeb;
            border-radius: 0.5rem;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .cta-title {
            font-family: 'Alan Sans','Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .cta-text {
            color: #6b7280;
            margin-bottom: 2rem;
        }

        .btn-primary {
            padding: 0.75rem 2rem;
            background: #d97706;
            color: white;
            border: none;
            border-radius: 0.375rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(217, 119, 6, 0.2);
        }

        .btn-primary:hover {
            background: #b45309;
            transform: translateY(-1px);
            box-shadow: 0 6px 12px rgba(217, 119, 6, 0.3);
        }

 




/* Footer */

        footer {
            background: #1f2937;
            color: white;
            padding: 2rem 1rem;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        .footer-logo {
            font-family: 'Alan Sans','Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #fbbf24;
            font-weight: 600;
            font-size: 1.25rem;
        }

        .footer-tagline {
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .footer-copy {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
            font-size: 0.875rem;
            text-align: center;
        }


        .footer-contact-box {
            background: #fffbeb;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-top: 1rem;
            color: #374151;
        }


                       /* Mobile Menu */
        .mobile-menu {
            display: block;
            background: none;
            border: none;
            color: #6b7280;
            cursor: pointer;
        }

        @media (max-width: 767px) {
            
            /* Hide nav by default on mobile */
            .nav-links {
                display: none;
            }
            
            .nav-links.mobile-active {
                position: fixed !important;
                top: 4rem !important;
                left: 0 !important;
                right: 0 !important;
                display: flex !important;
                flex-direction: column !important;
                justify-content: flex-start !important;
                align-items: stretch !important;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(8px);
                padding: 1.5rem;
                gap: 1rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                z-index: 40;
                border-bottom: 1px solid #e5e7eb;
            }
            
            .nav-links.mobile-active li {
                width: 100%;
                text-align: center;
            }
            
            .nav-links.mobile-active a {
                display: block;
                padding: 0.75rem 1rem;
                font-size: 1.125rem;
                border-radius: 0.375rem;
                border-bottom: none !important;
            }
        }

        /* Responsive Design */
        @media (min-width: 640px) {
            .container {
                padding: 0 1.5rem;
            }

            .navigation {
                flex-direction: row;
                justify-content: center;
            }

            h1 {
                font-size: 3rem;
            }

            .case-studies-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .demos-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }

            .mobile-menu {
                display: none;
            }

            h1 {
                font-size: 3.75rem;
            }

            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

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

            h1 {
                font-size: 4rem;
            }

            .case-studies-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }



