/* ========================================
   ABOUT 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;
            --accent-gold: #c9a227;
            
            --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%; }
        }
        
        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;
        }
        
        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 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg-white);
            transition: box-shadow 0.3s var(--ease-smooth);
        }

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

        .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 */
        .hero {
            margin-top: 64px;
            padding: 12px;
        }

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

        .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: 90px;
        }

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

        .hero-title {
            width: auto;
            margin-bottom: 40px;
        }
        
        .hero-badge {
            display: inline-block;
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            padding: 8px 16px;
            text-transform: uppercase;
            width: fit-content;
            position: absolute;
    		top: 2rem;
    		left: 2rem;
        }

        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .hero-tagline-left {
            color: rgba(255,255,255,0.8);
            font-size: 0.85rem;
            font-weight: 300;
            margin-top: 20px;
            position: absolute;
	    	bottom: 2rem;
    		left: 2rem;
        }

        .hero-tagline-right {
            text-align: right;
            color: white;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            line-height: 1.5;
            position: absolute;
		    bottom: 2rem;
		    right: 2rem;
        }

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

        .hero-nav-btn {
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 24px;
            color: rgba(255,255,255,0.6);
            transition: color 0.2s;
        }

        .hero-nav-btn:hover { color: white; }

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

        /* ABOUT INTRO */
        .about-intro {
            padding: 60px 0 10px;
        }

        .about-exp {
            font-family: 'Inter', sans-serif;
            font-size: 1.75rem;
            font-weight: 200;
            color: var(--text-light-gray);
            letter-spacing: 0.1em;
        }

        .about-title {
            font-family: 'Inter', sans-serif;
            font-size: 4.5rem;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 1;
        }

		.about-intro-right {
			width: 90%;
			margin: auto;
			padding: 40px 0 10px 40px;
		}
		
        .about-intro-right h2 {
            font-family: 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 25px;
            margin: 25px 0;
		    max-width: fit-content;
        }

        .about-intro-right h2 span { 
        	color: var(--text-light-gray); 
        	padding-left: 150px;	
        }

        .about-intro-actions {
            display: flex;
            gap: 40px;
            align-items: center;
            padding: 10px 0 0 60px;
        }
        
        .aboutus-head {
        	width: 100VW;
        }

        .btn-contact {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 1px solid var(--text-dark);
            color: var(--text-dark);
            padding: 12px 24px;
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            text-decoration: none;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: all 0.2s;
        }

        .btn-contact:hover { background: var(--text-dark); color: white; }
        .btn-contact svg { width: 30px; height: 10px; }

        .about-tagline {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--text-light-gray);
            letter-spacing: 0.05em;
            line-height: 1.3;
        }

        /* BRACKET ELEMENT */
        .bracket {
            position: relative;
            padding-left: 30px;
            background-image: url("../img/top-left-corner-black.svg");
            background-repeat: no-repeat;
            background-position: top left;
            background-size: 1rem;
        }

        /* ONE TEAM SECTION */
        .one-team-section {
            padding: 60px 40px;
        }

        .one-team-title {
            font-family: 'Inter', sans-serif;
            font-size: 2.75rem;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 1.25;
            margin-bottom: 50px;
        }

        .one-team-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 0;
        }

        .one-team-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 4px;
        }

        .one-team-text {
            flex-direction: column;
            justify-content: center;
        }

        .one-team-text p {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            color: var(--text-gray);
            font-weight: 300;
            line-height: 1.3;
            margin: 0 0 30px 0;
        	padding: 0 0 10px;
            text-align: justify;
            border-bottom: 1px solid var(--line-light-gray);
        }
        
        .one-team-text p span {
        	padding: 0 40px;	
        	display: block;
        }

        .one-team-text p strong { color: var(--text-dark); }

        /* EXPERIENCE QUOTE */
        .experience-quote {
            padding: 50px 40px 50px 70px;
        }

        .experience-quote p {
            font-family: 'Inter', sans-serif;
            font-size: 2.75rem;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 1.4;
        }

        /* SIDE TEXT */
        .side-text {
            position: absolute;
            right: 15px;
            top: 12rem;
            transform: translateY(-50%) rotate(90deg);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.6rem;
            letter-spacing: 0.35em;
            color: var(--text-light-gray);
            text-transform: uppercase;
            transform-origin: center center;
            white-space: nowrap;
            z-index: 100;
        }

        /* STATS */
        .stats-section {
            padding: 30px 40px;
            border-top: 1px solid var(--border-gray);
            border-bottom: 1px solid var(--border-gray);
        }

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

        .stat-item {
            text-align: center;
            padding: 20px;
            position: relative;
        }

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

        .stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--text-light-gray);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .stat-value {
            font-family: 'Inter', sans-serif;
            font-size: 3rem;
            font-weight: 300;
            color: var(--text-dark);
        }

        /* FULL IMAGE */
        .full-image-section {
            width: 100%;
            height: 50vh;
            min-height: 400px;
        }

        .full-image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* CONSTRUCTOS */
        .constructos-section {
            padding: 60px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px 60px;
            align-items: start;
        }

        .constructos-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .constructos-brand .logo-box {
            font-size: 1.25rem;
            padding: 8px 6px;
        }

        .constructos-brand-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.75rem;
            font-weight: 300;
            color: var(--text-dark);
            border-left: 2px solid var(--border-gray);
		    padding-left: 8px;
        }

        .constructos-brand-text span { font-weight: 700; }

        .constructos-left p {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 15px;
            text-align: justify;
        }

        .constructos-left p strong { color: var(--text-dark); }

        .constructos-right {
            display: flex;
            flex-direction: column;
            padding-top: 20px;
            border-left: 1px solid var(--line-light-gray);
    		padding-left: 40px;
        }

        .constructos-headline {
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 30px;
        }

        .constructos-quote {
            font-family: 'Inter', sans-serif;
            font-size: 1.75rem;
            font-weight: 200;
            letter-spacing: -0.02em;
            color: var(--text-gray);
            line-height: 1.4;
            grid-column: 1 / 3;
        }

        /* KEY ELEMENTS */
        .key-elements-section {
            padding: 0 40px;
        }

        .key-elements-header {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 0;
            margin-bottom: 60px;
            align-items: start;
        }

        .key-elements-title {
            font-family: 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--text-dark);
        }

        .key-elements-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-top: 10px;
        }

        .key-elements-list-header {
            margin-bottom: 10px;
        }

        .key-icon {
            width: 45px;
            height: 45px;
            background: var(--text-dark);
            border-radius: 50%;
            display: flex;
            margin: 15px 0px;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            float: right;
        }

        .key-elements-list p {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
            padding-left: 60px;
        }

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

        .capability-item {
            padding: 30px;
            border-bottom: 1px solid var(--border-gray);
        }

        .capability-item:nth-child(odd) {
            border-right: 1px solid var(--border-gray);
        }

        .capability-item:nth-child(1),
        .capability-item:nth-child(2) {
            border-top: 1px solid var(--border-gray);
        }

        .capability-item h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.5;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            padding: 0 40px;
        }

        .capability-item.alt h3 { color: var(--text-light-gray); }

        /* WHY THIS MATTERS */
        .why-matters-section {
            padding: 60px 40px;
        }

        .why-matters-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 50px;
            margin-right: 135px;
        }

        .why-matters-images img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 4px;
        }

        .why-matters-title {
            font-family: 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        .why-matters-point {
            display: flex;
            align-items: center;
            gap: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 1.75rem;
            font-weight: 200;
            color: var(--text-light-gray);
        }

        .arrow-right {
            width: 100px;
        }

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

        .cta-container {
            width: 100%;
            max-width: 100%;
            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;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            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); }
        .btn-cta svg { width: 50px; height: 15px; }

        /* FOOTER */
        .footer {
            background: var(--bg-cream);
            color: var(--text-dark);
            padding: 60px 24px 24px;
        }

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

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--border-gray);
        }

        .footer-tagline {
            font-size: 0.85rem;
            color: var(--text-gray);
            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;
            color: var(--text-light-gray);
        }

        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.75rem; }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: var(--text-dark); }

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

        .footer-copyright {
            font-size: 0.8rem;
            color: var(--text-light-gray);
        }

        .footer-social { display: flex; gap: 1rem; }
        .footer-social a { color: var(--text-gray); transition: color 0.3s; }
        .footer-social a:hover { color: var(--text-dark); }
        .footer-social svg { width: 20px; height: 20px; }

        /* ========== ELEGANT ANIMATIONS & PARALLAX ========== */
        
        /* Parallax image containers */
        .hero-container,
        .one-team-content,
        .full-image-section,
        .why-matters-images {
            overflow: hidden;
        }

        /* Hero image parallax prep */
        .hero-image {
            transition: transform 0.1s linear;
            will-change: transform;
        }

        .one-team-image {
            transition: transform 0.15s ease-out;
        }

        .full-image-section img {
            transition: transform 0.1s linear;
            will-change: transform;
        }

        .why-matters-images > img {
            transition: transform 0.15s ease-out;
        }

        /* Base scroll animations */
        [data-scroll] {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }

        [data-scroll].is-visible {
            opacity: 1;
            transform: none;
        }

        /* Hero container entrance */
        .hero-container {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }

        .hero-container.is-visible {
            opacity: 1;
            transform: none;
        }

        /* Hero child elements - staggered */
        .hero-badge {
            opacity: 0;
            transform: translateY(-20px);
            transition: opacity 0.6s var(--ease-out-expo) 0.3s, transform 0.6s var(--ease-out-expo) 0.3s;
        }

        .hero-container.is-visible .hero-badge {
            opacity: 1;
            transform: none;
        }

        .hero-title-wrapper .hero-title {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }

        .hero-container.is-visible .hero-title-wrapper .hero-title:first-child {
            opacity: 1;
            transform: none;
            transition-delay: 0.4s;
        }

        .hero-container.is-visible .hero-title-wrapper .hero-title:last-child {
            opacity: 1;
            transform: none;
            transition-delay: 0.55s;
        }

        .hero-tagline-left {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.6s var(--ease-out-expo) 0.7s, transform 0.6s var(--ease-out-expo) 0.7s;
        }

        .hero-container.is-visible .hero-tagline-left {
            opacity: 0.8;
            transform: none;
        }

        .hero-tagline-right {
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.6s var(--ease-out-expo) 0.8s, transform 0.6s var(--ease-out-expo) 0.8s;
        }

        .hero-container.is-visible .hero-tagline-right {
            opacity: 1;
            transform: none;
        }

        /* About intro - staggered children */
        .about-intro .aboutus-head {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
        }

        .about-intro.is-visible .aboutus-head {
            opacity: 1;
            transform: none;
        }

        .about-intro .about-intro-right h2 {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.7s var(--ease-out-expo) 0.15s, transform 0.7s var(--ease-out-expo) 0.15s;
        }

        .about-intro.is-visible .about-intro-right h2 {
            opacity: 1;
            transform: none;
        }

        .about-intro .about-intro-actions {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s var(--ease-out-expo) 0.3s, transform 0.7s var(--ease-out-expo) 0.3s;
        }

        .about-intro.is-visible .about-intro-actions {
            opacity: 1;
            transform: none;
        }

        /* One team section - staggered */
        .one-team-section .one-team-title {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
        }

        .one-team-section.is-visible .one-team-title {
            opacity: 1;
            transform: none;
        }

        .one-team-section .one-team-image {
            opacity: 0;
            transform: translateX(-25px);
            transition: opacity 0.8s var(--ease-out-expo) 0.1s, transform 0.8s var(--ease-out-expo) 0.1s;
        }

        .one-team-section.is-visible .one-team-image {
            opacity: 1;
            transform: none;
        }

        .one-team-section .one-team-text p {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
        }

        .one-team-section.is-visible .one-team-text p:nth-child(1) {
            opacity: 1;
            transform: none;
            transition-delay: 0.2s;
        }

        .one-team-section.is-visible .one-team-text p:nth-child(2) {
            opacity: 1;
            transform: none;
            transition-delay: 0.35s;
        }

        .one-team-section.is-visible .one-team-text p:nth-child(3) {
            opacity: 1;
            transform: none;
            transition-delay: 0.5s;
        }

        /* Experience quote */
        .experience-quote .bracket p {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
        }

        .experience-quote.is-visible .bracket p {
            opacity: 1;
            transform: none;
        }

        /* Stats section */
        .stat-item {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
        }

        .stat-item.is-visible {
            opacity: 1;
            transform: none;
        }

        .stat-item:nth-child(1) { transition-delay: 0s; }
        .stat-item:nth-child(2) { transition-delay: 0.12s; }
        .stat-item:nth-child(3) { transition-delay: 0.24s; }

        /* Constructos section */
        .constructos-section .constructos-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
        }

        .constructos-section.is-visible .constructos-left {
            opacity: 1;
            transform: none;
        }

        .constructos-section .constructos-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.7s var(--ease-out-expo) 0.15s, transform 0.7s var(--ease-out-expo) 0.15s;
        }

        .constructos-section.is-visible .constructos-right {
            opacity: 1;
            transform: none;
        }

        .constructos-section .constructos-quote {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s var(--ease-out-expo) 0.3s, transform 0.7s var(--ease-out-expo) 0.3s;
        }

        .constructos-section.is-visible .constructos-quote {
            opacity: 1;
            transform: none;
        }

        /* Key elements */
        .key-elements-section .key-elements-header {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
        }

        .key-elements-section.is-visible .key-elements-header {
            opacity: 1;
            transform: none;
        }

        .key-elements-section .key-elements-list p {
            opacity: 0;
            transform: translateX(-15px);
            transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
        }

        .key-elements-section.is-visible .key-elements-list p:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
        .key-elements-section.is-visible .key-elements-list p:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.18s; }
        .key-elements-section.is-visible .key-elements-list p:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.26s; }
        .key-elements-section.is-visible .key-elements-list p:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.34s; }
        .key-elements-section.is-visible .key-elements-list p:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.42s; }

        /* Capability items */
        .capability-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
        }

        .capability-item.is-visible {
            opacity: 1;
            transform: none;
        }

        .capability-item:nth-child(1) { transition-delay: 0s; }
        .capability-item:nth-child(2) { transition-delay: 0.08s; }
        .capability-item:nth-child(3) { transition-delay: 0.16s; }
        .capability-item:nth-child(4) { transition-delay: 0.24s; }

        /* Capability hover effect */
        .capability-item {
            position: relative;
        }

        .capability-item::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--text-dark);
            transition: width 0.4s var(--ease-out-expo);
        }

        .capability-item:hover::before {
            width: 60px;
        }

        /* Why matters section */
        .why-matters-section .why-matters-images > img {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
        }

        .why-matters-section.is-visible .why-matters-images > img:nth-of-type(1) {
            opacity: 1;
            transform: none;
            transition-delay: 0s;
        }

        .why-matters-section.is-visible .why-matters-images > img:nth-of-type(2) {
            opacity: 1;
            transform: none;
            transition-delay: 0.12s;
        }

        .why-matters-section .why-matters-title {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s var(--ease-out-expo) 0.2s, transform 0.7s var(--ease-out-expo) 0.2s;
        }

        .why-matters-section.is-visible .why-matters-title {
            opacity: 1;
            transform: none;
        }

        .why-matters-section .why-matters-point {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
        }

        .why-matters-section.is-visible .why-matters-point:nth-of-type(3) { opacity: 1; transform: none; transition-delay: 0.7s; }
        .why-matters-section.is-visible .why-matters-point:nth-of-type(4) { opacity: 1; transform: none; transition-delay: 0.9s; }
        .why-matters-section.is-visible .why-matters-point:nth-of-type(5) { opacity: 1; transform: none; transition-delay: 1.1s; }

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

        .footer-container.is-visible {
            opacity: 1;
            transform: none;
        }

        /* Button hover enhancements */
        .btn-contact,
        .btn-cta,
        .btn-login {
            position: relative;
            overflow: hidden;
        }

        .btn-contact::after,
        .btn-cta::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 0;
            background: var(--text-dark);
            transition: height 0.3s var(--ease-out-expo);
            z-index: -1;
        }

        .btn-contact:hover::after,
        .btn-cta:hover::after {
            height: 100%;
        }

        .btn-contact svg,
        .btn-cta svg {
            transition: transform 0.3s var(--ease-out-expo);
        }

        .btn-contact:hover svg,
        .btn-cta:hover svg {
            transform: translateX(5px);
        }

        /* Link hover effects */
        nav a::after {
            content: '';
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 4px;
            height: 1px;
            background: var(--text-dark);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s var(--ease-out-expo);
        }

        nav a {
            position: relative;
        }

        nav a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Reduced motion preference */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }
            
            [data-scroll],
            .hero-container,
            .stat-item,
            .capability-item,
            .footer-container,
            .hero-badge,
            .hero-title,
            .hero-tagline-left,
            .hero-tagline-right,
            .about-intro .aboutus-head,
            .about-intro .about-intro-right h2,
            .about-intro .about-intro-actions,
            .one-team-section .one-team-title,
            .one-team-section .one-team-image,
            .one-team-section .one-team-text p,
            .experience-quote .bracket p,
            .constructos-section .constructos-left,
            .constructos-section .constructos-right,
            .constructos-section .constructos-quote,
            .key-elements-section .key-elements-header,
            .key-elements-section .key-elements-list p,
            .why-matters-section .why-matters-images > img,
            .why-matters-section .why-matters-title,
            .why-matters-section .why-matters-point {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* Disable parallax on mobile */
        @media (max-width: 768px) {
            .hero-image,
            .one-team-image,
            .full-image-section img,
            .why-matters-images > img {
                transform: none !important;
            }
        }

        /* MOBILE MENU */
        .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; }

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

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

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

        body.menu-open { overflow: hidden; }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .about-intro { grid-template-columns: 1fr; gap: 30px; }
            .about-title { font-size: 3.5rem; }
            .one-team-content { grid-template-columns: 1fr; }
			.one-team-text { margin-top: 50px; }
            .one-team-image { height: 350px; }
            .constructos-section { grid-template-columns: 1fr; gap: 40px; }
            .capabilities-grid { grid-template-columns: 1fr; }
            .capability-item:nth-child(odd) { border-right: none; }
            .key-elements-header { grid-template-columns: 1fr; gap: 30px; }
        }

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

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: min(320px, 85vw);
                height: 100vh;
                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;
                color: var(--text-dark);
                border-bottom: 1px solid var(--line-light-gray);
                width: 100%;
            }
            
            .nav-career { padding-left: 0; }

            .nav-dots, .btn-login { display: none; }
            .nav-platform { border-right: none; padding-right: 0; }

            .hero-container { height: 50vh; min-height: 400px; }
            .hero-title .line1, .hero-title .line2 { font-size: 2.5rem; }

            .about-intro { padding: 40px 20px; }
            .about-title { font-size: 2.5rem; }
            .about-intro-right h2 { font-size: 1.5rem; }
            .about-intro-actions { flex-direction: column; align-items: flex-start; gap: 20px; }

            .one-team-section, .constructos-section, .key-elements-section, .why-matters-section { padding: 40px 20px; }
            .one-team-title, .key-elements-title, .why-matters-title { font-size: 1.75rem; }
            .experience-quote { padding: 40px 20px 40px 50px; }
            .experience-quote p { font-size: 1.25rem; }
            .constructos-quote { font-size: 1.25rem; }
            .constructos-headline { font-size: 1.5rem; }

            .stats-section { padding: 20px; }
            .stats-grid { grid-template-columns: 1fr; }
            .stat-item:not(:last-child)::after { display: none; }
            .stat-item { border-bottom: 1px solid var(--border-gray); padding: 15px; }
            .stat-item:last-child { border-bottom: none; }
            .stat-value { font-size: 2.5rem; }

            .why-matters-images { grid-template-columns: 1fr; }
            .why-matters-images img { height: 250px; }
            .why-matters-point { font-size: 1.25rem; }

            .footer-top { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .side-text { display: none; }

            .cta-section { padding: 50px 20px 80px; }
            .cta-container p { width: 100%; font-size: 1.25rem; }
            .cta-container h2 { font-size: 2rem; }
            .btn-cta { float: none; margin-top: 24px; }
        }
