        .marquee { 
            white-space: nowrap; 
            overflow: hidden; 
            display: flex; 
            background: var(--secondary); 
            padding: 1rem 0; 
            transform: translateY(-60px) rotate(-1.5deg) scale(1.25); 
            width: 160%;
            margin-left: -30%;
            z-index: 20; 
            color: var(--primary); 
            pointer-events: none;
            margin-bottom: -30px; 
            will-change: transform;
        }
        .marquee div { display: flex; animation: marquee-text 30s linear infinite; align-items: center; }
        .marquee span { 
            font-size: 2.2rem; 
            font-weight: 900; 
            text-transform: uppercase; 
            padding: 0 2rem; 
            letter-spacing: -0.02em; 
        }
        @keyframes marquee-text { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        .spinning-asterisk {
            display: inline-block;
            animation: spin 5s linear infinite;
            font-size: 1.6rem; 
            color: var(--success); 
            margin: 0 1rem;
            line-height: 1;
        }

        .horizontal-wrapper { height: 600vh; position: relative; }
        .sticky-container { position: sticky; top: 0; height: 100vh; overflow: hidden; }
        .horizontal-content { display: flex; height: 100%; width: fit-content; will-change: transform; }
        .horizontal-item { width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; padding: 5vw; flex-shrink: 0; position: relative; }
        
        .service-row { border-bottom: 1px solid rgba(25, 51, 64, 0.1); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; }
        .service-row:hover { background-color: var(--secondary); padding-left: 2rem; padding-right: 2rem; }
        .service-row:hover h3, .service-row:hover .service-desc { color: var(--primary) !important; }
        .service-row .service-desc { opacity: 0; transform: translateX(20px); transition: all 0.4s ease; color: var(--accent); }
        .service-row:hover .service-desc { opacity: 1; transform: translateX(0); }
        
        .project-img-container { clip-path: inset(100% 0 0 0); transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1); }
        .project-img-container.active { clip-path: inset(0 0 0 0); }
        
        .panel-number { font-size: 15vw; font-weight: 900; line-height: 0.8; opacity: 0.05; position: absolute; left: 5vw; top: 50%; transform: translateY(-50%); color: var(--accent); }
        
        .logo-track-container { overflow: hidden; padding: 20px 0; position: relative; }
        .logo-track { display: flex; width: max-content; }
        .scroll-left { animation: marquee-l 25s linear infinite; }
        .scroll-right { animation: marquee-r 25s linear infinite; }
        @keyframes marquee-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        @keyframes marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }

        .client-circle {
            width: 130px; height: 130px; background: #fff; border-radius: 50%; border: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-right: 60px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: transform 0.3s ease;
        }
        .client-circle:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 10px 25px rgba(31, 138, 223, 0.15); }
        .client-logo { filter: none; max-width: 100%; max-height: 100%; object-fit: contain; }

        .horizontal-img-box {
            width: 100%;
            max-width: 1200px;
            height: 45vh;
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 3rem;
            opacity: 0;
            transform: scale(0.95);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .horizontal-img-box.active { opacity: 1; transform: scale(1); }
        
        .portrait-frame {
            position: absolute; left: 45%; top: 50%; transform: translate(-50%, -50%);
            width: 420px; height: 520px; border-radius: 40px; overflow: visible; opacity: 0; pointer-events: none;
            will-change: transform, opacity; z-index: 5;
        }
        .portrait-img-box {
            position: relative; width: 100%; height: 100%; border-radius: inherit; overflow: hidden;
            box-shadow: 0 30px 60px rgba(31, 138, 223, 0.2); border: 1px solid rgba(31, 138, 223, 0.1);
        }
        .portrait-img-box img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.8s ease; }
        .portrait-frame.active img { filter: grayscale(0%); }

        .team-word {
            position: absolute; left: 70%; top: 50%; transform: translateY(-50%);
            font-size: 12vw; font-weight: 900; font-style: italic; 
            color: var(--accent) !important;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
            text-shadow: 
                4px 4px 0px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(31, 138, 223, 0.65);
            text-transform: uppercase; line-height: 0.8; z-index: 10; pointer-events: none;
            white-space: nowrap; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0;
        }
        .portrait-frame.active .team-word { opacity: 1; }

        .group-photo-container {
            position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; transform: scale(1.1); will-change: transform, opacity; z-index: 15;
        }
        .group-photo-container img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }
        
        .team-content-reveal {
            position: absolute; top: 100%; left: 0; width: 100%; height: 100%; z-index: 30; padding: 120px 0; background: var(--surface-light); text-align: center;
        }
        .team-txt-body { color: var(--secondary) !important; max-width: 850px; margin: 0 auto; line-height: 1.8; }
        
        @media (max-width: 768px) {
            .portrait-frame {
                top: 45%;
                width: 350px; height: 433px;
            }
            
            .team-word {
                top: 95%; left: 50%; transform: translateX(-50%);
                font-size: 5rem;
            }

        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        @media (min-width: 768px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

        .service-card {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 32px;
            overflow: hidden;
            background: #111;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .service-card-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            z-index: 0;
            transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
            filter: grayscale(90%) brightness(0.7);
        }

        .service-card:hover .service-card-bg {
            transform: scale(1.1);
            filter: grayscale(0%) brightness(0.9);
        }

        .service-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
            z-index: 1;
            transition: all 0.5s ease;
        }

        .service-content {
            position: relative;
            z-index: 2;
            transform: translateY(110px); 
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .service-card:hover .service-content {
            transform: translateY(0);
        }

        .service-title {
            color: #fff !important;
            font-weight: 800;
            line-height: 1.1;
            transition: color 0.4s ease;
            margin-bottom: 1.5rem;
        }

        .service-content .service-desc {
            color: var(--primary) !important;
            line-height: 1.6;
            font-weight: 300;
            opacity: 0;
            transition: opacity 0.4s ease 0.1s;
            max-width: 90%;
        }
        
        @media (min-width: 1024px) {
            .service-title { margin-bottom: 2rem; }
        }

        .service-card:hover .service-content .service-desc {
            opacity: 1;
        }

        .service-card:hover .service-title {
            color: var(--accent) !important;
        }
        
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }
        .faq-trigger {
            width: 100%;
            padding: 2.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            cursor: pointer;
            background: none;
            border: none;
            outline: none;
        }
        .faq-title { 
            font-size: clamp(1.2rem, 3vw, 1.8rem); 
            font-weight: 800; 
            color: #ffffff;
            transition: color 0.4s ease;
            max-width: 85%;
        }

        .faq-trigger:hover .faq-title,
        .faq-item.faq-open .faq-title { color: var(--primary); }
        
        .faq-icon {
            width: 32px; height: 32px; position: relative; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-icon::before {
            content: '';
            width: 14px; height: 14px;
            border-right: 3px solid #fff;
            border-bottom: 3px solid #fff;
            transform: translateY(-4px) rotate(45deg);
            transition: border-color 0.4s ease;
        }
        .faq-trigger:hover .faq-icon::before,
        .faq-item.faq-open .faq-icon::before { border-color: var(--accent); }
        
        .faq-item.faq-open .faq-icon { transform: rotate(180deg); }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: max-height;
        }
        .answer-inner { 
            padding-bottom: 3rem; 
            color: rgba(255,255,255,0.8); 
            font-weight: 300; 
            line-height: 1.8; 
            max-width: 850px; 
        }
        .faq-answer a { text-decoration: underline; }
        
        .why-reveal-container { height: 400vh; position: relative; }
        .why-sticky { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; background: black; }
        .why-item { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
        .why-item.active { opacity: 1; pointer-events: auto; }
        .why-img-box { width: 100%; height: 100%; position: absolute; inset: 0; z-index: 1; overflow: hidden; }
        .why-img-box img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); transform: scale(1.1); transition: transform 2s ease; }
        .why-item.active .why-img-box img { transform: scale(1); }
        .why-content { position: relative; z-index: 10; max-width: 900px; width: 100%; padding: 40px; text-align: center; }
        
        #platforms-track { height: 350vh; position: relative; }
        #platforms-sticky { position: sticky; top: 0; height: 100vh; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
        
        .platform-row { 
            position: relative; width: 100%; max-width: 1200px; height: 250px; 
            display: flex; align-items: center; justify-content: center; 
        }
        
        @media (max-width: 767px) {
            .platform-row { height: 400px; }
        }

        .platform-box { 
            position: absolute; width: clamp(100px, 12vw, 160px); height: clamp(100px, 12vw, 160px); 
            background: white; border-radius: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; 
            box-shadow: 0 20px 50px rgba(31, 138, 223, 0.1); border: 1px solid rgba(0,0,0,0.05);
            will-change: transform, opacity;
            z-index: 5; padding: 15px;
        }
        .platform-box svg { width: 45%; height: 45%; fill: var(--secondary); margin-bottom: 12px; }
        .platform-box span { font-size: clamp(9px, 1vw, 12px); font-weight: 900; text-transform: uppercase; color: var(--secondary); letter-spacing: 1px; }
        
        #timeline { position: relative; padding: 120px 0; background: black; overflow: hidden; }
        .timeline-container { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .timeline-track { position: relative; margin-top: 120px; padding: 60px 0; }
        .timeline-spine { 
            position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; 
            background: linear-gradient(to bottom, transparent, var(--accent) 10%, var(--accent) 90%, transparent); 
            transform: translateX(-50%); 
            opacity: 0.3;
            z-index: 1;
        }

        .timeline-step { 
            position: relative; width: 100%; margin-bottom: 150px; 
            display: flex; justify-content: center; align-items: flex-start;
        }

        .step-content { 
            width: 42%; padding: 0; 
            opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .timeline-step.active .step-content { opacity: 1; transform: translateY(0); }

        .step-left { justify-content: flex-start; text-align: right; }
        .step-right { justify-content: flex-end; text-align: left; }

        .timeline-node {
            position: absolute; left: 50%; top: 10px; width: 18px; height: 18px;
            background: var(--accent); border-radius: 50%; transform: translate(-50%, 0);
            z-index: 10;
            display: flex; align-items: center; justify-content: center;
        }

        @keyframes sonar-blink {
            0% { box-shadow: 0 0 0 0 rgba(31, 138, 223, 0.8); }
            70% { box-shadow: 0 0 0 22px rgba(31, 138, 223, 0); }
            100% { box-shadow: 0 0 0 0 rgba(31, 138, 223, 0); }
        }
        
        .timeline-node::after {
            content: ''; 
            position: absolute; 
            inset: 0; 
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.5;
            animation: sonar-blink 2.2s infinite ease-out;
            z-index: -1;
        }

        @media (max-width: 767px) {
            .timeline-spine { left: 40px; transform: translateX(-50%); }
            .timeline-node { left: 40px; }
            
            .step-content { width: calc(100% - 80px); margin-left: 80px !important; text-align: left !important; }
            .step-left, .step-right { justify-content: flex-start; }
        }
        
        #form-container {
            background: rgba(255, 255, 255, 0.5); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 40px; padding: clamp(2rem, 5vw, 4rem); backdrop-filter: blur(20px);
        }
        
        .form-input { width: 100%; background: transparent; border: none; border-bottom: 2px solid rgba(25, 51, 64, 0.1); padding: 1.2rem 0; color: var(--secondary); transition: border-color 0.4s ease; outline: none; }
        .form-input:focus { border-color: var(--accent); }
        .iti { width: 100%; }
        .iti__country-list { color: #000; border-radius: 12px; }

        .checkbox-item { display: flex; align-items: center; gap: 12px; padding: 10px 22px; border: 1px solid rgba(25, 51, 64, 0.1); border-radius: 50px; transition: all 0.3s ease; cursor: pointer; }
        @media (min-width: 1024px) {
            .form-input { padding: 1.5rem 0; }
            .checkbox-item { padding: 12px 24px; }
        }
        .checkbox-item input { display: none; }
        .checkbox-item:has(input:checked) { background: var(--secondary); color: white !important; border-color: var(--secondary); }
        
        .social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
        @media (min-width: 768px) { .social-grid { grid-template-columns: repeat(4, 1fr); } }
        .social-card { 
            aspect-ratio: 1/1; background: white; border-radius: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 20px rgba(0,0,0,0.02);
        }
        .social-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(31, 138, 223, 0.15); border-color: var(--accent); }
        .social-card svg { width: 40px; height: 40px; transition: transform 0.4s ease; }
        .social-name { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--secondary); }

        .talent-banner {
            position: relative;
            width: 100%;
            min-height: 400px;
            background-image: url('https://plixitt.com/assets/images/skweb/skweb-home-new-11.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            justify-content: left;
            padding: 200px 50px;
            overflow: hidden;
        }
        
        @media (min-width: 1024px) {
            .talent-banner {
                padding: 300px 100px;
            }
        }
        
        .talent-banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0.55) 100%);
            z-index: 1;
        }
        .talent-banner-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            width: 100%;
            text-align: left;
        }
        
        .office-card { 
            background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); 
            border-radius: 32px; overflow: hidden; height: 100%; transition: border-color 0.4s ease;
        }
        .office-card:hover { border-color: var(--accent); box-shadow: 0 20px 40px rgba(31, 138, 223, 0.15); }
        .map-wrapper { width: 100%; height: 250px; background: #111; position: relative; }
        .map-wrapper iframe { width: 100%; height: 100%; filter: grayscale(0.7) contrast(1.1); opacity: 0.6; transition: opacity 0.4s; }
        .office-card:hover .map-wrapper iframe { opacity: 1; filter: grayscale(0.2) contrast(1); }
        .office-details { padding: 32px; }
        .office-name { font-weight: 800; margin-bottom: 12px; color: #fff; }
        .office-info-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
        .office-info-row svg { flex-shrink: 0; color: var(--accent); margin-top: 4px; }
        .office-info-row p, .office-info-row a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.6; transition: color 0.3s; }
        .office-info-row a:hover { color: var(--accent); }
        
        #capabilities-track { height: 650vh; position: relative; background: #fff; }
        #capabilities-sticky { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        
        .cap-stage { position: relative; width: 100%; height: 100%; overflow: hidden; }
        
        .cap-item { 
            position: absolute; inset: -75px 0 0 0; display: flex; align-items: center; justify-content: center; 
            will-change: transform, opacity; transform: translateX(100%); opacity: 0; 
        }
        .cap-visual { width: 80vw; height: 60vh; border-radius: 40px; overflow: hidden; position: relative; box-shadow: 0 40px 100px rgba(0,0,0,0.1); z-index: 3; opacity: 0.85; }
        .cap-visual img { width: 100%; height: 100%; object-fit: cover; }
        .cap-text { 
            position: absolute; top: 78%; left: 50%; transform: translate(-50%, -50%); 
            font-size: clamp(60px, 12vw, 180px); font-weight: 900; text-transform: uppercase; 
            color: transparent; -webkit-text-stroke: 2px var(--secondary); opacity: 0.5;
            white-space: nowrap; pointer-events: none; z-index: 2;
        }
        @media (min-width: 768px) { 
            .cap-item { inset: 0; }
            .cap-visual { width: 50vw; } 
            .cap-text { top: 50%; } 
        }

        .cap-conclusion { 
            position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; 
            opacity: 0; transform: translateY(50px); transition: all 1s ease; padding: 40px; text-align: center;
        }
        .cap-conclusion.active { opacity: 1; transform: translateY(0); }