:root {
            --primary-purple: #6667ab;
            --dark-purple: #4a4b7c;
            --accent-orange: #ff6b35;
            --accent-yellow: #f7931e;
            --accent-green: #2ecc71;
            --brutalist-black: #000;
            --brutalist-white: #fff;
            --light-gray: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .montserrat-<uniquifier> {
            font-family: "Montserrat", sans-serif;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            font-weight: bold;
            color: var(--brutalist-black);
            background-color: var(--brutalist-white);
            overflow-x: hidden;
            padding-top: 80px;
        }

        .brutalist-border {
            border: 4px solid var(--brutalist-black) !important;
        }

        .brutalist-shadow {
            box-shadow: 8px 8px 0px var(--brutalist-black);
        }

        .brutalist-btn {
            border: 3px solid var(--brutalist-black);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.2s ease;
            box-shadow: 4px 4px 0px var(--brutalist-black);
        }

        .brutalist-btn:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0px var(--brutalist-black);
        }

        .brutalist-btn:active {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0px var(--brutalist-black);
        }

        .btn-primary-custom {
            background-color: var(--primary-purple);
            color: white;
            border-color: var(--brutalist-black);
        }

        .btn-primary-custom:hover {
            background-color: var(--dark-purple);
            color: white;
            border-color: var(--brutalist-black);
        }

        .btn-outline-custom {
            background-color: var(--brutalist-white);
            color: var(--brutalist-black);
            border-color: var(--brutalist-black);
        }

        .btn-outline-custom:hover {
            background-color: var(--accent-orange);
            color: white;
            border-color: var(--brutalist-black);
        }

        /* Navbar */
        .navbar-custom {
            background-color: rgba(102, 103, 171, 0.9);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border-bottom: 4px solid var(--brutalist-black);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .navbar-custom.scrolled {
            background-color: rgba(102, 103, 171, 0.95);
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--brutalist-white) !important;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .logo-container {
            background-color: var(--brutalist-white);
            padding: 8px 12px;
            border: 3px solid var(--brutalist-black);
            box-shadow: 4px 4px 0px var(--brutalist-black);
            transition: all 0.2s ease;
        }

        .navbar-brand:hover .logo-container {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0px var(--brutalist-black);
        }

        .navbar-nav .nav-link {
            color: var(--brutalist-white) !important;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 10px;
            padding: 8px 16px !important;
            border: 2px solid transparent;
            transition: all 0.2s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--brutalist-black) !important;
            background-color: var(--brutalist-white);
            border: 2px solid var(--brutalist-black);
            transform: translate(-1px, -1px);
            box-shadow: 3px 3px 0px var(--brutalist-black);
        }

        .navbar-toggler {
            border: 3px solid var(--brutalist-white);
            background-color: var(--brutalist-black);
            width: 50px;
            height: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            display: none;
        }

        .brutalist-burger {
            width: 25px;
            height: 3px;
            background-color: var(--brutalist-white);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */


        .hero-section {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--brutalist-white) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 98px,
                    var(--primary-purple) 98px,
                    var(--primary-purple) 100px
                );
            opacity: 0.1;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .brutalist-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .moving-shape {
            position: absolute;
            background-color: var(--primary-purple);
            opacity: 0.1;
        }

        .shape-1 {
            width: 100px;
            height: 100px;
            top: 10%;
            left: -50px;
            animation: moveRight 15s linear infinite;
        }

        .shape-2 {
            width: 80px;
            height: 80px;
            top: 60%;
            right: -40px;
            background-color: var(--accent-orange);
            animation: moveLeft 20s linear infinite;
        }

        .shape-3 {
            width: 60px;
            height: 60px;
            top: 30%;
            left: 50%;
            background-color: var(--accent-yellow);
            animation: moveUpDown 12s linear infinite;
        }

        @keyframes moveRight {
            0% { transform: translateX(-100px); }
            100% { transform: translateX(calc(100vw + 100px)); }
        }

        @keyframes moveLeft {
            0% { transform: translateX(100px); }
            100% { transform: translateX(calc(-100vw - 100px)); }
        }

        @keyframes moveUpDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-200px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            color: var(--brutalist-black);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--primary-purple);
            font-weight: bold;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--brutalist-black);
            margin-bottom: 40px;
            font-weight: normal;
            max-width: 600px;
        }

        /* Services Section */
        .services-section {
            background-color: var(--light-gray);
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 60px;
            color: var(--brutalist-black);
        }

        .service-card {
            background-color: var(--brutalist-white);
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-card:nth-child(odd) {
            background-color: var(--primary-purple);
            color: white;
        }

        .service-card:nth-child(even) {
            background-color: var(--accent-orange);
            color: white;
        }

        .service-card:hover {
            transform: translate(-4px, -4px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .service-description {
            font-size: 1rem;
            line-height: 1.6;
            font-weight: normal;
        }

        /* Stats Section */
        .stats-section {
            background-color: var(--brutalist-black);
            color: var(--brutalist-white);
            padding: 80px 0;
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--brutalist-white);
            color: var(--brutalist-black);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .stat-card:nth-child(1) { background-color: var(--accent-yellow); }
        .stat-card:nth-child(2) { background-color: var(--accent-orange); }
        .stat-card:nth-child(3) { background-color: var(--accent-green); }
        .stat-card:nth-child(4) { background-color: var(--primary-purple); color: white; }
        .stat-card:nth-child(5) { background-color: var(--dark-purple); color: white; }
        .stat-card:nth-child(6) { background-color: var(--brutalist-white); }

        .stat-card:hover {
            transform: translate(-3px, -3px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--brutalist-black);
            color: var(--brutalist-white);
            padding: 0 0 100px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .cta-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            font-weight: normal;
        }

        .btn-cta {
            background-color: var(--accent-yellow);
            color: var(--brutalist-black);
            border: 3px solid var(--brutalist-white);
            font-size: 1.2rem;
            padding: 15px 40px;
        }

        .btn-cta:hover {
            background-color: var(--primary-purple);
            color: white;
            border-color: var(--brutalist-white);
        }

        /* Footer */
        .footer {
            background-color: var(--primary-purple);
            color: var(--brutalist-white);
            padding: 60px 0 30px;
            border-top: 5px solid var(--brutalist-black);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .footer-nav {
            display: flex;
            gap: 30px;
        }

        .footer-nav a {
            color: var(--brutalist-white);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.2s ease;
            padding: 8px 16px;
            border: 2px solid transparent;
        }

        .footer-nav a:hover {
            color: var(--brutalist-black);
            background-color: var(--brutalist-white);
            border: 2px solid var(--brutalist-black);
            transform: translate(-1px, -1px);
            box-shadow: 3px 3px 0px var(--brutalist-black);
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: var(--brutalist-white);
            color: var(--brutalist-black);
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.2s ease;
            border: 3px solid var(--brutalist-black);
            box-shadow: 4px 4px 0px var(--brutalist-black);
        }

        .social-link:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0px var(--brutalist-black);
            color: var(--primary-purple);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 2px solid var(--brutalist-white);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--accent-yellow);
            text-decoration: none;
            font-weight: bold;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .hero-title {
                font-size: 2.5rem;
                letter-spacing: 1px;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .stat-card {
                margin-bottom: 15px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }