﻿/* Additional font imports as backup */
        @import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: white;
            background: #000000;
            margin: 0;
            padding: 0;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Manrope', 'Inter', sans-serif;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section with Video Background - EXACT Monovo */
        .hero {
            position: relative;
            color: white;
            padding: 20px;
            min-height: calc(100vh - 30px);
            display: flex;
            align-items: center;
            overflow: hidden;
            border-radius: 20px;
            margin: 0;
        }
        
        .hero-background-video {
            position: absolute;
            top: 20px;
            left: 20px;
            width: calc(100% - 40px);
            height: calc(100% - 40px);
            z-index: 1;
            border-radius: 20px;
            overflow: hidden;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        

        
        .hero-content {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            min-height: calc(100vh - 30px);
            display: flex;
            align-items: center;
        }
        
        .hero-logo {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 4;
        }
        
        .hero-logo img {
            height: 72px;
            filter: grayscale(1) brightness(10) contrast(1);
            opacity: 0.9;
            transition: all 0.3s ease;
        }
        
        .hero-logo:hover img {
            opacity: 1;
            transform: scale(1.05);
        }
        
        .hero-main {
            display: block;
            width: 100%;
        }
        
        .hero-text {
            max-width: 950px;
            position: relative;
            z-index: 2;
        }
        
        .hero-text::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(40px);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.3;
        }
        
        .hero h1 {
            font-size: clamp(5.5rem, 14vw, 11rem);
            font-weight: 400;
            line-height: 0.9;
            margin-bottom: 40px;
            letter-spacing: 0.01em;
            font-family: 'Varela Round', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            transform: scale3d(1.05, 1.05, 1);
            transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.95) 0%,
                rgba(255, 255, 255, 0.8) 25%,
                rgba(255, 255, 255, 0.95) 50%,
                rgba(255, 255, 255, 0.8) 75%,
                rgba(255, 255, 255, 0.95) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
            text-stroke: 1.5px rgba(255, 255, 255, 0.6);
            animation: gradientShift 8s ease-in-out infinite,
                       textBreath 6s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
                         0 0 60px rgba(255, 255, 255, 0.1);
            will-change: transform, background-position;
        }
        
        .hero h1:hover {
            transform: scale3d(1.02, 1.02, 1);
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
            text-stroke: 2px rgba(255, 255, 255, 0.9);
            text-shadow: 0 0 40px rgba(255, 255, 255, 0.4),
                         0 0 80px rgba(255, 255, 255, 0.2);
        }
        
        .hero h1 .highlight {
            background: linear-gradient(135deg, 
                rgba(255, 107, 53, 0.9) 0%,
                rgba(255, 255, 255, 0.95) 35%,
                rgba(255, 107, 53, 0.9) 70%,
                rgba(255, 255, 255, 0.95) 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 107, 53, 0.8);
            text-stroke: 1px rgba(255, 107, 53, 0.8);
            animation: brandGlow 4s ease-in-out infinite;
            position: relative;
        }
        
        .hero h1 sup {
            font-size: 0.25em;
            vertical-align: super;
            opacity: 0.8;
            margin-left: 2px;
        }
        
        .hero h1.loaded {
            transform: scale3d(1, 1, 1);
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            25% { background-position: 100% 50%; }
            50% { background-position: 50% 100%; }
            75% { background-position: 0% 100%; }
        }
        
        @keyframes textBreath {
            0%, 100% { transform: scale3d(1, 1, 1); }
            50% { transform: scale3d(1.01, 1.01, 1); }
        }
        
        @keyframes brandGlow {
            0%, 100% { 
                background-position: 0% 50%;
                text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
            }
            50% { 
                background-position: 100% 50%;
                text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
            }
        }
        
        /* Enhanced mobile optimization for modern typography */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: clamp(3.5rem, 12vw, 6rem);
                line-height: 0.95;
                letter-spacing: -0.02em;
                margin-bottom: 30px;
            }
            
            .hero-text::before {
                opacity: 0.4;
                backdrop-filter: blur(20px);
            }
            
            .hero-subtitle {
                font-size: 16px;
                max-width: 100%;
                padding: 15px 0;
            }
        }
        
        /* Ultra-high resolution displays */
        @media (min-width: 1400px) {
            .hero h1 {
                font-size: clamp(8rem, 12vw, 14rem);
                letter-spacing: -0.04em;
            }
            
            .hero h1 .highlight {
                -webkit-text-stroke: 2px rgba(255, 107, 53, 0.8);
                text-stroke: 2px rgba(255, 107, 53, 0.8);
            }
        }
        
        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 0;
            opacity: 0.9;
            max-width: 580px;
            line-height: 1.7;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.6s ease;
        }
        
        .hero-subtitle:hover {
            opacity: 1;
            transform: translateY(-2px);
        }
        
        .hero-subtitle strong {
            font-weight: 500;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 0.9) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: none;
        }
        
        .founder-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 6px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            max-width: 380px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            position: absolute !important;
            bottom: 40px !important;
            right: 40px !important;
            z-index: 4;
        }
        
        .founder-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-image: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=160&h=160&fit=crop&crop=face');
            background-size: cover;
            background-position: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .founder-info h4 {
            margin-bottom: 5px;
            font-size: 16px;
            font-weight: 600;
            color: white;
        }
        
        .founder-info p {
            font-size: 14px;
            opacity: 0.8;
            margin-bottom: 15px;
            color: white;
        }
        
        .founder-cta {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .founder-cta .button-text-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .founder-cta .button-dott {
            width: 6px;
            height: 6px;
            background: #FF6B35;
            border-radius: 50%;
        }
        
        .founder-cta:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }
        
        .hero-footer {
            position: absolute;
            bottom: 30px;
            left: 40px;
            font-size: 12px;
            opacity: 0.6;
            z-index: 3;
            color: white;
        }

        /* Trusted Partners Section */
        .trusted-partners {
            background: #000000;
            padding: 40px 0;
        }
        
        .partners-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .partners-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }
        
        .partners-year {
            margin-left: auto;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .partners-logos {
            display: flex;
            gap: 80px;
            align-items: center;
            opacity: 0.6;
        }
        
        .partner-logo {
            font-size: 20px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Client Partnership Testimonials Section */
        .testimonials-section {
            background: #000000;
            padding: 80px 0;
        }
        
        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .testimonials-title {
            font-size: 2.5rem;
            font-weight: 400;
            color: white;
            margin: 0;
            font-family: 'Manrope', sans-serif;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .testimonial-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 2px 20px rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .testimonial-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.12);
        }
        
        .testimonial-stars {
            margin-bottom: 20px;
            display: flex;
            gap: 4px;
        }
        
        .testimonial-stars .star {
            color: #FFD700;
            font-size: 16px;
            line-height: 1;
        }
        
        .testimonial-quote {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 30px 0;
            font-style: normal;
            flex-grow: 1;
            font-weight: 400;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: auto;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            border: 2px solid #f0f0f0;
            flex-shrink: 0;
        }
        
        .author-info {
            flex-grow: 1;
        }
        
        .author-title {
            font-size: 14px;
            font-weight: 600;
            color: white;
            margin-bottom: 4px;
        }
        
        .author-company {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
        }

        /* Project Investment Framework Section */
        .investment-framework {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .investment-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .investment-title {
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 400;
            color: white;
            margin: 0 0 30px 0;
            font-family: 'Manrope', sans-serif;
        }
        
        .investment-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .investment-tiers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .investment-tier {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px 35px;
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .investment-tier:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 107, 53, 0.3);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .investment-tier.popular {
            border-color: rgba(255, 107, 53, 0.4);
            background: rgba(255, 255, 255, 0.08);
            transform: scale(1.05);
        }
        
        .investment-tier.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #FF6B35;
            color: white;
            padding: 8px 24px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .tier-header {
            margin-bottom: 30px;
        }
        
        .tier-name {
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
            margin: 0 0 15px 0;
            font-family: 'Manrope', sans-serif;
        }
        
        .tier-description {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
            margin: 0;
        }
        
        .tier-pricing {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .price-range {
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
        }
        
        .price-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: lowercase;
            letter-spacing: 0.5px;
        }
        
        .tier-features {
            flex-grow: 1;
            margin-bottom: 40px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 16px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .feature-dot {
            width: 8px;
            height: 8px;
            background: #FF6B35;
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .tier-cta {
            margin-top: auto;
        }
        
        .tier-button {
            display: block;
            width: 100%;
            padding: 16px 24px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .tier-button.primary {
            background: #FF6B35;
            color: white;
            border-color: #FF6B35;
        }
        
        .tier-button.primary:hover {
            background: #e55a2b;
            border-color: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }
        
        .tier-button.secondary {
            background: transparent;
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .tier-button.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* About Us Section */
        .about-section {
            background: #000000;
            padding: 80px 0;
        }
        
        .about-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 60px;
        }
        
        .about-title {
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1.2;
            color: white;
            max-width: 600px;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 80px;
            align-items: start;
        }
        
        .about-image {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop');
            background-size: cover;
            background-position: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .stat-item {
            text-align: left;
        }
        
        .stat-number {
            font-size: 4rem;
            font-weight: 300;
            color: white;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        .stat-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* Our Work Section */
        .our-work {
            background: #000000;
            padding: 80px 0;
        }
        
        .work-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: clamp(3rem, 6vw, 5.5rem);
            font-weight: 300;
            color: white !important;
            line-height: 1.1;
            letter-spacing: -0.02em;
            font-family: 'Inter', sans-serif;
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .work-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s;
            box-shadow: 0 5px 25px rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .work-item:hover {
            transform: translateY(-8px);
        }
        
        .work-image {
            width: 100%;
            height: 280px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: end;
            padding: 20px;
            color: white;
            font-size: 18px;
            font-weight: 600;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        
        .work-item:nth-child(1) .work-image {
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=600&h=400&fit=crop');
        }
        
        .work-item:nth-child(2) .work-image {
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?w=600&h=400&fit=crop');
        }
        
        .work-item:nth-child(3) .work-image {
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=600&h=400&fit=crop');
        }
        
        .work-item:nth-child(4) .work-image {
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=600&h=400&fit=crop');
        }
        
        .work-content {
            padding: 25px;
        }
        
        .work-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: white;
        }
        
        .work-meta {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
        }
        
        .work-cta {
            background: #FF6B35;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .work-cta:hover {
            background: #e55a2b;
            transform: translateY(-2px);
        }

        /* Apple-Inspired Strategic Results Section */
        .our-value {
            min-height: 100vh;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 5% 80px;
        }

        /* Animated Background Elements */
        .bg-orbs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 20s infinite ease-in-out;
        }

        .orb:nth-child(1) {
            width: 400px;
            height: 400px;
            background: linear-gradient(45deg, #FF6B35, #FF8E53);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .orb:nth-child(2) {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #007AFF, #5AC8FA);
            top: 50%;
            right: -150px;
            animation-delay: -7s;
        }

        .orb:nth-child(3) {
            width: 500px;
            height: 500px;
            background: linear-gradient(45deg, #34C759, #30D158);
            bottom: -250px;
            left: 20%;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(100px, -100px) rotate(120deg); }
            66% { transform: translate(-50px, 100px) rotate(240deg); }
        }

        .value-header {
            text-align: center;
            margin-bottom: 100px;
            opacity: 0;
            animation: slideUp 1.2s ease-out 0.3s forwards;
        }

        .value-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -0.02em;
        }

        .value-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .value-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 120px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 60px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: slideUp 1.2s ease-out 0.6s forwards;
        }

        .value-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 107, 53, 0.05) 0%, 
                rgba(0, 123, 255, 0.03) 50%, 
                rgba(52, 199, 89, 0.05) 100%);
            z-index: -1;
        }

        .value-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.8;
            font-weight: 400;
        }

        .value-projects {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .value-project {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            cursor: pointer;
            opacity: 0;
            animation: slideUp 1.2s ease-out calc(0.9s + var(--delay, 0s)) forwards;
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .value-project:nth-child(1) { --delay: 0s; }
        .value-project:nth-child(2) { --delay: 0.2s; }
        .value-project:nth-child(3) { --delay: 0.4s; }
        .value-project:nth-child(4) { --delay: 0.6s; }

        .value-project:hover {
            transform: translateY(-20px) scale(1.02);
            border-color: rgba(255, 107, 53, 0.3);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 107, 53, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .value-project-image {
            width: 100%;
            height: 240px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .value-project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.4) 0%, 
                rgba(0, 0, 0, 0.2) 50%, 
                rgba(0, 0, 0, 0.6) 100%);
            z-index: 1;
        }

        .value-project-image span {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .value-project:nth-child(1) .value-project-image {
            background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=400&h=300&fit=crop');
        }
        
        .value-project:nth-child(2) .value-project-image {
            background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=400&h=300&fit=crop');
        }
        
        .value-project:nth-child(3) .value-project-image {
            background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=400&h=300&fit=crop');
        }
        
        .value-project:nth-child(4) .value-project-image {
            background-image: url('https://images.unsplash.com/photo-1611224923853-80b023f02d71?w=400&h=300&fit=crop');
        }

        .value-project-content {
            padding: 30px;
            position: relative;
            z-index: 2;
        }
        
        .value-project-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 15px;
            letter-spacing: -0.01em;
        }
        
        .value-project:visited .value-project-title,
        .value-project:link .value-project-title {
            color: #ffffff;
        }
        
        .value-project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }
        
        .value-project:visited .value-project-meta,
        .value-project:link .value-project-meta {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .value-project-meta .status {
            color: #FF6B35;
            font-weight: 600;
            padding: 4px 12px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }
        
        .value-project:visited .value-project-meta .status,
        .value-project:link .value-project-meta .status {
            color: #FF6B35;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services Section - Strategic Growth Accelerators */
        .services {
            background: #000;
            color: white;
            padding: 120px 0;
        }
        
        .services .section-title {
            color: white;
            font-size: clamp(3.5rem, 8vw, 6rem);
            margin: 0;
        }
        
        .services-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 80px;
        }
        
        .services-container {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 80px;
            align-items: start;
        }
        
        .services-image {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=400&h=500&fit=crop');
            background-size: cover;
            background-position: center;
        }

        .services-content {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .service-item {
            padding: 30px 0;
            border-bottom: 1px solid #333;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 25px;
        }

        .service-thumbnail {
            width: 100px;
            height: 120px;
            border-radius: 12px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            flex-shrink: 0;
            transition: all 0.4s ease;
            opacity: 0.7;
            align-self: flex-start;
        }

        .service-item:hover .service-thumbnail {
            opacity: 1;
            transform: scale(1.05);
        }

        .service-item::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 0;
            height: 2px;
            background: #FF6B35;
            transition: width 0.4s ease;
        }
        
        .service-item:hover::before {
            width: 100%;
        }
        
        .service-item:last-child {
            border-bottom: none;
        }

        /* Individual service thumbnail images */
        .service-item:nth-child(1) .service-thumbnail {
            background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=160&h=160&fit=crop&q=80');
        }
        
        .service-item:nth-child(2) .service-thumbnail {
            background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=160&h=160&fit=crop&q=80');
        }
        
        .service-item:nth-child(3) .service-thumbnail {
            background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=160&h=160&fit=crop&q=80');
        }
        
        .service-item:nth-child(4) .service-thumbnail {
            background-image: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=160&h=160&fit=crop&q=80');
        }
        
        .service-item:nth-child(5) .service-thumbnail {
            background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=160&h=160&fit=crop&q=80');
        }

        .service-item:nth-child(6) .service-thumbnail {
            background-image: url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?w=160&h=160&fit=crop&q=80');
        }
        
        .service-text-content {
            flex: 1;
        }

        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .service-title {
            font-size: clamp(3.5rem, 8vw, 5.5rem);
            font-weight: 300;
            color: #444;
            transition: all 0.4s ease;
            position: relative;
            line-height: 1.1;
            font-family: 'Inter', sans-serif;
            margin-bottom: 15px;
        }
        
        .service-item:hover .service-title {
            color: white;
            transform: translateX(10px);
        }
        
        .service-number {
            font-size: 14px;
            color: #FF6B35;
            transition: color 0.4s ease;
            opacity: 0.8;
        }
        
        .service-item:hover .service-number {
            color: #FF6B35;
        }
        
        .service-description {
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            max-width: 90%;
            font-size: 1.1rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .service-cta {
            margin-top: 15px;
            background: rgba(255, 107, 53, 0.1);
            color: #FF6B35;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(10px);
        }
        
        .service-cta:hover {
            background: #FF6B35;
            color: white;
            transform: translateY(-2px);
        }
        
        .service-item:hover .service-description {
            max-height: 200px;
            margin-bottom: 20px;
        }
        
        .service-item:hover .service-cta {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-content {
            position: relative;
            z-index: 2;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .services-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .service-item {
                gap: 15px;
                padding: 20px 0;
            }
            
            .service-thumbnail {
                width: 70px;
                height: 90px;
            }
            
            .service-title {
                font-size: 1.8rem;
                line-height: 1.2;
            }
            
            .service-description {
                font-size: 0.9rem;
                max-width: 100%;
            }
            
            .service-cta {
                padding: 8px 16px;
                font-size: 12px;
            }
            
            .service-number {
                font-size: 12px;
            }
        }

        /* Navigation CTA Button */
        .nav-cta {
            background: #000;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }
        
        .button-text-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .button-dott {
            width: 8px;
            height: 8px;
            background: #FF6B35;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .nav-cta:hover .button-dott {
            transform: scale(1.2);
        }
        
        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .value-content {
                padding: 40px;
                gap: 40px;
                margin-bottom: 80px;
            }
            
            .value-projects {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .our-value {
                padding: 80px 5% 60px;
            }
            
            .value-content {
                grid-template-columns: 1fr;
                padding: 30px;
                gap: 30px;
                margin-bottom: 60px;
            }
            
            .value-projects {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .value-project:hover {
                transform: translateY(-10px) scale(1.01);
            }

            .value-header {
                margin-bottom: 60px;
            }

            .hero h1 {
                font-size: clamp(4rem, 12vw, 8rem);
            }

            .founder-card {
                position: absolute !important;
                bottom: 20px !important;
                right: 20px !important;
                max-width: 320px;
                padding: 4px;
                gap: 15px;
            }
            
            .founder-avatar {
                width: 60px;
                height: 60px;
            }
            
            .founder-info h4 {
                font-size: 14px;
            }
            
            .founder-info p {
                font-size: 12px;
            }
            
            .founder-cta {
                padding: 8px 16px;
                font-size: 12px;
            }

            .hero-main {
                display: block;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .work-grid {
                grid-template-columns: 1fr;
            }

            .services-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .testimonials-section {
                padding: 60px 0;
            }
            
            .testimonials-title {
                font-size: 2rem;
            }
            
            .testimonial-item {
                padding: 30px 25px;
            }

            .investment-framework {
                padding: 80px 0;
            }
            
            .investment-tiers {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .investment-tier.popular {
                transform: none;
            }
            
            .investment-tier.popular:hover {
                transform: translateY(-10px);
            }
            
            .investment-title {
                font-size: 2.5rem;
            }
            
            .investment-header {
                margin-bottom: 60px;
            }
            
            .tier-pricing {
                margin-bottom: 30px;
            }
            
            .tier-features {
                margin-bottom: 30px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .investment-tiers {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .investment-tier:nth-child(3) {
                grid-column: 1 / -1;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        /* PHP implementation polish without changing the original design language */
        body.home-page .container {
            max-width: 1280px;
            padding-left: 24px;
            padding-right: 24px;
        }

        body.home-page .hero {
            min-height: min(980px, 100svh);
            padding: 18px;
            border-radius: 24px;
        }

        body.home-page .hero-background-video {
            top: 18px;
            left: 18px;
            width: calc(100% - 36px);
            height: calc(100% - 36px);
            border-radius: 24px;
        }

        body.home-page .hero-content {
            padding: 48px 56px 132px;
            justify-content: center;
        }

        body.home-page .hero-text {
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
        }

        body.home-page .hero h1 {
            max-width: 11.5ch;
            font-size: clamp(3.8rem, 6.7vw, 6.5rem);
            line-height: 0.9;
            letter-spacing: -0.045em;
            margin-bottom: 20px;
            text-wrap: initial;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.56);
            text-stroke: 1px rgba(255, 255, 255, 0.56);
            margin-left: auto;
            margin-right: auto;
        }

        body.home-page .hero-line {
            display: block;
            white-space: nowrap;
        }

        body.home-page .hero-line + .hero-line {
            margin-top: 0.02em;
        }

        body.home-page .hero h1 .highlight {
            -webkit-text-stroke: 0.9px rgba(255, 107, 53, 0.78);
            text-stroke: 0.9px rgba(255, 107, 53, 0.78);
        }

        body.home-page .hero-subtitle {
            max-width: 620px;
            font-size: 1rem;
            line-height: 1.6;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            padding: 18px 28px;
            background: linear-gradient(180deg, rgba(93, 88, 171, 0.24) 0%, rgba(59, 46, 120, 0.22) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            box-shadow: 0 18px 48px rgba(10, 8, 30, 0.16);
        }

        body.home-page .founder-card {
            width: min(360px, calc(100% - 48px));
        }

        body.home-page .hero-logo {
            top: 22px;
            left: 26px;
        }

        body.home-page .hero-logo img {
            height: 78px;
            opacity: 1;
            filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
        }

        body.home-page .hero-logo:hover img {
            filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.34));
            transform: scale(1.02);
        }

        body.home-page .trusted-partners,
        body.home-page .testimonials-section,
        body.home-page .about-section,
        body.home-page .our-work,
        body.home-page .services,
        body.home-page .investment-framework {
            padding-top: 88px;
            padding-bottom: 88px;
        }

        body.home-page .partners-logos {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 18px;
        }

        body.home-page .partner-logo {
            min-height: 72px;
            display: grid;
            place-items: center;
            padding: 18px 16px;
            text-align: center;
            font-size: clamp(0.95rem, 1.4vw, 1.1rem);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 18px;
        }

        body.home-page .testimonials-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        body.home-page .testimonial-item {
            min-height: 100%;
            padding: 32px 24px;
        }

        body.home-page .testimonial-quote {
            font-size: 14px;
        }

        body.home-page .about-container {
            grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
            gap: 48px;
        }

        body.home-page .about-image {
            height: 360px;
        }

        body.home-page .stats-grid {
            gap: 36px 32px;
            align-content: start;
        }

        body.home-page .stat-number {
            font-size: clamp(2.6rem, 4vw, 4rem);
        }

        body.home-page .work-header,
        body.home-page .services-header {
            align-items: flex-end;
        }

        body.home-page .work-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        body.home-page .work-content {
            display: grid;
            gap: 12px;
        }

        body.home-page .work-meta {
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        body.home-page .our-value {
            min-height: auto;
            padding: 110px 0 90px;
        }

        body.home-page .our-value .container {
            position: relative;
            z-index: 2;
        }

        body.home-page .value-header {
            margin-bottom: 72px;
        }

        body.home-page .value-content {
            gap: 40px;
            margin-bottom: 72px;
            padding: 42px;
        }

        body.home-page .value-projects {
            gap: 24px;
        }

        body.home-page .services {
            padding-top: 104px;
            padding-bottom: 104px;
        }

        body.home-page .services-container {
            grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
            gap: 48px;
        }

        body.home-page .services-image {
            height: 430px;
            position: sticky;
            top: 120px;
        }

        body.home-page .service-title {
            font-size: clamp(1.75rem, 3.8vw, 3rem);
            line-height: 1.08;
            color: rgba(255, 255, 255, 0.34);
        }

        body.home-page .service-item.active .service-title,
        body.home-page .service-item:hover .service-title {
            color: #ffffff;
        }

        body.home-page .service-description {
            max-width: 42rem;
        }

        body.home-page .investment-framework .container {
            max-width: 1280px;
        }

        body.home-page .investment-header {
            margin-bottom: 64px;
        }

        body.home-page .investment-tiers {
            align-items: stretch;
            gap: 28px;
        }

        body.home-page .investment-tier {
            padding: 36px 28px;
        }

        @media (max-width: 1199px) {
            body.home-page .hero-content {
                padding: 44px 40px 120px;
            }

            body.home-page .hero h1 {
                max-width: 10.8ch;
                font-size: clamp(3.45rem, 7.8vw, 5.6rem);
            }

            body.home-page .hero-subtitle {
                max-width: 560px;
            }

            body.home-page .partners-logos {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            body.home-page .testimonials-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            body.home-page .about-container,
            body.home-page .services-container,
            body.home-page .value-content {
                grid-template-columns: 1fr;
            }

            body.home-page .services-image {
                position: relative;
                top: auto;
                max-width: 360px;
            }
        }

        @media (max-width: 767px) {
            body.home-page .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            body.home-page .hero {
                min-height: 720px;
                padding: 14px;
                border-radius: 20px;
            }

            body.home-page .hero-background-video {
                top: 14px;
                left: 14px;
                width: calc(100% - 28px);
                height: calc(100% - 28px);
                border-radius: 20px;
            }

            body.home-page .hero-logo {
                top: 16px;
                left: 16px;
            }

            body.home-page .hero-logo img {
                height: 58px;
            }

            body.home-page .hero-hamburger {
                top: 16px;
                right: 16px;
            }

            body.home-page .hero-content {
                min-height: auto;
                align-items: flex-end;
                padding: 110px 24px 148px;
            }

            body.home-page .hero h1 {
                max-width: 100%;
                font-size: clamp(2.65rem, 11.2vw, 4rem);
                line-height: 0.92;
                margin-bottom: 14px;
                letter-spacing: -0.04em;
                -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.55);
                text-stroke: 0.8px rgba(255, 255, 255, 0.55);
            }

            body.home-page .hero-line {
                white-space: normal;
            }

            body.home-page .hero-subtitle {
                max-width: 18rem;
                font-size: 0.88rem;
                line-height: 1.5;
                padding: 14px 16px;
            }

            body.home-page .founder-card {
                right: 16px !important;
                bottom: 16px !important;
                width: min(250px, calc(100% - 32px));
                gap: 10px;
                padding: 4px 10px 4px 4px;
                border-radius: 16px;
            }

            body.home-page .founder-avatar {
                width: 48px;
                height: 48px;
            }

            body.home-page .founder-info h4 {
                font-size: 13px;
                margin-bottom: 2px;
            }

            body.home-page .founder-info p {
                font-size: 11px;
                margin-bottom: 8px;
            }

            body.home-page .founder-cta {
                padding: 6px 12px;
                font-size: 11px;
            }

            body.home-page .hero-footer {
                left: 20px;
                bottom: 20px;
                font-size: 10px;
                max-width: 120px;
                line-height: 1.3;
            }

            body.home-page .trusted-partners,
            body.home-page .testimonials-section,
            body.home-page .about-section,
            body.home-page .our-work,
            body.home-page .services,
            body.home-page .investment-framework {
                padding-top: 64px;
                padding-bottom: 64px;
            }

            body.home-page .partners-header,
            body.home-page .work-header,
            body.home-page .services-header,
            body.home-page .about-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                margin-bottom: 36px;
            }

            body.home-page .partners-logos {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            body.home-page .partner-logo {
                min-height: 60px;
                font-size: 0.85rem;
                padding: 14px 10px;
            }

            body.home-page .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            body.home-page .testimonials-title,
            body.home-page .about-title,
            body.home-page .investment-title,
            body.home-page .section-title {
                font-size: clamp(2.2rem, 11vw, 3rem);
                line-height: 1.02;
            }

            body.home-page .testimonial-item,
            body.home-page .value-content,
            body.home-page .investment-tier {
                padding: 24px 20px;
            }

            body.home-page .about-image {
                max-width: 240px;
                height: 300px;
            }

            body.home-page .stats-grid,
            body.home-page .work-grid,
            body.home-page .value-projects {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            body.home-page .work-image,
            body.home-page .value-project-image,
            body.home-page .services-image {
                height: 220px;
            }

            body.home-page .value-header,
            body.home-page .investment-header {
                margin-bottom: 40px;
            }

            body.home-page .our-value {
                padding-top: 72px;
                padding-bottom: 64px;
            }

            body.home-page .services-container {
                gap: 28px;
            }

            body.home-page .service-item {
                display: grid;
                grid-template-columns: 72px 1fr;
                gap: 14px;
                align-items: start;
                padding: 18px 0;
            }

            body.home-page .service-thumbnail {
                width: 72px;
                height: 88px;
                border-radius: 10px;
            }

            body.home-page .service-header {
                align-items: flex-start;
                gap: 12px;
            }

            body.home-page .service-title {
                font-size: 1.35rem;
                margin-bottom: 10px;
            }

            body.home-page .service-description {
                max-width: 100%;
                max-height: none;
                margin-top: 10px;
                margin-bottom: 12px;
                font-size: 0.95rem;
                opacity: 1;
            }

            body.home-page .service-cta {
                opacity: 1;
                transform: none;
            }

            body.home-page .nav-cta {
                padding: 10px 18px;
                font-size: 13px;
            }

            body.home-page .investment-tiers {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
