        :root {
            --bg-dark: #030303;
            --bg-secondary: #080808;
            --bg-card: rgba(255, 255, 255, 0.03);
            --bg-card-hover: rgba(255, 255, 255, 0.06);
            --primary: #FF007F;
            /* User Pink */
            --primary-gradient: linear-gradient(135deg, #FF007F 0%, #9d00ff 100%);
            --secondary: #6366f1;
            /* Indigo */
            --accent: #FF007F;
            --text-main: #EDEDED;
            --text-muted: #888888;
            --border-color: rgba(255, 255, 255, 0.1);
            --glass: rgba(15, 23, 42, 0.6);
            --font-main: 'Outfit', sans-serif;
            --max-width: 1200px;
            --header-height: 80px;
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        button, input, select, textarea {
            font-family: inherit;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100vh;
            background: radial-gradient(circle at 50% 0%, rgba(255, 0, 127, 0.15), transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* Utilities */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: 6rem 0;
        }

        .text-gradient {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hidden {
            display: none;
            opacity: 0;
            pointer-events: none;
        }


        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5);
        }

        .btn-sm {
            padding: 0.6rem 1.5rem;
            font-size: 0.9rem;
        }

        .btn-primary {
             font-family: var(--font-main);
            background: var(--primary-gradient);
            color: white;
            border: none;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .btn-outline-light {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
        }

        .btn-outline-light:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        .btn-dark {
            background: var(--bg-dark);
            color: white;
            border: 1px solid var(--border-color);
        }

        .btn-dark:hover {
            border-color: var(--primary);
        }

        .btn-text {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-text:hover {
            gap: 0.8rem;
            /* Slight slide effect */
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: transparent;
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .site-header.scrolled {
            background: rgba(3, 3, 3, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo img {
            height: 40px;
        }

        .main-nav ul {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .main-nav a:not(.btn) {
            font-weight: 500;
            color: var(--text-muted);
        }

        .main-nav a:not(.btn):hover {
            color: var(--primary);
        }

        /* Mobile Menu Toggler */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-main);
            cursor: pointer;
            z-index: 1002;
            position: relative;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
        }

        .mobile-toggle i {
            transition: opacity 0.2s ease;
        }

        .mobile-toggle .menu-icon,
        .mobile-toggle .close-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .mobile-toggle .close-icon {
            opacity: 0;
            pointer-events: none;
        }

        .mobile-toggle.active .menu-icon {
            opacity: 0;
            pointer-events: none;
        }

        .mobile-toggle.active .close-icon {
            opacity: 1;
            pointer-events: all;
        }

        /* Mobile Mobile Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(3, 3, 3, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1001;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu ul {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .mobile-menu a {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-main);
        }

        .mobile-menu a:hover {
            color: var(--primary);
        }

        .mobile-menu .btn {
            margin-top: 1rem;
            font-size: 1.2rem;
            padding: 1rem 3rem;
        }

        .mobile-menu-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            color: var(--text-main);
            cursor: pointer;
            z-index: 1005;
            transition: transform 0.3s ease;
        }

        .mobile-menu-close:hover {
            transform: rotate(90deg);
            color: var(--primary);
        }


        /* Hero Section */
        .hero-section {
            position: relative;
            padding-top: calc(var(--header-height) + 6rem);
            padding-bottom: 8rem;
            text-align: center;
            overflow: hidden;
            /* Added background image with dark overlay */
            background: linear-gradient(to bottom, rgba(3, 3, 3, 0.7), rgba(3, 3, 3, 0.9)), url('./hero-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-bg-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 0, 127, 0.15) 0%, rgba(3, 3, 3, 0) 70%);
            z-index: -1;
            pointer-events: none;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary);
            border-radius: 20px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-content h1 {
            font-size: 4rem;
            line-height: 1.1;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .highlight {
            color: var(--primary);
            /* Fallback */
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }



        /* Hiring Highlight Section */
        .hiring-highlight {
            position: relative;
            z-index: 1;
        }

        .fit-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .fit-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .fit-content p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .fit-image {
            position: relative;
        }

        .fit-image::before {
            content: '';
            position: absolute;
            inset: -20px;
            background: var(--primary-gradient);
            opacity: 0.2;
            filter: blur(40px);
            z-index: -1;
            border-radius: 50%;
        }

        .fit-image img {
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            width: 100%;
            transition: transform 0.5s ease;
        }

        .fit-image:hover img {
            transform: scale(1.02);
        }

        @media (max-width: 992px) {
            .fit-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .fit-content {
                order: 2;
            }

            .fit-image {
                order: 1;
            }
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3.5rem;
            /* Hero-like size */
            font-weight: 700;
            line-height: 1.2;
        }


        /* Cards Grid (Growth Stages) */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);

            padding: 2.5rem;
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            background: var(--bg-card-hover);
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .card.featured {
            border-color: var(--primary);
            background: rgba(59, 130, 246, 0.05);
        }

        .card.featured::before {
            content: "Recommended";
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 0.7rem;
            color: var(--primary);
            background: rgba(59, 130, 246, 0.1);
            padding: 0.2rem 0.6rem;
            border-radius: 10px;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .card-icon svg {
            width: 32px;
            height: 32px;
        }



        .card-link {
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .card-link:hover gap {
            gap: 0.8rem;
        }

        /* Card Styling - Clean icon based */
        .card.stage-card {
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .card.stage-card:hover {
            transform: translateY(-5px);
            border-color: rgb(49, 47, 47);
            background: var(--bg-card-hover);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 0, 127, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .card h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--text-main);
        }

        .card p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1rem;
        }



        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .service-block {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 3rem;
        }

        .service-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .service-content p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .check-list {
            margin-bottom: 2rem;
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: var(--text-main);
        }

        .check-list li svg {
            color: var(--primary);
            width: 20px;
            height: 20px;
        }


        /* Roles (Cards Slider) */
        .roles-section {
            background: var(--bg-dark);
            overflow: hidden;
            padding-bottom: 4rem;
        }

        .roles-carousel-container {
            width: 100%;
            overflow-x: auto;
            /* Allow manual scrolling */
            overflow-y: hidden;
            padding: 2rem 0;
            position: relative;
            scrollbar-width: none;
            /* Hide scrollbar Firefox */
            -ms-overflow-style: none;
            /* Hide scrollbar IE/Edge */
            cursor: grab;
            /* Show grab cursor */
        }

        .roles-carousel-container:active {
            cursor: grabbing;
        }

        .roles-carousel-container::-webkit-scrollbar {
            display: none;
            /* Hide scrollbar Chrome/Safari */
        }

        .roles-carousel-container::before,
        .roles-carousel-container::after {
            content: "";
            position: absolute;
            top: 0;
            width: 10%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .roles-carousel-container::before {
            left: 0;
            background: linear-gradient(to right, #030303, transparent);
        }

        .roles-carousel-container::after {
            right: 0;
            background: linear-gradient(to left, #030303, transparent);
        }

        .roles-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: scroll 40s linear infinite;
        }

        .roles-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-50% - 0.75rem));
            }
        }

        /* Nav Buttons Removed */


        .role-card {
            flex: 0 0 320px;
            height: 370px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: #111;
        }

        /* Prevent flicker on some browsers */
        .role-card {
            transform: translateZ(0);
        }

        .role-card:hover {
            transform: scale(1.02) translateY(-5px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .role-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }

        .role-card:hover .role-bg {
            transform: scale(1.1);
        }

        .role-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
        }

        .role-content {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            z-index: 2;
        }

        .role-title {
            color: white;
            font-size: 1.75rem;
            font-weight: 800;
            line-height: 1;
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .role-line {
            width: 50px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .role-card {
                flex: 0 0 280px;
                height: 380px;
            }
        }


        /* Business Fit Table */
        .stages-table {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

        .stage-col {
            padding: 3rem 2rem;
            border-right: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
        }

        .stage-col:last-child {
            border-right: none;
        }

        .stage-col h3 {
            font-size: 1.75rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .stage-col ul {
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .stage-col ul li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .stage-col ul li::before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -0.2rem;
        }

        .stage-col .btn {
            width: 100%;
        }


        /* Why Us */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .benefit-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius-md);
            border: 1px solid transparent;
            transition: all 0.3s;
        }

        .benefit-item:hover {
            border-color: var(--border-color);
            background: rgba(255, 255, 255, 0.04);
        }

        .benefit-item svg {
            width: 40px;
            height: 40px;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .benefit-item span {
            font-weight: 600;
            display: block;
            line-height: 1.4;
        }


        /* Framework */
        .steps-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            counter-reset: step;
            margin-bottom: 2rem;
        }

        .step-item {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: var(--radius-md);
            width: 200px;
            text-align: center;
            position: relative;
            border: 1px solid var(--border-color);
        }

        .step-num {
            font-size: 2.5rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.1);
            margin-bottom: 0.5rem;
        }

        .step-item p {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .framework-footer {
            text-align: center;
            font-weight: 600;
            font-size: 1.25rem;
            margin-bottom: 2rem;
            /* letter-spacing: 2px; */
            color: var(--text-muted);
        }


        /* Industries */
        /* Industries */
        /* Industries */
        .industry-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .industry-card {
            flex: 1 1 250px;
            /* Grow, Shrink, Basis */
            max-width: 300px;
            /* Prevent them from getting too wide in last row */
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: var(--radius-sm);
            text-align: center;
            font-weight: 500;
            border: 1px solid transparent;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .industry-card:hover {
            border-color: var(--primary);
            color: white;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
        }


        /* Industries - Interactive Layout */
        .industries-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 500px;
        }

        .industries-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .industry-item {
            padding: 1.5rem 2rem;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid transparent;
            background: rgba(255, 255, 255, 0.02);
            position: relative;
            overflow: hidden;
        }

        .industry-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .industry-item.active {
            background: linear-gradient(90deg, rgba(255, 0, 127, 0.1), rgba(0, 0, 0, 0));
            border-left: 4px solid var(--primary);
            padding-left: 2.5rem;
            /* Shift text */
        }

        .industry-item h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .industry-item.active h3 {
            color: white;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .industry-item p {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.4s ease;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0;
        }

        .industry-item.active p {
            max-height: 100px;
            margin-top: 0.5rem;
            opacity: 1;
        }

        .industries-preview {
            position: relative;
            height: 500px;
            width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .preview-image-container {
            width: 100%;
            height: 100%;
        }

        .preview-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease, opacity 0.3s ease;
        }

        .fade-out {
            opacity: 0.5;
            transform: scale(1.05);
        }

        .preview-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(3, 3, 3, 0.8), transparent);
            pointer-events: none;
        }

        @media (max-width: 992px) {
            .industries-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
                min-height: auto;
            }

            .industries-preview {
                height: 300px;
                order: -1;
                /* Show image on top on mobile */
            }
        }


        .cta-box {
            background: var(--primary-gradient);
            border-radius: var(--radius-lg);
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-box h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .cta-box p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .cta-actions .btn-primary {
            background: white;
            color: var(--primary);
        }


        /* Footer */
        .site-footer {
            background: rgba(5, 8, 15, 0.2);
            backdrop-filter: blur(10px);
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            height: 35px;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .footer-desc {
            color: var(--text-muted);
            max-width: 300px;
            font-size: 0.9rem;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 1.25rem;
            font-weight: 600;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-col ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        .footer-socials {
            display: flex;
            gap: 1.5rem;
            margin: 1.5rem 0;
            align-items: center;
        }

        .footer-socials a {
            color: white;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-socials a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .footer-locations {
            font-size: 1.1rem;
            color: white;
            font-weight: 500;
            margin-top: 1rem;
        }


        /* Sticky CTA - Trendy Pill Design */
        .sticky-cta {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(0);
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .sticky-cta.hidden {
            transform: translateX(-50%) translateY(150px);
            opacity: 0;
            pointer-events: none;
        }

        .sticky-glass-content {
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            padding: 0.5rem 0.5rem 0.5rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .sticky-label {
            font-weight: 500;
            color: white;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .sticky-buttons-group {
            display: flex;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 100px;
            padding: 4px;
            gap: 4px;
        }

        .btn-sticky {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0.6rem 1.2rem;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.3s ease;
            line-height: 1.1;
        }

        .btn-sticky .btn-sub {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.7;
            margin-bottom: 2px;
            font-weight: 600;
        }

        .btn-sticky .btn-main {
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
        }

        /* Startup Variant Style */
        .btn-startup {
            color: white;
        }

        .btn-startup:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .btn-startup .btn-sub {
            color: #FF007F;
        }

        /* Pink accent */

        /* Enterprise Variant Style */
        .btn-enterprise {
            background: white;
            color: black;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
        }

        .btn-enterprise:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
        }

        .btn-enterprise .btn-sub {
            color: #666;
        }

        .sticky-divider {
            width: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 0 2px;
        }

        .close-btn {
            background: rgba(10, 10, 10, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: rotate(90deg);
        }

        .center-cta {
            text-align: center;
            margin-top: 2rem;
        }

        /* Responsiveness */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stages-table {
                grid-template-columns: 1fr;
            }

            .stage-col {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }
        }

        /* Mobile & Tablet Styles (Up to 992px) */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .header-container {
                padding: 0 1rem;
            }

            .cta-actions {
                flex-direction: column;
            }

            .main-nav {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                width: 100%;
                padding: 0 1rem;
            }

            .hero-actions .btn {
                width: 100%;
                max-width: 400px;
            }

            /* Sticky CTA - Universal Responsive Layout (Side-by-Side Pill) */
            .sticky-cta {
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                width: 95%;
                max-width: 500px;
                /* Max width for pill */
                padding: 0;
            }

            .sticky-cta.hidden {
                transform: translateX(-50%) translateY(150%);
            }

            .sticky-glass-content {
                border-radius: 100px;
                padding: 4px;
                flex-direction: row;
                /* Horizontal layout always */
                align-items: center;
                gap: 0;
                position: relative;
                box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.8);
                border: 1px solid rgba(255, 255, 255, 0.1);
            }

            /* Removed Label Styles (Deleted from HTML) */

            .sticky-buttons-group {
                width: 100%;
                gap: 0;
                background: rgba(255, 255, 255, 0.05);
                padding: 0;
                border-radius: 100px;
                display: flex;
                flex-direction: row;
                /* Always row */
                overflow: hidden;
            }

            .btn-sticky {
                flex: 1;
                padding: 0.85rem 0.5rem;
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100px;
                margin: 0;
            }

            /* Specific Button Styles to match image */
            .btn-startup {
                background: transparent;
                border-radius: 100px 0 0 100px;
            }

            .btn-enterprise {
                background: white;
                color: black;
                border: 2px solid white;
                /* Make it look like a pill insert */
                border-radius: 100px;
                margin: 2px;
                /* Slight inset look */
            }

            .btn-enterprise:hover {
                transform: none;
                /* Disable scale on mobile for better touch */
            }

            .sticky-divider {
                display: block;
                width: 1px;
                background: rgba(255, 255, 255, 0.1);
                margin: 10px 0;
            }

            .close-btn {
                position: absolute;
                top: 50%;
                right: -45px;
                /* Float right of the pill */
                transform: translateY(-50%);
                width: 36px;
                height: 36px;
                background: rgba(20, 20, 20, 0.9);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 50%;
            }
        }

        /* Mobile Specific Overrides (Up to 768px) */
        @media (max-width: 768px) {
            .sticky-cta {
                width: 88%;
                /* Create space for close btn */
                left: 45%;
                /* Shift left to balance close button */
            }

            .btn-sticky {
                padding: 0.7rem 0.25rem;
            }

            .btn-sticky .btn-main {
                font-size: 0.75rem;
                /* Smaller font for mobile fit */
                white-space: nowrap;
            }

            .btn-enterprise {
                margin: 1px;
            }

            .close-btn {
                right: -40px;
                width: 32px;
                height: 32px;
            }
        }

        /* Tablet specific adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding-top: calc(var(--header-height) + 4rem);
            }
        }

        /* Modal Popup */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            padding: 1rem;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .modal-content {
            background: #080808;
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            width: 100%;
            max-width: 480px;
            border-radius: 24px;
            padding: 1.5rem;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            max-height: 98vh;
            overflow-y: auto;
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE and Edge */
        }

        .modal-content::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari and Opera */
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: rotate(90deg);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .modal-header h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .modal-header p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 0.8rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.2rem;
            color: var(--text-main);
            font-weight: 500;
            font-size: 0.85rem;
        }

        .form-input {
            width: 100%;
            padding: 0.9rem 1rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: white;
            font-family: var(--font-main);
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 4px rgba(255, 0, 127, 0.1);
        }

        .form-submit {
            width: 100%;
            margin-top: 1rem;
            padding: 1rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        /* Resume Upload Field — Modern Design */
        .file-upload-zone {
            position: relative;
            border: 1.5px dashed rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 1.6rem 1.2rem;
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.04) 0%, rgba(157, 0, 255, 0.04) 100%);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-align: center;
            overflow: hidden;
        }

        .file-upload-zone::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1.5px;
            background: linear-gradient(135deg, rgba(255, 0, 127, 0), rgba(157, 0, 255, 0));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            transition: background 0.4s ease;
            pointer-events: none;
        }

        .file-upload-zone:hover,
        .file-upload-zone.drag-over {
            border-color: transparent;
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.08) 0%, rgba(157, 0, 255, 0.08) 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px -8px rgba(255, 0, 127, 0.15);
        }

        .file-upload-zone:hover::before,
        .file-upload-zone.drag-over::before {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.6), rgba(157, 0, 255, 0.6));
        }

        .file-upload-zone:hover .upload-icon-ring {
            border-color: var(--primary);
            background: rgba(255, 0, 127, 0.12);
        }

        .file-upload-zone:hover .upload-icon-ring svg {
            animation: uploadBounce 0.6s ease;
        }

        @keyframes uploadBounce {
            0%, 100% { transform: translateY(0); }
            40% { transform: translateY(-5px); }
            60% { transform: translateY(-2px); }
        }

        .upload-icon-ring {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
            transition: all 0.3s ease;
        }

        .upload-icon-ring svg {
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .upload-text-group {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .upload-text-group .upload-title {
            font-weight: 600;
            color: var(--text-main);
            font-size: 0.9rem;
        }

        .upload-text-group .upload-title span {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .upload-text-group .upload-hint {
            font-size: 0.72rem;
            color: var(--text-muted);
            letter-spacing: 0.02em;
        }

        .file-upload-zone input[type="file"] {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        /* File selected state */
        .file-selected-pill {
            margin-top: 0.6rem;
            display: none;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            background: rgba(255, 0, 127, 0.08);
            border: 1px solid rgba(255, 0, 127, 0.2);
            border-radius: 10px;
            animation: fadeSlideIn 0.3s ease;
        }

        .file-selected-pill.visible {
            display: flex;
        }

        @keyframes fadeSlideIn {
            from { opacity: 0; transform: translateY(6px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .file-selected-pill .file-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: linear-gradient(135deg, var(--primary), #9d00ff);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .file-selected-pill .file-icon svg {
            width: 14px;
            height: 14px;
            color: white;
        }

        .file-selected-pill .file-info {
            flex: 1;
            min-width: 0;
        }

        .file-selected-pill .file-info .file-name {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-main);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .file-selected-pill .file-info .file-size {
            font-size: 0.68rem;
            color: var(--text-muted);
        }

        .file-selected-pill .file-remove {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-muted);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .file-selected-pill .file-remove:hover {
            background: rgba(255, 60, 60, 0.2);
            color: #ff6b6b;
        }

        /* Toast Notification */
        .toast-notification {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-left: 4px solid var(--primary);
            padding: 1.25rem 2rem;
            border-radius: var(--radius-md);
            color: white;
            z-index: 3000;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.8);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
        }

        .toast-notification.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .toast-icon {
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .toast-content h4 {
            margin: 0 0 0.25rem 0;
            font-size: 1.1rem;
        }

        .toast-content p {
            margin: 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .toast-notification {
                bottom: 20px;
                right: 20px;
                left: 20px;
                width: auto;
            }
        }

        /* Full-screen Job Overlay */
        .job-details-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(3, 3, 3, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 2500;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            overflow-y: auto;
        }

        .job-details-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .job-overlay-container {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 3.5rem;
            position: relative;
            background: rgba(10, 10, 12, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 28px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 
                        0 0 40px -10px var(--card-theme-glow, rgba(255, 0, 127, 0.05));
            min-height: calc(100vh - 8rem);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
            background-size: 24px 24px;
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
        }

        .job-overlay-container::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, var(--card-theme-glow, rgba(255, 0, 127, 0.1)) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
            border-radius: 50%;
            filter: blur(40px);
        }

        .job-overlay-container::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(157, 0, 255, 0.08) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
            border-radius: 50%;
            filter: blur(40px);
        }

        /* Specific theme variable mapping on overlay container */
        .job-overlay-container.type-fulltime,
        .job-overlay-container.type-remote,
        .job-overlay-container.type-hybrid,
        .job-overlay-container.type-contract {
            --card-theme-color: #FF007F;
            --card-theme-color-rgb: 255, 0, 127;
            --card-theme-glow: rgba(255, 0, 127, 0.12);
        }

        @media (max-width: 992px) {
            .job-overlay-container {
                margin: 0;
                width: 100%;
                height: auto;
                min-height: 100vh;
                border-radius: 0;
                border: none;
                padding: 2.5rem 1.5rem;
            }
        }

        .job-overlay-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .job-overlay-close:hover {
            background: var(--card-theme-color, var(--primary));
            color: black;
            border-color: transparent;
            transform: rotate(90deg);
            box-shadow: 0 0 15px var(--card-theme-glow, rgba(255, 255, 255, 0.1));
        }

        /* Views configuration for transition */
        .job-view-slide {
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s ease;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            opacity: 1;
            transform: translateX(0);
            visibility: visible;
            position: relative;
            z-index: 1;
        }

        .job-view-slide.slide-out {
            transform: translateX(-50px);
            opacity: 0;
            visibility: hidden;
            position: absolute;
            pointer-events: none;
            height: 0;
            overflow: hidden;
        }

        .job-view-slide.slide-in-hidden {
            transform: translateX(50px);
            opacity: 0;
            visibility: hidden;
            position: absolute;
            pointer-events: none;
            height: 0;
            overflow: hidden;
        }

        /* Two column layout styling */
        .job-details-grid {
            display: grid;
            grid-template-columns: 340px 1fr;
            gap: 4rem;
            align-items: start;
            width: 100%;
        }

        .job-details-sidebar {
            position: sticky;
            top: 2rem;
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            background-image: none;
            z-index: 2;
        }

        .sidebar-sticky-content {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
            align-items: flex-start;
            width: 100%;
        }

        .sidebar-sticky-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.15;
            color: white;
            letter-spacing: -0.02em;
        }

        .job-details-meta-list {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            width: 100%;
        }

        .meta-pill {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 0;
            background: transparent;
            border: none;
            font-size: 0.98rem;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .meta-pill:hover {
            color: white;
            transform: translateY(-2px);
        }

        .meta-pill-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: rgba(var(--card-theme-color-rgb, 255, 0, 127), 0.1);
            color: var(--card-theme-color, var(--primary));
            transition: all 0.3s ease;
        }

        .meta-pill:hover .meta-pill-icon {
            background: var(--card-theme-color, var(--primary));
            color: black;
            box-shadow: 0 0 15px var(--card-theme-glow);
        }

        .job-sidebar-action {
            width: 100%;
            margin-top: 0.5rem;
        }

        .job-mobile-action {
            display: none;
            width: 100%;
            margin-top: 2rem;
        }

        .btn-apply-standard {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            padding: 1.1rem 1.5rem;
            border-radius: 100px;
            font-size: 1.05rem;
            font-weight: 600;
            background: var(--primary-gradient);
            border: none;
            color: white;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 8px 24px rgba(255, 0, 127, 0.35);
            white-space: nowrap;
        }

        .btn-apply-standard::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .btn-apply-standard:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 0, 127, 0.55);
            background: linear-gradient(135deg, #ff007f 0%, #b300ff 100%);
        }

        .btn-apply-standard:hover::after {
            transform: translateX(100%);
        }

        .btn-apply-standard svg {
            transition: transform 0.3s ease;
        }

        .btn-apply-standard:hover svg {
            transform: translateX(4px);
        }

        .job-details-body {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            z-index: 2;
        }

        .job-overlay-section {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .job-overlay-section h3 {
            font-size: 1.3rem;
            color: white;
            font-weight: 700;
            margin-bottom: 1.25rem;
            position: relative;
            padding-left: 1.25rem;
            letter-spacing: -0.01em;
            text-transform: uppercase;
        }

        .job-overlay-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10%;
            height: 80%;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            border-radius: 4px;
            box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
        }

        .job-overlay-section p {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .job-back-btn {
            background: transparent;
            border: none;
            color: var(--card-theme-color, var(--primary));
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            margin-bottom: 1rem;
            padding: 0;
            align-self: flex-start;
        }

        .job-back-btn:hover {
            opacity: 0.8;
            transform: translateX(-3px);
        }

        .drawer-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .drawer-list li {
            position: relative;
            padding: 0.5rem 0 0.5rem 2rem;
            color: var(--text-muted);
            font-size: 1.02rem;
            line-height: 1.65;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .drawer-list li:hover {
            color: white;
            transform: translateX(4px);
        }

        .drawer-list li::before {
            content: "";
            position: absolute;
            left: 0.5rem;
            top: 1.3rem;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--card-theme-color, var(--primary));
            box-shadow: 0 0 8px var(--card-theme-color, var(--primary));
            transition: all 0.3s ease;
        }

        .drawer-list li:hover::before {
            transform: translateY(-50%) scale(1.3);
            background: white;
            box-shadow: 0 0 12px white;
        }

        @media (max-width: 992px) {
            .job-details-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .job-details-sidebar {
                position: relative;
                top: 0;
            }

            .sidebar-sticky-content h2 {
                font-size: 2.2rem;
            }

            .job-sidebar-action {
                display: none;
            }

            .job-mobile-action {
                display: block;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.25rem 2rem;
            /* Increased padding */
            border-radius: 20px;
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: auto;
            min-width: 400px;
        }

        .sticky-cta.hidden {
            transform: translate(-50%, 150%);
            opacity: 0;
            pointer-events: none;
        }

        .sticky-cta-content {
            display: flex;
            flex-direction: column;
            /* Vertical stack */
            align-items: center;
            gap: 1rem;
            width: 100%;
            position: relative;
        }

        .sticky-cta p {
            margin: 0;
            font-weight: 600;
            color: white;
            white-space: nowrap;
            font-size: 1.1rem;
        }

        .sticky-cta-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
            width: 100%;
            justify-content: center;
        }

        /* Close Button absolute positioning */
        .sticky-close-wrapper {
            position: absolute;
            top: -10px;
            right: -15px;
        }

        .btn-icon {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s, background 0.2s;
            width: 24px;
            height: 24px;
        }

        .btn-icon:hover {
            color: white;
            background: rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 992px) {
            .sticky-cta {
                bottom: 1rem;
                width: 95%;
                min-width: auto;
                border-radius: 16px;
                padding: 1rem;
            }

            .sticky-cta-content {
                flex-direction: column;
                width: 100%;
                gap: 0.75rem;
                text-align: center;
            }

            .sticky-cta p {
                white-space: normal;
                font-size: 1rem;
            }

            .sticky-cta-buttons {
                width: 100%;
                gap: 0.75rem;
                display: flex;
                flex-direction: row;
                /* Ensure side-by-side */
            }

            .sticky-cta-buttons .btn {
                flex: 1;
                /* Both buttons take equal width */
                padding: 0.75rem 0.5rem;
                font-size: 0.9rem;
                white-space: normal;
                /* Allow text wrapping */
                text-align: center;
                height: auto;
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1.2;
            }
        }


        
        /* CIRCULAR FRAMEWORK STYLES */
        .framework-section {
            padding: 4rem 0 8rem;
            position: relative;
            overflow: hidden;
            /* Prevent horizontal scroll from scaling/rotation */
        }

        .framework-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .circular-layout {
            position: relative;
            width: 850px;
            height: 850px;
            margin: 0 auto;
            transform-origin: center center;
            transition: transform 0.3s ease;
        }

        /* The Dashed Ring with Auto Play Animation */
        .dashed-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 650px;
            height: 650px;
            border: 2px dashed rgba(138, 142, 142, 0.6);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            animation: rotateDashed 60s linear infinite;
        }

        @keyframes rotateDashed {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 5;
            width: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

        .center-content h2 {
            font-size: 3.5rem;
            line-height: 1.1;
            font-weight: 800;
            margin: 0;
            color: white;
            text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
        }

        .text-gradient-purple {
            background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .orbit-item {
            position: absolute;
            width: 250px;
            z-index: 10;
        }

        /* Positions */
        .pos-1 {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .pos-2 {
            top: 25%;
            right: 20px;
        }

        .pos-3 {
            bottom: 10%;
            right: 70px;
        }

        .pos-4 {
            bottom: 10%;
            left: 70px;
        }

        .pos-5 {
            top: 25%;
            left: 20px;
        }

        .orbit-card {
            background: #000000;
            border: 1px solid rgba(82, 85, 86, 0.39);
            border-radius: 20px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .orbit-card:hover {
            box-shadow: 0 10px 40px -10px rgba(217, 70, 239, 0.2);
            z-index: 20;
        }

        .card-num {
            position: static;
            transform: none;
            font-size: 4rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.1);
            margin-bottom: 0.5rem;
            line-height: 1;
            background: transparent;
            transition: all 0.4s ease;
        }

        .orbit-card:hover .card-num {
            background: linear-gradient(135deg, #3985f1, #d335c3, #ed3389, #740cc6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            transform: scale(1.1);
            opacity: 1;
            text-shadow: 0 5px 15px rgba(217, 70, 239, 0.3);
        }

        .icon-box {
            display: none;
        }

        .orbit-card p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #94a3b8;
            font-weight: 500;
            margin: 0;
        }

        /* --- RESPONSIVE BREAKPOINTS --- */

        /* 1. Laptop: Minor Scale Down to fit 1200px screens */
        @media (max-width: 1200px) {
            .circular-layout {
                transform: scale(0.85);
            }
        }

        /* 2. Tablet: Major Scale Down to fit 768px - 992px range */
        @media (max-width: 992px) {
            .circular-layout {
                /* Keep circular but shrink it significantly */
                width: 850px;
                /* keep base width */
                margin-left: 50%;
                left: auto;
                transform: translateX(-50%) scale(0.65);
                /* Center and shrink */
                margin-top: -120px;
                /* Reduce vertical space occupied by scale */
                margin-bottom: -120px;
            }
        }

        /* 3. Mobile: Stack Vertically (< 700px) */
        @media (max-width: 700px) {
            .circular-layout {
                width: 100%;
                height: auto;
                max-width: 450px;
                display: flex;
                flex-direction: column;
                gap: 3rem;
                transform: none;
                margin: 4rem auto 2rem;
                padding: 0 1.5rem;
                position: relative;
                left: auto;
            }

            .circular-layout::before {
                content: '';
                position: absolute;
                top: 0;
                bottom: 0;
                left: 50%;
                width: 2px;
                border-left: 2px dashed rgba(255, 255, 255, 0.15);
                transform: translateX(-50%);
                z-index: 0;
            }

            .dashed-circle {
                display: none;
            }

            .center-content {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                width: 100%;
                padding: 0;
                margin-bottom: 3rem;
                z-index: 5;
            }

            .center-content h2 {
                font-size: 2.5rem;
                background: #000;
                padding: 1rem;
                display: inline-block;
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 20px;
            }

            /* FORCE RESET Orbit Items to Static Block */
            .orbit-item {
                position: relative;
                width: 100%;
                top: auto !important;
                bottom: auto !important;
                left: auto !important;
                right: auto !important;
                transform: none !important;
                z-index: 2;
                margin: 0;
            }

            .card-num {
                margin-bottom: 1rem;
            }
        }

        /* ===== CAREERS SECTION ===== */
        .careers-section {
            position: relative;
            overflow: hidden;
        }

        .careers-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 0, 127, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .careers-section .container {
            position: relative;
            z-index: 1;
        }

        .careers-section .section-header p {
            color: var(--text-muted);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 1rem auto 0;
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 450px));
            justify-content: center;
            gap: 1.5rem;
        }

        .job-card {
            /* Default variables if not set */
            --card-theme-color: var(--primary);
            --card-theme-glow: rgba(255, 0, 127, 0.15);
            --card-theme-bg: rgba(255, 0, 127, 0.02);
            --card-theme-border: rgba(255, 0, 127, 0.2);

            background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 2.25rem 2rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        /* Specific themes based on classes assigned dynamically — all unified to brand pink */
        .job-card.type-fulltime,
        .job-card.type-remote,
        .job-card.type-hybrid,
        .job-card.type-contract {
            --card-theme-color: #FF007F;
            --card-theme-glow: rgba(255, 0, 127, 0.18);
            --card-theme-bg: rgba(255, 0, 127, 0.02);
            --card-theme-border: rgba(255, 0, 127, 0.3);
        }

        .job-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 0, 127, 0.16), transparent 40%);
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 1;
            opacity: 0;
        }

        .job-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 0, 127, 0.3);
            box-shadow: 0 20px 40px -15px rgba(255, 0, 127, 0.25), 
                        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 0, 127, 0.02) 100%);
        }

        .job-card:hover::after {
            opacity: 1;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .job-card:hover::before {
            opacity: 1;
        }

        .job-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .job-card-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--card-theme-color);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .job-card:hover .job-card-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--card-theme-color);
            color: black;
            border-color: transparent;
            box-shadow: 0 8px 20px -5px var(--card-theme-glow);
        }

        .job-card-icon svg,
        .job-card-icon i {
            width: 22px;
            height: 22px;
        }

        .job-type-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 0.85rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            font-family: var(--font-main);
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .badge-fulltime,
        .badge-remote,
        .badge-hybrid,
        .badge-contract { 
            color: #FF007F; 
            background: rgba(255, 0, 127, 0.06); 
            border-color: rgba(255, 0, 127, 0.15);
        }

        .job-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-main);
            margin: 0.25rem 0 0;
            line-height: 1.3;
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
        }

        .job-card:hover h3 {
            color: white;
        }

        .job-card .job-description {
            color: var(--text-muted);
            font-size: 0.925rem;
            line-height: 1.6;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
            padding-top: 0.25rem;
            position: relative;
            z-index: 2;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: color 0.3s ease;
        }

        .job-card:hover .job-meta-item {
            color: rgba(255, 255, 255, 0.7);
        }

        .job-meta-item i,
        .job-meta-item svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
            opacity: 0.8;
        }

        .job-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: auto;
            position: relative;
            z-index: 2;
        }

        .job-apply-btn {
            font-family: var(--font-main);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.6rem;
            border-radius: 100px;
            background: rgba(255, 255, 255, 0.03);
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid rgba(255, 0, 127, 0.35);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            text-transform: none;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .job-apply-btn::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 0%; height: 100%;
            background: var(--primary-gradient);
            z-index: -1;
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .job-apply-btn:hover::before {
            width: 100%;
        }

        .job-apply-btn:hover {
            color: white;
            box-shadow: 0 8px 24px rgba(255, 0, 127, 0.45);
            border-color: transparent;
            transform: translateY(-2px);
        }

        .job-apply-btn i,
        .job-apply-btn svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .job-apply-btn:hover svg,
        .job-apply-btn:hover i {
            transform: translateX(3px);
            color: white;
        }

        .job-posted-date {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Careers responsive */
        @media (max-width: 768px) {
            .jobs-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .job-card-header {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1.25rem;
            }

            .job-card {
                padding: 1.75rem 1.25rem;
                gap: 1rem;
            }

            .job-card h3 {
                font-size: 1.25rem;
            }

            .job-meta {
                gap: 1rem;
            }

            .job-apply-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.875rem;
            }

            .btn-apply-standard {
                font-size: 0.95rem;
                padding: 0.95rem 1.25rem;
                white-space: normal;
            }
        }

