/* ========================================
   CONSTRUCTOS PAGE STYLES (ORIGINAL)
   ======================================== */

        :root {
            --text-dark: #1a1a1a;
            --text-gray: #6b6b6b;
			--text-white: #ffffff;
            --text-light-gray: #8a8a8a;
            --button-gray: #4a5c67;
            --line-light-gray: #dfdddd;
            --border-gray: #e0e0e0;
            --bg-light: #f8f8f6;
            --bg-white: #f8fbf6;
            --bg-cream: #f5f5f2;
            --navy: #1c2b39;
            --icon-gray: #5a6a7a;
            
            /* Animation variables */
            --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* ============================================
           LOADING SCREEN
        ============================================ */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
        }
        
        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        .loader-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            animation: loaderPulse 2s var(--ease-smooth) infinite;
        }
        
        .loader-logo-box {
            font-family: 'Montserrat', sans-serif;
            border: 2px solid var(--text-dark);
            color: var(--text-dark);
            padding: 12px 10px;
            font-weight: 700;
            font-size: 1.75rem;
            letter-spacing: 0.05em;
            line-height: 1;
            position: relative;
            overflow: hidden;
        }
        
        .loader-logo-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(26, 26, 26, 0.08),
                transparent
            );
            animation: loaderShimmer 1.5s infinite;
        }
        
        .loader-logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            line-height: 1.3;
            font-weight: 500;
        }
        
        .loader-progress {
            margin-top: 40px;
            width: 120px;
            height: 2px;
            background: var(--border-gray);
            border-radius: 2px;
            overflow: hidden;
        }
        
        .loader-progress-bar {
            height: 100%;
            width: 0%;
            background: var(--text-dark);
            border-radius: 2px;
            transition: width 0.3s var(--ease-out-expo);
        }
        
        .loader-text {
            margin-top: 16px;
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            color: var(--text-light-gray);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        
        @keyframes loaderPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.02);
                opacity: 0.85;
            }
        }
        
        @keyframes loaderShimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        /* Hide content while loading */
        body.is-loading {
            overflow: hidden;
        }
        
        body.is-loading > *:not(.loading-screen) {
            opacity: 0;
        }
        
        body:not(.is-loading) > *:not(.loading-screen) {
            opacity: 1;
            transition: opacity 0.4s var(--ease-out-expo) 0.2s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Ensure all sections fit within viewport */
        section, header, footer, div {
            max-width: 100%;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-white);
            color: var(--text-dark);
            line-height: 1.6;
            font-size: 16px;
            width: 100%;
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* ============================================
           HEADER - Exact match to PDF
        ============================================ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg-white);
        }

        .header-inner {
            max-width: 100%;
            margin: 0 auto;
            padding: 12px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-box {
            font-family: 'Montserrat', sans-serif;
            border: 1.5px solid var(--text-dark);
            color: var(--text-dark);
            padding: 7px 5px;
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: 0.05em;
            line-height: 1;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.6rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            line-height: 1.3;
            font-weight: 500;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 0;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav a {
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            color: var(--text-light-gray);
            font-size: .8rem;
            font-weight: 300;
            padding: 8px 20px;
            transition: color 0.2s;
        }

        nav a:hover {
            color: var(--text-dark);
        }

        nav a.active {
            font-weight: 600;
            color: var(--text-gray);
        }

        .nav-dots {
            display: flex;
            flex-wrap: wrap;
            width: 18px;
            gap: 4px;
            margin: 6px 0 7px 24px;
        }

        .nav-dots span {
            width: 2px;
            height: 2px;
            background: var(--line-light-gray);
            border-radius: 50%;
        }
        
        .nav-platform {
        	padding-right: 40px;
        	border-right: 1px solid var(--line-light-gray);
        }
        
        .nav-career {
        	padding-left: 8px;
        }

        .btn-login {
            font-family: 'Inter', sans-serif;
            border: none;
            background: var(--button-gray);
            color: var(--text-white);
            padding: 2px 24px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 300;
            text-decoration: none;
            margin-left: 8px;
            transition: all 0.2s;
        }

        .btn-login:hover {
            background: var(--text-dark);
            color: #fff;
        }

        /* ============================================
           HERO SECTION
        ============================================ */
        .hero {
            margin-top: 64px;
            padding: 12px;
        }

        .hero-container {
            position: relative;
            border-radius: 16px 16px 0 0;
            overflow: hidden;
            height: 85vh;
            min-height: 600px;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 40px;
        }

        .hero-title-wrapper {
            position: relative;
            width: 100%;
        }

        .hero-title {
            width: auto;
            margin-bottom: 40px;
        }

        .hero-title span {
            font-weight: 600;
        }

        .hero-nav {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 6px;
            display: none;
        }

        .hero-nav-btn {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.95);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-gray);
        }

        .hero-nav-right {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* ============================================
           PLATFORM INTRO
        ============================================ */
        .platform-intro {
            padding: 60px 40px 40px;
			width: 100%;
			max-width: 100%;
            margin: 0 auto;
        }

        .platform-intro h2 {
            font-family: 'Inter', sans-serif;
            font-size: 3rem;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .platform-intro p {
            font-size: 16px;
            color: var(--text-light-gray);
            margin-top: 12px;
        }

        /* ============================================
           PILLARS DIAGRAM - Using actual image
        ============================================ */
        .pillars-section {
            padding: 20px 20px 60px;
            background: var(--bg-white);
            overflow: hidden;
        }

        .pillars-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .pillars-image {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .pillars-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: grid;
            grid-template-columns: 30% 40% 30%;
            grid-template-rows: repeat(4, 1fr);
            gap: 0;
            padding: 2% 3%;
        }
        
        .grid-item {
  			padding: 2% 3%;
  			text-align: left;
  			display: flex;
  			flex-direction: column;
		  	justify-content: center;
		  	align-items: flex-start;
		  	font-size: clamp(0.85rem, 1.4vw, 1.5rem);
			line-height: 1.15;
			font-weight: 500;
		}
		
		.grid-item.text-right {
			align-items: flex-end;
			text-align: right;
		}
		
		.grid-item.text-right span {
			text-align: right;
		}
		
		.grid-item span {
			display: block;
			font-size: clamp(0.55rem, 0.85vw, 0.8rem);
			font-weight: 400;
			width: 100%;
			max-width: 280px;
			color: var(--text-light-gray);
			margin-top: 6px;
			line-height: 1.35;
		}
		
		.grid-item span[style*="color: black"] {
			margin-top: 10px;
			font-weight: 500;
		}

        .pillars-diagram-image {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            display: block;
        }
        
        
        .text-right {
        	text-align: right;
        }

        /* ============================================
           PROCESS SECTION
        ============================================ */
        .process-section {
            padding: 40px 40px 0;
            width: 100%;
			max-width: 100%;
            margin: 0 auto;
        }

        .process-header {
            margin-bottom: 50px;
        }

        .process-header h2 {
            font-family: 'Inter', sans-serif;
            font-size: 3rem;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .process-header p {
            font-size: 15px;
            color: var(--text-light-gray);
            margin-top: 12px;
            line-height: 1.65;
        }

        .process-list {
            display: flex;
            flex-direction: column;
        }

        .process-item {
            display: grid;
            grid-template-columns: 50px 1fr;
            gap: 16px;
            padding-bottom: 40px;
            position: relative;
        }

        .process-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 24px;
            top: 36px;
            bottom: 0;
            width: 1px;
            background: var(--border-gray);
        }

        .process-marker {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .process-dot {
            width: 10px;
            height: 10px;
            background: var(--text-dark);
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .process-num {
            font-size: 14px;
            color: var(--text-light-gray);
            font-weight: 400;
        }

        .process-content h3 {
            font-family: 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .process-content > p {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .process-features {
            list-style: none;
            margin-bottom: 16px;
        }

        .process-features li {
            font-size: 14px;
            color: var(--text-gray);
            padding-left: 16px;
            position: relative;
            margin-bottom: 6px;
            line-height: 1.55;
        }

        .process-features li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--text-light-gray);
        }

        .process-tagline {
            display: flex;
            align-items: start;
            gap: 12px;
            font-size: 1.75rem;
			font-weight: 500;
            color: var(--text-dark);
            padding-top: 16px;
        }

        .process-tagline svg {
            width: 24px;
            height: 12px;
            stroke: var(--text-light-gray);
            stroke-width: 1.5;
            fill: none;
        }

        /* ============================================
           BLUEPRINTS IMAGE
        ============================================ */
        .blueprints-section {
            width: 100%;
        }

        .blueprints-image {
            width: 100%;
            display: block;
        }

		.arrow-right {
			max-width: 180px;
			margin-top: 5px;
		}
        /* ============================================
           PARTNERS SECTION
        ============================================ */
        .partners-section {
            padding: 60px 40px 70px;
            background: var(--bg-white);
        }

        .partners-container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }

        .partners-header {
            margin-bottom: 50px;
        }

        .partners-header h2 {
            font-family: 'Inter', sans-serif;
            font-size: 3rem;
            font-weight: 500;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }

        .partner-card {
            text-align: center;
            padding: 30px 24px;
            position: relative;
        }

        .partner-card:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: var(--border-gray);
        }

        .partner-icon {
            width: 140px;
            height: 140px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-icon img {
            width: 100%;
            max-width: 160px;
        }

        .partner-card h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .partner-card p {
            font-size: 1.25rem;
            color: var(--text-gray);
            line-height: 1.2;
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section {
            padding: 70px 40px 120px;
        }

        .cta-container {
            width: 100%;
	    max-width: 100%;
            margin: 0 auto;
            text-align: left;
        }

        .cta-container h2 {
            font-family: 'Inter', sans-serif;
            font-size: 3rem;
			font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .cta-container p {
            font-size: 2rem;
            color: var(--text-dark);
            line-height: 1.2;
            width: 80%;
			margin: 0 auto 20px;
        }

        .btn-cta {
            float: right;
            background: var(--bg-white);
            color: var(--text-dark);
            padding: 14px 24px 14px 32px;
            border: 1px solid var(--border-gray);
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
            font-size: .8rem;
            font-weight: 300;
            text-decoration: none;
            letter-spacing: 0.2em;
            transition: background 0.2s;
        }

        .btn-cta:hover {
            background: var(--button-gray);
            color: var(--text-white);
        }
        
        .arrow-right-small {
			max-width: 60px;
			margin-top: 5px;
			margin-left: 10px;
			vertical-align: text-bottom;
		}
		
		/* ========== FOOTER ========== */
        .footer {
            background: var(--bg-cream);
            color: var(--color-white);
            padding: 60px 24px 24px;
        }

        .footer-container {
           	width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--spacing-lg);
            padding-bottom: var(--spacing-lg);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-tagline {
            font-size: 0.85rem;
            opacity: 0.7;
            line-height: 1.7;
            max-width: 300px;
            margin-top: 10px;
        }

        .footer-col h4 {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 0.5;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--color-white);
            text-decoration: none;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
        }

        .footer-copyright {
            font-size: 0.8rem;
            opacity: 0.5;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            color: var(--color-white);
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .footer-social a:hover {
            opacity: 1;
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
        }

        /* ============================================
           SCROLL ANIMATIONS - Enhanced & Dramatic
        ============================================ */
        
        /* Base scroll animation with blur */
        [data-scroll],
        [data-scroll-fade],
        [data-scroll-left],
        [data-scroll-right],
        [data-scroll-scale],
        [data-scroll-hero],
        [data-scroll-process],
        [data-scroll-partner],
        [data-scroll-grid],
        .hero-container,
        .process-item,
        .partner-card,
        .grid-item {
            will-change: transform, opacity, filter;
        }
        
        /* Remove will-change after animation completes for performance */
        .visible {
            will-change: auto;
        }
        
        [data-scroll] {
            opacity: 0;
            transform: translateY(50px);
            filter: blur(8px);
            transition: opacity 1s var(--ease-out-expo), 
                        transform 1s var(--ease-out-expo),
                        filter 0.8s var(--ease-out-expo);
        }

        [data-scroll].visible {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        /* Fade only */
        [data-scroll-fade] {
            opacity: 0;
            transition: opacity 1.2s var(--ease-smooth);
        }

        [data-scroll-fade].visible {
            opacity: 1;
        }

        /* Slide from left with subtle rotation */
        [data-scroll-left] {
            opacity: 0;
            transform: translateX(-80px) rotate(-2deg);
            filter: blur(4px);
            transition: opacity 0.9s var(--ease-out-expo), 
                        transform 0.9s var(--ease-out-expo),
                        filter 0.7s var(--ease-out-expo);
        }

        [data-scroll-left].visible {
            opacity: 1;
            transform: translateX(0) rotate(0);
            filter: blur(0);
        }

        /* Slide from right with subtle rotation */
        [data-scroll-right] {
            opacity: 0;
            transform: translateX(80px) rotate(2deg);
            filter: blur(4px);
            transition: opacity 0.9s var(--ease-out-expo), 
                        transform 0.9s var(--ease-out-expo),
                        filter 0.7s var(--ease-out-expo);
        }

        [data-scroll-right].visible {
            opacity: 1;
            transform: translateX(0) rotate(0);
            filter: blur(0);
        }

        /* Scale with bounce effect */
        [data-scroll-scale] {
            opacity: 0;
            transform: scale(0.8);
            filter: blur(6px);
            transition: opacity 0.8s var(--ease-out-expo), 
                        transform 0.8s var(--ease-out-back),
                        filter 0.6s var(--ease-out-expo);
        }

        [data-scroll-scale].visible {
            opacity: 1;
            transform: scale(1);
            filter: blur(0);
        }

        /* Staggered delays for children */
        [data-scroll-stagger] > *:nth-child(1) { transition-delay: 0s; }
        [data-scroll-stagger] > *:nth-child(2) { transition-delay: 0.1s; }
        [data-scroll-stagger] > *:nth-child(3) { transition-delay: 0.2s; }
        [data-scroll-stagger] > *:nth-child(4) { transition-delay: 0.3s; }
        [data-scroll-stagger] > *:nth-child(5) { transition-delay: 0.4s; }

        /* Hero specific animations - dramatic entrance */
        .hero-container {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            filter: blur(12px);
            transition: opacity 1.4s var(--ease-out-expo), 
                        transform 1.4s var(--ease-out-expo),
                        filter 1s var(--ease-out-expo);
        }

        .hero-container.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .hero-title {
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            filter: blur(10px);
            transition: opacity 1.4s var(--ease-out-expo) 0.4s, 
                        transform 1.4s var(--ease-out-expo) 0.4s,
                        filter 1s var(--ease-out-expo) 0.4s;
        }

        .hero-container.visible .hero-title {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .hero-nav-btn {
            opacity: 0;
            transform: scale(0.5);
            transition: opacity 0.6s var(--ease-out-expo), 
                        transform 0.6s var(--ease-out-back),
                        background 0.2s;
        }

        .hero-container.visible .hero-nav-btn {
            opacity: 1;
            transform: scale(1);
        }

        .hero-container.visible .hero-nav-btn:first-child {
            transition-delay: 0.6s;
        }

        .hero-container.visible .hero-nav-btn:last-child {
            transition-delay: 0.7s;
        }

        /* Platform intro heading */
        .platform-intro h2 {
            opacity: 0;
            transform: translateY(60px);
            filter: blur(10px);
            transition: opacity 1.2s var(--ease-out-expo), 
                        transform 1.2s var(--ease-out-expo),
                        filter 0.9s var(--ease-out-expo);
        }

        .platform-intro h2.visible {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        /* Process item animations with cascading child elements */
        .process-item {
            opacity: 0;
            transform: translateX(-30px) translateY(40px);
            transition: opacity 0.8s var(--ease-out-expo), 
                        transform 0.8s var(--ease-out-expo);
        }

        .process-item.visible {
            opacity: 1;
            transform: translateX(0) translateY(0);
        }

        .process-dot {
            transform: scale(0);
            transition: transform 0.5s var(--ease-out-back);
        }

        .process-item.visible .process-dot {
            transform: scale(1);
        }

        .process-num {
            opacity: 0;
            transform: translateX(-10px);
            transition: opacity 0.5s var(--ease-out-expo) 0.15s, 
                        transform 0.5s var(--ease-out-expo) 0.15s;
        }

        .process-item.visible .process-num {
            opacity: 1;
            transform: translateX(0);
        }

        .process-content h3 {
            opacity: 0;
            transform: translateY(25px);
            filter: blur(4px);
            transition: opacity 0.7s var(--ease-out-expo) 0.1s, 
                        transform 0.7s var(--ease-out-expo) 0.1s,
                        filter 0.5s var(--ease-out-expo) 0.1s;
        }

        .process-item.visible .process-content h3 {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        .process-content > p {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s var(--ease-out-expo) 0.2s, 
                        transform 0.6s var(--ease-out-expo) 0.2s;
        }

        .process-item.visible .process-content > p {
            opacity: 1;
            transform: translateY(0);
        }

        .process-features {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.7s var(--ease-out-expo) 0.3s, 
                        transform 0.7s var(--ease-out-expo) 0.3s;
        }

        .process-item.visible .process-features {
            opacity: 1;
            transform: translateY(0);
        }

        .process-features li {
            opacity: 0;
            transform: translateX(-15px);
            transition: opacity 0.4s var(--ease-out-expo), 
                        transform 0.4s var(--ease-out-expo);
        }

        .process-item.visible .process-features li:nth-child(1) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.35s;
        }

        .process-item.visible .process-features li:nth-child(2) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.4s;
        }

        .process-item.visible .process-features li:nth-child(3) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.45s;
        }

        .process-item.visible .process-features li:nth-child(4) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.5s;
        }

        .process-tagline {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.7s var(--ease-out-expo) 0.5s, 
                        transform 0.7s var(--ease-out-expo) 0.5s;
        }

        .process-item.visible .process-tagline {
            opacity: 1;
            transform: translateY(0);
        }

        .arrow-right {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s var(--ease-out-expo) 0.55s, 
                        transform 0.6s var(--ease-out-expo) 0.55s;
        }

        .process-item.visible .arrow-right {
            opacity: 1;
            transform: translateX(0);
        }

        /* Partner card animations - scale and blur with staggered children */
        .partner-card {
            opacity: 0;
            transform: translateY(60px) scale(0.9);
            filter: blur(8px);
            transition: opacity 0.8s var(--ease-out-expo), 
                        transform 0.8s var(--ease-out-back),
                        filter 0.6s var(--ease-out-expo);
        }

        .partner-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .partner-icon {
            opacity: 0;
            transform: scale(0.5) rotate(-10deg);
            transition: opacity 0.7s var(--ease-out-expo) 0.2s, 
                        transform 0.7s var(--ease-out-back) 0.2s;
        }

        .partner-card.visible .partner-icon {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        .partner-card h3 {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s var(--ease-out-expo) 0.3s, 
                        transform 0.6s var(--ease-out-expo) 0.3s;
        }

        .partner-card.visible h3 {
            opacity: 1;
            transform: translateY(0);
        }

        .partner-card p {
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.6s var(--ease-out-expo) 0.4s, 
                        transform 0.6s var(--ease-out-expo) 0.4s;
        }

        .partner-card.visible p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Grid item animations for pillars - directional based on position */
        .grid-item {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            filter: blur(6px);
            transition: opacity 0.8s var(--ease-out-expo), 
                        transform 0.8s var(--ease-out-expo),
                        filter 0.6s var(--ease-out-expo);
        }

        .grid-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .grid-item.text-right {
            transform: translateX(50px) translateY(20px) scale(0.95);
        }

        .grid-item.text-right.visible {
            transform: translateX(0) translateY(0) scale(1);
        }

        .grid-item:not(.text-right):not(:empty) {
            transform: translateX(-50px) translateY(20px) scale(0.95);
        }

        .grid-item:not(.text-right):not(:empty).visible {
            transform: translateX(0) translateY(0) scale(1);
        }

        /* Blueprints image - zoom reveal */
        .blueprints-image {
            opacity: 0;
            transform: scale(1.1);
            filter: blur(5px);
            transition: opacity 1.5s var(--ease-smooth), 
                        transform 1.5s var(--ease-smooth),
                        filter 1.2s var(--ease-smooth);
        }

        .blueprints-image.visible {
            opacity: 1;
            transform: scale(1);
            filter: blur(0);
        }

        /* CTA Section animations */
        .cta-container h2 {
            opacity: 0;
            transform: translateY(50px);
            filter: blur(8px);
            transition: opacity 1s var(--ease-out-expo), 
                        transform 1s var(--ease-out-expo),
                        filter 0.8s var(--ease-out-expo);
        }

        .cta-container.visible h2 {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        .cta-container p {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.9s var(--ease-out-expo) 0.15s, 
                        transform 0.9s var(--ease-out-expo) 0.15s;
        }

        .cta-container.visible p {
            opacity: 1;
            transform: translateY(0);
        }

        .btn-cta {
            opacity: 0;
            transform: translateY(25px) scale(0.95);
            transition: opacity 0.7s var(--ease-out-expo) 0.3s, 
                        transform 0.7s var(--ease-out-back) 0.3s,
                        background 0.2s,
                        color 0.2s;
        }

        .cta-container.visible .btn-cta {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Process header animations */
        .process-header h2 {
            opacity: 0;
            transform: translateY(50px);
            filter: blur(8px);
            transition: opacity 1.1s var(--ease-out-expo), 
                        transform 1.1s var(--ease-out-expo),
                        filter 0.8s var(--ease-out-expo);
        }

        .process-header.visible h2 {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        .process-header p {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.9s var(--ease-out-expo) 0.2s, 
                        transform 0.9s var(--ease-out-expo) 0.2s;
        }

        .process-header.visible p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Partners header */
        .partners-header h2 {
            opacity: 0;
            transform: translateY(50px);
            filter: blur(8px);
            transition: opacity 1.1s var(--ease-out-expo), 
                        transform 1.1s var(--ease-out-expo),
                        filter 0.8s var(--ease-out-expo);
        }

        .partners-header.visible h2 {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        /* Footer animations */
        .footer-container {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s var(--ease-out-expo), 
                        transform 1s var(--ease-out-expo);
        }

        .footer-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .footer-brand,
        .footer-col {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s var(--ease-out-expo), 
                        transform 0.7s var(--ease-out-expo);
        }

        .footer-container.visible .footer-brand {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.1s;
        }

        .footer-container.visible .footer-col:nth-child(2) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .footer-container.visible .footer-col:nth-child(3) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }

        .footer-container.visible .footer-col:nth-child(4) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
        }

        /* ============================================
           MOBILE MENU OVERLAY
        ============================================ */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(26, 26, 26, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
            z-index: 1000;
            backdrop-filter: blur(4px);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Header scroll state */
        header {
            transition: box-shadow 0.3s var(--ease-smooth), background 0.3s var(--ease-smooth);
        }

        header.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }

        /* ============================================
           RESPONSIVE
        ============================================ */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-direction: column;
            gap: 5px;
            z-index: 1003;
            position: relative;
        }

        .mobile-menu-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-dark);
            transition: all 0.3s var(--ease-out-expo);
            transform-origin: center;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Tablet breakpoint */
        @media (max-width: 1024px) {
            .header-inner {
                padding: 12px 20px;
            }

            nav a {
                padding: 8px 12px;
                font-size: 0.75rem;
            }

            .nav-platform {
                padding-right: 20px;
            }

            .platform-intro,
            .process-section {
                padding-left: 24px;
                padding-right: 24px;
            }

            .platform-intro h2,
            .process-header h2 {
                font-size: 2.25rem;
            }

            .pillars-container {
                /* Image will naturally scale */
            }
            
            .pillars-grid-overlay {
                gap: 0;
                padding: 1.5% 2%;
            }

            .grid-item {
                font-size: clamp(0.65rem, 1.1vw, 1.1rem);
                padding: 1.5% 2%;
            }

            .grid-item span {
                font-size: clamp(0.45rem, 0.7vw, 0.65rem);
                margin-top: 3px;
                max-width: 200px;
            }

            .partners-section,
            .cta-section {
                padding-left: 24px;
                padding-right: 24px;
            }
        }

        @media (max-width: 900px) {
            .partners-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .partner-card:not(:last-child)::after {
                display: none;
            }

            .partner-card {
                border-bottom: 1px solid var(--border-gray);
            }

            .partner-card:last-child {
                border-bottom: none;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: min(320px, 85vw);
                height: 100vh;
                height: 100dvh;
                background: var(--bg-white);
                flex-direction: column;
                padding: 80px 32px 40px;
                box-shadow: -4px 0 24px rgba(0,0,0,0.15);
                transition: right 0.4s var(--ease-out-expo);
                z-index: 1001;
                align-items: flex-start;
                overflow-y: auto;
            }

            nav.active {
                right: 0;
            }

            nav a {
                padding: 16px 0;
                font-size: 1.1rem;
                font-weight: 400;
                color: var(--text-dark);
                border-bottom: 1px solid var(--line-light-gray);
                width: 100%;
                opacity: 0;
                transform: translateX(20px);
                transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), color 0.2s;
            }

            nav.active a {
                opacity: 1;
                transform: translateX(0);
            }

            nav.active a:nth-child(1) { transition-delay: 0.1s; }
            nav.active a:nth-child(2) { transition-delay: 0.15s; }
            nav.active a:nth-child(3) { transition-delay: 0.2s; }
            nav.active a:nth-child(4) { transition-delay: 0.25s; }
            nav.active a:nth-child(5) { transition-delay: 0.3s; }
            nav.active a:nth-child(7) { transition-delay: 0.35s; }

            nav a:last-child {
                border-bottom: none;
            }

            nav a.nav-platform {
                border-right: none;
                padding-right: 0;
            }

            nav a.nav-career {
                padding-left: 0;
            }

            .nav-dots {
                display: none;
            }

            .btn-login {
                display: none;
            }

            .hero {
                padding: 0 20px;
            }

            .hero-container {
                height: auto;
                min-height: 280px;
                max-height: none;
                border-radius: 16px 16px 0 0;
                aspect-ratio: 4/3;
                width: 100%;
            }

            .hero-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .hero-overlay {
                padding: 0 0 24px;
                right: -1px !important;
				left: -1px !important;
            }

            .hero-title-wrapper {
                width: 100%;
            }

            .hero-title {
                max-width: none;
                width: 100%;
            }

            .hero-nav {
                left: 8px;
            }

            .hero-nav-btn {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }

            .platform-intro {
                padding: 40px 20px 30px;
            }

            .platform-intro h2 {
                font-size: 1.75rem;
                line-height: 1.3;
            }

            .pillars-section {
                padding: 20px 0 0;
            }
            
            .pillars-container {
                /* Container stays relative for overlay */
            }
            
            .pillars-image {
                content: url('/img/pillars-mobile.webp');
            }
            
            .pillars-grid-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 1fr);
                gap: 10px;
                padding: 15px;
            }

            .grid-item {
                text-align: left !important;
                align-items: flex-start !important;
                font-size: 1rem;
                padding: 10px 15px;
            }

            .grid-item:empty {
                display: none;
            }

            .grid-item span {
                width: 100%;
                font-size: 0.75rem;
            }

            .process-section {
                padding: 30px 20px 0;
            }

            .process-header h2 {
                font-size: 1.75rem;
            }

            .process-header p {
                font-size: 14px;
            }

            .process-item {
                grid-template-columns: 1fr;
            }

            .process-marker {
                margin-bottom: 12px;
            }

            .process-item:not(:last-child)::after {
                display: none;
            }

            .process-content h3 {
                font-size: 1.2rem;
            }

            .process-tagline {
                font-size: 1.1rem;
                flex-direction: row;
                align-items: flex-start;
                gap: 12px;
            }

            .arrow-right {
                max-width: 80px;
                min-width: 60px;
                flex-shrink: 0;
                margin-top: 5px;
            }

            .partners-section {
                padding: 40px 20px 50px;
            }

            .partners-header h2 {
                font-size: 1.75rem;
            }

            .partner-card h3 {
                font-size: 1.25rem;
            }

            .partner-card p {
                font-size: 1rem;
            }

            .cta-section {
                padding: 50px 20px 80px;
            }

            .cta-container h2 {
                font-size: 1.75rem;
            }

            .cta-container p {
                font-size: 1.1rem;
                width: 100%;
            }

            .btn-cta {
                float: none;
                display: inline-flex;
                align-items: center;
                margin-top: 24px;
            }

            .footer {
                padding: 40px 20px 20px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding: 10px 16px;
            }

            .hero-container {
                height: 45vh;
                min-height: 280px;
            }

            .platform-intro h2,
            .process-header h2,
            .partners-header h2,
            .cta-container h2 {
                font-size: 1.2rem;
            }

            .process-content h3 {
                font-size: 1.3rem;
            }
        }

        /* Prevent body scroll when menu is open */
        body.menu-open {
            overflow: hidden;
        }
