:root {
            --primary: #f5a623;
            --primary-hover: #df9315;
            --text-dark: #6b7280;
            --text-gray: #6b7280;
            --text-light: #9ca3af;
            --bg-light: #f9fafb;
            --white: #ffffff;
            --border-color: #e5e7eb;
            --footer-bg: #2d3748;
            --container-width: 1200px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-gray);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* Universal Section Gap - 30px padding */
        section {
            padding: 30px 0;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            color: var(--text-dark);
            font-weight: 700;
            line-height: 1.2;
        }

        .text-primary { color: var(--primary); }
        .text-center { text-align: center; }
        
        .section-label {
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        /* Solid Yellow Icon Style */
        .solid-yellow-icon {
            color: var(--primary) !important;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 6px 11px; /* Reduced padding to make the button narrower */
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            gap: 8px;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
        }

        .btn-outline {
            background-color: transparent;
            border-color: var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Header & Navigation */
        header {
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 30px; /* Space between logo and nav */
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        .logo .q-icon {
            color: var(--primary);
            font-size: 1.8rem;
        }

        .logo img {
            height: 45px; /* Adjust height as needed */
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-left: 1cm;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 10px 0;
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link i {
            font-size: 0.75rem;
            transition: transform 0.3s;
        }

        .nav-item.active .nav-link i {
            transform: rotate(180deg);
        }

        /* Dropdowns */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 240px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            border: 1px solid var(--border-color);
            z-index: 100;
        }

        .nav-item.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 10px 20px;
            font-size: 0.9rem;
            color: var(--text-gray);
            transition: var(--transition);
        }

        .dropdown-item:hover {
            background: var(--bg-light);
            color: var(--primary);
            padding-left: 25px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero-content p {
            font-size: 1rem;
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 90%;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-footer-text {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-dark);
        }

        .hero-footer-text span {
            color: var(--primary);
        }

        .hero-graphic {
            position: relative;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .infinity-placeholder {
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 500 300" xmlns="http://www.w3.org/2000/svg"><path d="M150,150 C50,150 50,50 150,50 C250,50 250,250 350,250 C450,250 450,150 350,150 C250,150 250,50 150,50" fill="none" stroke="%23e5e7eb" stroke-width="40" stroke-linecap="round"/><path d="M150,150 C50,150 50,250 150,250 C250,250 250,50 350,50 C450,50 450,150 350,150" fill="none" stroke="%23f5a623" stroke-width="40" stroke-linecap="round"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: relative;
        }
        
        /* --- New Infinity Loop Animation --- */
        .hero-graphic .infinity-container {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 450px; /* Ensure enough space for the animation */
        }

        .hero-graphic .infinity-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-graphic .loop {
            width: 200px; /* Scaled down */
            height: 200px; /* Scaled down */
            border-radius: 50%;
            border: 40px solid var(--bg-light); /* Use site's light bg */
            box-shadow: 
            inset 5px 5px 10px rgba(0,0,0,0.05),
            10px 10px 20px rgba(0,0,0,0.05);
            position: relative;
            box-sizing: border-box;
        }

        .hero-graphic .loop-left { margin-right: -35px; z-index: 2; }
        .hero-graphic .loop-right { margin-left: -35px; z-index: 1; }

        .hero-graphic .yellow-segment {
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 40px solid transparent;
            border-bottom-color: var(--primary);
            border-left-color: var(--primary);
            box-sizing: border-box;
            transform: rotate(-15deg);
            z-index: 3;
            mask-image: linear-gradient(to top right, black 40%, transparent 60%);
            -webkit-mask-image: linear-gradient(to top right, black 40%, transparent 60%);
        }

        .hero-graphic .loop-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-graphic .loop-content svg {
            width: 35px;
            height: 35px;
            margin-bottom: 8px;
            fill: none;
            stroke: var(--text-gray);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .hero-graphic .loop-content .yellow-accent {
            stroke: var(--primary);
            fill: var(--primary);
        }

        .hero-graphic .loop-content span {
            font-size: 11px;
            color: var(--text-gray);
            line-height: 1.2;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
        }

        .hero-graphic .card {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            border: 1px solid var(--border-color);
        }

        .hero-graphic .card svg {
            stroke: var(--text-gray);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .hero-graphic .card-checklist {
            top: 10%;
            left: 0;
            width: 90px;
            height: 100px;
            padding: 12px;
            box-sizing: border-box;
            animation: float 4s ease-in-out infinite;
        }
        
        .hero-graphic .checklist-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        .hero-graphic .checklist-item:last-child { margin-bottom: 0; }
        .hero-graphic .check-icon { width: 12px; height: 12px; fill: var(--primary); margin-right: 6px; }
        .hero-graphic .check-line { width: 35px; height: 4px; background: var(--text-light); border-radius: 2px; }

        @keyframes spin { 100% { transform: rotate(360deg); } }
        
        .hero-graphic .card-gear {
            bottom: 12%;
            left: 5%;
            width: 70px;
            height: 70px;
            animation: float 5s ease-in-out infinite 1s;
        }
        
        .hero-graphic .card-gear svg { 
            width: 35px; 
            height: 35px;
            animation: spin 8s linear infinite;
            transform-origin: center;
        }

        .hero-graphic .card-chart {
            bottom: 8%;
            right: 0;
            width: 100px;
            height: 90px;
            animation: float 4.5s ease-in-out infinite 0.5s;
        }

        .hero-graphic .rocket-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 20;
            offset-path: path("M 325 225 C 425 55, 605 55, 605 225 C 605 395, 425 395, 325 225 C 225 55, 45 55, 45 225 C 45 395, 225 395, 325 225 Z");
            animation: fly-and-rest 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
        }

        .hero-graphic .rocket-svg {
            width: 50px; /* Rocket size */
            height: 50px; /* Rocket size */
            transform: rotate(90deg); 
            offset-rotate: auto;
        }

        @keyframes fly-and-rest {
            0% { offset-distance: 0%; }
            80% { offset-distance: 100%; }
            100% { offset-distance: 100%; }
        }
        /* --- End New Infinity Loop --- */

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            border: 1px solid var(--border-color);
        }

        .fc-1 { top: 10%; left: 10%; }
        .fc-2 { bottom: 10%; right: 10%; }
        
        .floating-icon {
            width: 40px;
            height: 40px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary);
        }

        /* Qaximus Model Section */
        .model-section {
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        .model-flow {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-top: 40px;
            position: relative;
        }

        .model-flow::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--border-color) 10%, var(--border-color) 90%, transparent);
            z-index: 0;
            border-top: 2px dashed var(--border-color);
            background: none;
        }

        .model-step {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 15%;
            gap: 15px;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: var(--transition);
            color: var(--primary);
        }

        .model-step:hover .step-icon {
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(245, 166, 35, 0.1);
        }

        .step-title {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .step-desc {
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        /* Sub-flow text */
        .sub-flow {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 20px 0 30px;
            color: var(--text-dark);
        }
        
        .sub-flow i {
            color: var(--primary);
            font-size: 0.9rem;
            margin: 0 10px;
        }

        /* Skills Carousel Section */
        .skills-section {
            background: var(--bg-light);
            text-align: center;
        }

        .skills-carousel {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            overflow-x: auto;
            padding: 20px 5px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        
        .skills-carousel::-webkit-scrollbar {
            display: none;
        }

        .skill-card {
            min-width: 150px;
            background: var(--white);
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            scroll-snap-align: start;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .skill-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .skill-card i {
            font-size: 2rem;
            color: var(--primary);
        }

        .skill-card span {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Engagement Models */
        .engagement-section {
            text-align: center;
        }

        .engagement-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .engagement-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-top: 4px solid var(--primary);
            border-radius: 8px;
            padding: 30px 20px;
            transition: var(--transition);
        }

        .engagement-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

        .engagement-card i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .engagement-card h3 {
            font-size: 1rem;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .engagement-card p {
            font-size: 0.85rem;
        }

        /* Stats Section - Static Numbers (No Animation), Pure Yellow Icons */
        .stats-container {
            background: #fffdf5;
            border-radius: 16px;
            padding: 40px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 30px auto;
            border: 1px solid #fef0c7;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .stat-item i {
            font-size: 2.5rem;
            color: var(--primary);
        }

        .stat-text {
            text-align: left;
        }

        .stat-text h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-text p {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
        }

        /* Trusted By Section - Full width moving animation */
        .trusted-section {
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            overflow: hidden; 
            width: 100vw;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            padding: 30px 0;
            background: var(--bg-light);
        }

        .trusted-section .section-label {
            margin-bottom: 30px;
        }

        .marquee-container {
            display: flex;
            width: max-content;
            animation: scroll-marquee 30s linear infinite;
        }
        
        .marquee-container:hover {
            animation-play-state: paused;
        }

        .logos-grid {
            display: flex;
            align-items: center;
            gap: 60px;
            padding: 0 30px;
            opacity: 0.7;
        }
        
        .logos-grid i {
            font-size: 2rem;
            color: var(--text-gray);
        }
        
        @keyframes scroll-marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Features Section */
        .features-section {
            padding: 30px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: var(--bg-light);
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .feature-card:hover {
            background: var(--white);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            border-color: var(--primary);
        }

        .feature-card i {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .feature-card h3 {
            font-size: 1rem;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .feature-card p {
            font-size: 0.85rem;
        }

        /* CTA Banner */
        .cta-banner {
            background: rgb(56, 63, 75);
            border-radius: 16px;
            padding: 40px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px auto;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .cta-banner::after {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: repeating-radial-gradient(circle at 100% 50%, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
            pointer-events: none;
        }

        .cta-content {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-icon {
            font-size: 3rem;
            color: var(--primary); 
        }

        .cta-text h2 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .cta-text p {
            color: #cbd5e1;
            font-size: 1rem;
        }
        
        .cta-banner .btn {
            position: relative;
            z-index: 1;
        }

        /* Footer */
        footer {
            background: #363738;
            color: var(--white);
            padding: 40px 0 20px;
            margin-top: 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            background-color: var(--white);
            padding: 8px;
            border-radius: 6px;
            display: inline-block;
            margin-bottom: 20px;
        }
        
       
        /* Ensuring any image inside is restricted in height */
        .footer-brand .logo img {
            height: 50px; /* Reduced dramatically from 150px */
            width: auto;
            display: block;
        }

        .footer-brand p {
            color: #9ca3af;
            font-size: 0.9rem;
            margin: 0 0 20px;
            
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid #4b5563;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .footer-col h4 {
            color: var(--primary);
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col a {
            color: #d1d5db;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #374151;
            font-size: 0.8rem;
            color: #9ca3af;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* ==========================================================================
           RESPONSIVE DESIGN — TABLET (max-width: 1024px)
           ========================================================================== */
        @media (max-width: 1024px) {

            /* --- Hero --- */
            .hero-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content p { margin: 0 auto 30px; }
            .hero-buttons { justify-content: center; }
            .hero-graphic { height: 320px; }

            /* --- Nav --- */
            .nav-links { margin-left: 0; }

            /* --- Model Flow --- */
            .model-flow {
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px;
            }
            .model-flow::before { display: none; }
            .model-step { width: 30%; }

            /* --- Grids --- */
            .engagement-grid { grid-template-columns: repeat(3, 1fr); }
            .features-grid   { grid-template-columns: repeat(2, 1fr); }
            .outcomes-grid   { grid-template-columns: repeat(2, 1fr); }
            .footer-grid     { grid-template-columns: repeat(3, 1fr); }
            .deliverables-grid { grid-template-columns: 1fr; }

            /* --- Why Qaximus / Sub-pages --- */
            .timeline-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 40px;
            }
            .disciplines-grid,
            .cap-grid { grid-template-columns: repeat(2, 1fr); }
            .roi-container { flex-direction: column; }
            .roi-sticky-left { position: static; text-align: center; }

            /* --- About hero --- */
            .hero-contact h1 { font-size: 2.4rem; }
        }

        /* ==========================================================================
           RESPONSIVE DESIGN — MOBILE (max-width: 768px)
           ========================================================================== */
        @media (max-width: 768px) {

            /* ---- Header / Navigation ---- */
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                border-top: 1px solid var(--border-color);
                margin-left: 0;
                z-index: 999;
            }
            .nav-links.active { display: flex; }
            .nav-item { width: 100%; }
            .nav-link { padding: 12px 0; font-size: 1rem; }
            .header-left { flex-grow: 0; }
            .header-cta { display: none; }
            .mobile-menu-btn { display: block; }

            .dropdown-menu {
                position: static;
                box-shadow: none;
                border: none;
                border-left: 2px solid var(--border-color);
                border-radius: 0;
                padding-left: 10px;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                min-width: unset;
            }
            .nav-item.active .dropdown-menu { display: block; }

            /* ---- Hero Section ---- */
            .hero { padding: 30px 0; }
            .hero-inner { gap: 20px; }
            .hero-content h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
            .hero-content p  { font-size: 0.95rem; }
            .hero-graphic    { height: 260px; }
            .hero-buttons    { flex-direction: column; gap: 10px; }
            .hero-buttons .btn { width: 100%; justify-content: center; }
            .hero-footer-text { font-size: 0.8rem; }

            /* Hide heavy hero animation cards on small screens */
            .hero-graphic .card-checklist,
            .hero-graphic .card-gear,
            .hero-graphic .card-chart { display: none; }

            /* ---- Section labels / headings ---- */
            .section-label { font-size: 0.7rem; }
            h2 { font-size: 1.6rem !important; }
            h3 { font-size: 1.1rem; }

            /* ---- Qaximus Model ---- */
            .sub-flow { font-size: 0.9rem; }
            .sub-flow i { margin: 0 5px; }
            .model-flow { gap: 20px; }
            .model-step { width: 42%; }
            .step-icon  { width: 60px; height: 60px; font-size: 1.4rem; }
            .step-title { font-size: 0.75rem; }
            .step-desc  { font-size: 0.7rem; }

            /* ---- Skills Carousel ---- */
            .skill-card { min-width: 120px; padding: 15px; }
            .skill-card i { font-size: 1.6rem; }
            .skill-card span { font-size: 0.8rem; }

            /* ---- Engagement Grid ---- */
            .engagement-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            .engagement-card { padding: 20px 15px; }
            .engagement-card i { font-size: 2rem; margin-bottom: 12px; }
            .engagement-card h3 { font-size: 0.85rem; }
            .engagement-card p  { font-size: 0.8rem; }

            /* ---- Stats ---- */
            .stats-container {
                flex-direction: column;
                gap: 20px;
                padding: 25px 15px;
                text-align: center;
            }
            .stat-item  { flex-direction: column; gap: 8px; }
            .stat-text  { text-align: center; }
            .stat-text h2 { font-size: 1.5rem !important; }

            /* ---- Features Grid ---- */
            .features-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            .feature-card  { padding: 20px 15px; }
            .feature-card i { font-size: 1.6rem; margin-bottom: 12px; }
            .feature-card h3 { font-size: 0.85rem; }
            .feature-card p  { font-size: 0.8rem; }

            /* ---- CTA Banner ---- */
            .cta-banner {
                flex-direction: column;
                text-align: center;
                gap: 20px;
                padding: 25px 20px;
                border-radius: 12px;
            }
            .cta-content { flex-direction: column; }
            .cta-text h2 { font-size: 1.2rem !important; }
            .cta-text p  { font-size: 0.9rem; }
            .cta-icon    { font-size: 2.2rem; }

            /* ---- Trusted By ---- */
            .logos-grid { gap: 35px; }
            .logos-grid i { font-size: 1.6rem; }

            /* ---- Footer ---- */
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }
            .footer-brand { grid-column: 1 / -1; }
            .footer-brand p { font-size: 0.85rem; }
            .footer-col h4 { font-size: 0.8rem; }
            .footer-col a  { font-size: 0.8rem; }
            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            .footer-bottom-links { justify-content: center; }

            /* ---- Why Qaximus — Hero overrides (inline styles) ---- */
            .hero-content h1[style] { font-size: 2rem !important; }
            .hero-graphic[style] { height: 280px !important; }

            /* ---- Why Qaximus — Timeline ---- */
            .timeline-container {
                flex-direction: column;
                gap: 40px;
                padding: 20px 0;
            }
            .timeline-node { width: 100%; }
            .timeline-node:nth-child(even),
            .timeline-node:nth-child(odd) { transform: translateY(0); }
            .timeline-path-bg { display: none; }
            .gear-icon-wrapper { width: 70px; height: 70px; }
            .gear-icon-wrapper i { font-size: 1.6rem; }
            .timeline-content h3 { font-size: 1rem; }

            /* ---- Why Qaximus — Disciplines ---- */
            .disciplines-section { padding: 50px 0 !important; }
            .disciplines-grid {
                grid-template-columns: 1fr 1fr;
                margin-top: 60px;
                gap: 50px 20px;
            }
            .discipline-card { min-height: auto; padding: 50px 15px 25px; }

            /* ---- Why Qaximus — ROI ---- */
            .roi-container { flex-direction: column; gap: 30px; }
            .roi-sticky-left { position: static; text-align: center; }
            .roi-sticky-left h2 { font-size: 1.8rem !important; }
            .roi-card { flex-direction: column; gap: 15px; }
            .roi-icon-circle { width: 50px; height: 50px; font-size: 1.2rem; }
            .roi-card-text h3 { font-size: 1rem; }

            /* ---- Cap Grid ---- */
            .cap-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            .cap-card  { height: 180px; }
            .cap-front i { font-size: 2rem; }
            .cap-front h3 { font-size: 0.9rem; }

            /* ---- FAQ ---- */
            .faq-question { font-size: 0.9rem; padding: 15px 18px; }
            .faq-answer   { font-size: 0.88rem; }

            /* ---- Outcomes / Case Studies ---- */
            .outcomes-section { padding: 50px 0; }
            .outcomes-grid { grid-template-columns: 1fr; gap: 20px; }
            .outcome-card  { padding: 25px 20px; }
            .outcome-card p { text-align: left; }
            .outcome-card h3 { font-size: 1.1rem; }

            /* ---- Deliverables ---- */
            .deliverables-grid { grid-template-columns: 1fr; gap: 20px; }
            .deliverable-item  { flex-direction: column; gap: 15px; }
            .deliverable-icon  { width: 50px; height: 50px; font-size: 1.4rem; border-radius: 10px; }
            .deliverable-content h3 { font-size: 1rem; }

            /* ---- Contact Pages ---- */
            .hero-contact { padding: 50px 0 35px; }
            .hero-contact h1 { font-size: 2rem; }
            .hero-contact p  { font-size: 0.95rem; }
            .contact-section { padding: 40px 0; }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .contact-info-wrapper { order: -1; }
            .contact-form-wrapper { padding: 30px 20px; }
            .contact-form-wrapper h2 { font-size: 1.4rem; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
            .info-card { padding: 20px; }
            .info-icon { width: 42px; height: 42px; font-size: 1.1rem; }
            .info-content h3 { font-size: 1rem; }
            .info-content p  { font-size: 0.88rem; }
            .submit-btn { font-size: 0.95rem; padding: 14px; }

            /* ---- About page hero ---- */
            .hero[style*="padding: 80px"] .container h1 { font-size: 2rem !important; }

            /* ---- Insights / Article cards ---- */
            .roi-scroll-right { gap: 15px; }
        }

        /* ==========================================================================
           RESPONSIVE DESIGN — SMALL MOBILE (max-width: 480px)
           ========================================================================== */
        @media (max-width: 480px) {

            /* ---- Container padding ---- */
            .container { padding: 0 15px; }

            /* ---- Hero ---- */
            .hero-content h1 { font-size: 1.6rem; }
            .hero-content h1[style] { font-size: 1.6rem !important; }
            .hero-graphic     { height: 200px; }
            .hero-graphic[style] { height: 200px !important; }

            /* ---- Grids → single column ---- */
            .engagement-grid,
            .features-grid,
            .cap-grid,
            .footer-grid,
            .deliverables-grid { grid-template-columns: 1fr; }

            /* ---- Model steps ---- */
            .model-step { width: 45%; }

            /* ---- Disciplines ---- */
            .disciplines-grid { grid-template-columns: 1fr; }

            /* ---- Stats ---- */
            .stats-container { padding: 20px 12px; }

            /* ---- CTA Banner ---- */
            .cta-banner { padding: 20px 15px; }
            .cta-text h2 { font-size: 1.1rem !important; }

            /* ---- Footer ---- */
            .footer-grid { grid-template-columns: 1fr; }
            .footer-brand { grid-column: auto; }
            footer { padding: 30px 0 15px; }

            /* ---- Contact ---- */
            .contact-form-wrapper { padding: 20px 15px; }
            .form-control { padding: 12px 14px; font-size: 0.9rem; }

            /* ---- Cap cards ---- */
            .cap-card { height: 160px; }

            /* ---- Outcome cards ---- */
            .outcome-card { padding: 20px 15px; }

            /* ---- ROI cards ---- */
            .roi-card { padding: 20px; }
            .roi-sticky-left h2[style] { font-size: 1.5rem !important; }

            /* ---- FAQ ---- */
            .faq-question { padding: 14px 15px; font-size: 0.85rem; }
        }

/* ==========================================================================
   WHY QAXIMUS PAGE - SPECIFIC STYLES
   ========================================================================== */

/* Floating Animation for SVG */
@keyframes float-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes float-fast { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }
@keyframes draw-line { 0% { stroke-dashoffset: 1000; } 100% { stroke-dashoffset: 0; } }

.anim-node-1 { animation: float-slow 4s ease-in-out infinite; }
.anim-node-2 { animation: float-fast 5s ease-in-out infinite 1s; }
.anim-node-3 { animation: float-slow 4.5s ease-in-out infinite 0.5s; }
.dashed-path { stroke-dasharray: 10; animation: draw-line 20s linear infinite; }

/* EVOLUTION SECTION (Curved Gear Timeline Layout) */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.timeline-path-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 200px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.timeline-node {
    position: relative;
    z-index: 1;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-node:nth-child(even) { transform: translateY(-60px); }
.timeline-node:nth-child(odd) { transform: translateY(60px); }

.gear-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(245, 166, 35, 0.3);
    clip-path: polygon(50% 0%, 61% 11%, 76% 9%, 81% 23%, 96% 29%, 91% 43%, 100% 55%, 88% 66%, 89% 81%, 74% 86%, 66% 100%, 50% 93%, 34% 100%, 26% 86%, 11% 81%, 12% 66%, 0% 55%, 9% 43%, 4% 29%, 19% 23%, 24% 9%, 39% 11%);
    transition: var(--transition);
}

.timeline-node:hover .gear-icon-wrapper { transform: scale(1.1) rotate(15deg); }
.gear-icon-wrapper i { color: var(--white); font-size: 2rem; }
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-dark); }
.timeline-content p { font-size: 0.85rem; color: var(--text-gray); }

/* ==========================================================================
           3. DISCIPLINES SECTION (The Fixed Hover/Paperclip Interaction)
           ========================================================================== */
        .disciplines-section { background: var(--bg-light); padding: 100px 0; }
        .disciplines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
            margin-top: 70px;
        }

        .discipline-card {
            background: var(--white);
            border-radius: 20px;
            position: relative;
            padding: 60px 20px 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 240px;
            cursor: pointer;
        }

        /* The drawn paperclip SVG sticking out of the top */
        .paperclip-top {
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 70px;
            z-index: 10;
        }

        /* The inner "sticky note" containing the icon */
        .discipline-icon-wrapper {
            width: 80px;
            height: 80px;
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 25px;
            transform: rotate(-3deg);
            box-shadow: 2px 4px 10px rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .discipline-card h3 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 0;
            transition: var(--transition);
        }

        /* Hidden paragraph that expands on hover */
        .discipline-card p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
            margin-top: 15px;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            line-height: 1.6;
        }

        /* HOVER EFFECTS: Replicating the exact mechanics requested */
        .discipline-card:hover {
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(245, 166, 35, 0.25);
            transform: translateY(-10px);
        }
        
        .discipline-card:hover .discipline-icon-wrapper {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.3);
            color: var(--white);
            transform: rotate(0deg) scale(1.05);
            box-shadow: none;
        }

        .discipline-card:hover h3 { color: var(--white); }
        
        .discipline-card:hover p {
            opacity: 1;
            max-height: 150px; 
            margin-top: 15px;
        }

/* ROI SECTION (Sticky Left, Scroll Right Layout) */
.roi-container { display: flex; gap: 60px; align-items: flex-start; }
.roi-sticky-left { flex: 1; position: sticky; top: 100px; }
.roi-scroll-right { flex: 1.2; display: flex; flex-direction: column; gap: 25px; }
.roi-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.roi-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.08); transform: translateX(-5px); }
.roi-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.roi-card-text h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* ==========================================================================
   OUTCOMES / CASE STUDY CARDS
   ========================================================================== */
.outcomes-section {
    padding: 100px 0;
    background: var(--white);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.outcome-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.outcome-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transform: translateY(-5px);
    border-color: transparent;
}

.outcome-card:hover::before {
    transform: scaleX(1);
}

.outcome-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(245, 166, 35, 0.1);
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.outcome-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.outcome-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: justify;
}

/* FAQ SECTION */
.faq-container { max-width: 800px; margin: 50px auto 0; }
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
}
.faq-question:hover { color: var(--primary); }
.faq-icon { color: var(--primary); font-size: 1.2rem; transition: transform 0.3s ease; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
    padding: 0 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item.active { border-color: var(--primary); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 300px; padding: 20px 25px; border-top: 1px solid var(--border-color); }

/* CORE CAPABILITIES (Grid Hover/Flip Layout) */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.cap-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 220px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.cap-front, .cap-back {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition);
}

.cap-front { opacity: 1; z-index: 2; }
.cap-front i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.cap-front h3 { font-size: 1.1rem; color: var(--text-gray); font-weight: 600; }

.cap-back {
    background: var(--bg-light);
    opacity: 0;
    z-index: 1;
    transform: translateY(20px);
}
.cap-back p { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; line-height: 1.5; }

.cap-card:hover { border-color: var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.cap-card:hover .cap-front { opacity: 0; transform: translateY(-20px); }
.cap-card:hover .cap-back { opacity: 1; transform: translateY(0); z-index: 3; }

/* Touch devices: tap to reveal back */
@media (hover: none) {
    .cap-card.touched .cap-front { opacity: 0; transform: translateY(-20px); }
    .cap-card.touched .cap-back { opacity: 1; transform: translateY(0); z-index: 3; }
    .cap-card.touched { border-color: var(--primary); }
}

/* ASSESSMENT & POC PAGE - DELIVERABLES SECTION */
.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.deliverable-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.deliverable-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.deliverable-content h3 { font-size: 1.2rem; margin-bottom: 10px; }












 /* Hero Section */
        .hero-contact {
            background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
            padding: 80px 0 60px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }

        .hero-contact h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            letter-spacing: -1px;
            color: var(--text-dark);
        }

        .hero-contact p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Contact Layout */
        .contact-section {
            padding: 80px 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Form Styling */
        .contact-form-wrapper {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 50px 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .contact-form-wrapper h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        
        .contact-form-wrapper p {
            margin-bottom: 30px;
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--text-dark);
            background: var(--bg-light);
            transition: var(--transition);
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        select.form-control {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
            padding-right: 40px;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            font-size: 1.05rem;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        /* Contact Info Styling */
        .contact-info-wrapper {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 30px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            transition: var(--transition);
        }

        .info-card:hover {
            background: var(--white);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transform: translateY(-3px);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(245, 166, 35, 0.15);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .info-card:hover .info-icon {
            background: var(--primary);
            color: var(--white);
        }

        .info-content h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .info-content p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
        }
        
        .info-content .highlight {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1.05rem;
            display: block;
            margin-bottom: 4px;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .contact-info-wrapper {
                order: -1;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
        }


















        /* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS (Fixes for Overlaps & Breakage)
   ========================================================================== */

/* TABLET SCREENS (max-width: 991px) */
@media (max-width: 991px) {
    /* Convert 4-column and 3-column grids to 2 columns */
    .disciplines-grid,
    .cap-grid,
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Adjust ROI section to stack vertically instead of side-by-side */
    .roi-container {
        flex-direction: column;
        gap: 40px;
    }
    
    /* Remove sticky behavior on smaller screens so it flows naturally */
    .roi-sticky-left {
        position: relative;
        top: 0;
        width: 100%;
    }
}

/* MOBILE SCREENS (max-width: 767px) */
@media (max-width: 767px) {
    /* Stack ALL grids one-by-one (100% width) */
    .disciplines-grid,
    .cap-grid,
    .outcomes-grid,
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Evolution Timeline Fix: Remove horizontal layout and staggered heights */
    .timeline-container {
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }

    .timeline-node {
        width: 100%;
    }

    /* Disable the up/down transformations on mobile so they align perfectly straight */
    .timeline-node:nth-child(even),
    .timeline-node:nth-child(odd) {
        transform: translateY(0);
    }

    /* Hide the horizontal curved SVG line as it won't make sense vertically */
    .timeline-path-bg {
        display: none;
    }

    /* Ensure inner padding handles smaller viewports smoothly */
    .disciplines-section,
    .outcomes-section {
        padding: 60px 20px;
    }

    .discipline-card {
        min-height: auto;
        padding-bottom: 40px;
    }

    /* Adjust cards with flex layouts to center vertically */
    .roi-card, 
    .deliverable-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .deliverable-icon,
    .roi-icon-circle {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}