        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            max-width: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            touch-action: pan-y pinch-zoom;
            -webkit-overflow-scrolling: touch;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
            background-attachment: scroll;
            margin: 0;
            overflow-x: hidden;
            max-width: 100vw;
            position: relative;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            touch-action: pan-y pinch-zoom;
            -webkit-overflow-scrolling: touch;
        }

        /* Performance optimizations */
        * {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        /* ========== SCROLL ANIMATIONS ========== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays for children */
        .stagger-1 {
            transition-delay: 0.1s;
        }

        .stagger-2 {
            transition-delay: 0.2s;
        }

        .stagger-3 {
            transition-delay: 0.3s;
        }

        .stagger-4 {
            transition-delay: 0.4s;
        }

        .stagger-5 {
            transition-delay: 0.5s;
        }

        /* Reduced motion preference */
        @media (prefers-reduced-motion: reduce) {
            .animate-on-scroll {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }


        /* ========== MOBILE NAVIGATION SYSTEM ========== */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 10002;
            position: relative;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Hamburger to X animation */
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

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

        /* Mobile Nav Panel */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 10001;
            transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            padding: 100px 30px 40px;
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-content {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-nav-link {
            display: block;
            padding: 16px 20px;
            font-size: 1.1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid transparent;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link:active {
            background: rgba(125, 211, 192, 0.1);
            border-color: rgba(125, 211, 192, 0.2);
            color: #7dd3c0;
            transform: translateX(8px);
        }

        .mobile-nav-cta {
            display: block;
            margin-top: 20px;
            padding: 18px 24px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #0a0a0a;
            text-decoration: none;
            text-align: center;
            background: linear-gradient(135deg, #7dd3c0 0%, #5fb8a6 100%);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .mobile-nav-cta:hover,
        .mobile-nav-cta:active {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(125, 211, 192, 0.4);
        }

        /* Mobile overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        /* Show hamburger only on mobile */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .header-nav {
                display: none !important;
            }

            .header-cta {
                display: none !important;
            }
        }

        /* ========== HERO SECTION ========== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            height: 100vh;
            width: 100%;
            max-width: 100vw;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            z-index: 10;
            margin: 0;
            padding: 0;
            touch-action: pan-y pinch-zoom;
            -webkit-overflow-scrolling: touch;
        }


        /* Background - Seamless scroll */
        .hero-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 1;
            overflow: hidden;
            background: #0a0a0a;
        }

        .hero-bg img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            will-change: opacity;
        }

        .hero-bg img.active {
            opacity: 1;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.15);
            pointer-events: none;
            z-index: 1;
            transition: background 0.6s ease;
        }

        /* Hero Content - Seamless scroll */
        .hero-content {
            position: relative;
            width: 100%;
            max-width: 100vw;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            text-align: center;
            z-index: 50;
            padding-top: 25vh;
            padding-bottom: 10vh;
            padding-left: 1rem;
            padding-right: 1rem;
            box-sizing: border-box;
            pointer-events: none;
        }

        .hero-text {
            position: relative;
            z-index: 1;
            max-width: 550px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform: scale(0.85);
            pointer-events: auto;
        }

        .hero-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .hero-title .normal {
            font-weight: 600;
            color: #fff;
        }

        .hero-title .italic {
            font-style: italic;
            font-weight: 400;
            color: #f0f0f0;
        }

        .hero-title .handwritten {
            font-family: 'Caveat', cursive;
            font-weight: 700;
            color: #7dd3c0;
            font-size: 1.15em;
            display: inline-block;
            transform: rotate(-2deg);
            animation: handwrittenReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
        }

        .hero-subtitle {
            font-size: 0.85rem;
            color: #e8e8e8;
            line-height: 1.5;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }

        .hero-buttons {
            display: flex;
            gap: 0.8rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.8rem 1.7rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.92rem;
            transition: all 0.2s ease;
            display: inline-block;
            letter-spacing: -0.01em;
        }

        .btn-primary {
            background: #2b2b2b;
            color: #fff;
        }

        .btn-primary:hover {
            background: #1a1a1a;
            transform: translateY(-2px);
        }

        /* Trust Section - Seamless scroll */
        .trust-section {
            position: relative;
            padding: 2rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            background: transparent;
            flex-wrap: wrap;
            z-index: 100;
            margin-top: -5rem;
        }

        .trust-text {
            font-size: 0.8rem;
            color: #888;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        .trust-logos {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            flex-wrap: wrap;
            flex: 1;
            justify-content: flex-end;
        }

        .trust-logo {
            width: 120px;
            height: 40px;
            object-fit: contain;
            object-position: center;
            opacity: 0;
            transform: scale(0.1) rotate(360deg) translateY(100px);
            transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
            filter: grayscale(100%) brightness(0) invert(1) blur(20px);
        }

        .trust-section.visible .trust-logo {
            opacity: 0.35;
            transform: scale(1) rotate(0deg) translateY(0);
            filter: grayscale(100%) brightness(0) invert(1) blur(0px);
        }

        .trust-section.exploded .trust-logo {
            opacity: 0;
            transform: scale(3) rotate(720deg) translateY(-200px);
            filter: grayscale(100%) brightness(0) invert(1) blur(30px);
        }

        .trust-section.visible .trust-logo:nth-child(1) {
            transition-delay: 0.1s;
        }

        .trust-section.visible .trust-logo:nth-child(2) {
            transition-delay: 0.2s;
        }

        .trust-section.visible .trust-logo:nth-child(3) {
            transition-delay: 0.3s;
        }

        .trust-section.visible .trust-logo:nth-child(4) {
            transition-delay: 0.4s;
        }

        .trust-section.exploded .trust-logo:nth-child(1) {
            transition-delay: 0s;
        }

        .trust-section.exploded .trust-logo:nth-child(2) {
            transition-delay: 0.05s;
        }

        .trust-section.exploded .trust-logo:nth-child(3) {
            transition-delay: 0.1s;
        }

        .trust-section.exploded .trust-logo:nth-child(4) {
            transition-delay: 0.15s;
        }

        .trust-logo:hover {
            opacity: 0.6;
            transform: scale(1.05) translateY(-2px) rotate(0deg);
        }


        /* Elegant floating particles */
        .morph-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 3;
            pointer-events: none;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .morph-particles.active {
            opacity: 1;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(125, 211, 192, 0.5);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(125, 211, 192, 0.3);
        }

        /* Smooth liquid morph transition */
        .transition-wave {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 4;
            pointer-events: none;
            opacity: 0;
            background: linear-gradient(135deg,
                    rgba(125, 211, 192, 0.10) 0%,
                    rgba(100, 180, 180, 0.12) 25%,
                    rgba(60, 140, 160, 0.14) 50%,
                    rgba(40, 80, 120, 0.16) 75%,
                    rgba(10, 20, 40, 0.18) 100%);
            backdrop-filter: blur(0px);
            transition: opacity 0.6s ease;
        }

        .transition-wave.active {
            opacity: 0.6;
            backdrop-filter: blur(10px);
        }

        /* Smooth cinematic fade transition */
        .hero-section.scrolled .hero-bg {
            transform: scale(1.1);
            filter: blur(30px) brightness(0.6);
            opacity: 0;
            visibility: hidden;
            transition: all 1.5s ease-in-out;
        }

        .hero-section.scrolled .hero-content {
            opacity: 0;
            transform: translateY(-30px);
            filter: blur(10px);
            pointer-events: none;
            transition: all 1.2s ease-in-out;
        }

        .hero-section.scrolled .trust-section {
            opacity: 0;
            transform: translateY(50px);
            filter: blur(5px);
            transition: all 1s ease-in-out;
        }

        /* ========== MINIMAL STATS BAR ========== */
        .stats-section {
            position: relative;
            width: 100%;
            padding: 3rem 2rem;
            background: rgba(15, 15, 15, 0.6);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(125, 211, 192, 0.08);
            border-bottom: 1px solid rgba(125, 211, 192, 0.08);
            overflow: hidden;
        }

        .stats-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 3rem;
            z-index: 1;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .stat-number {
            font-size: 2rem;
            font-weight: 600;
            color: rgba(125, 211, 192, 0.95);
            line-height: 1;
            margin-bottom: 0.5rem;
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
            letter-spacing: -0.03em;
        }

        .stat-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.02em;
            line-height: 1.4;
            max-width: 120px;
        }

        /* Hide icons completely */
        .stat-icon {
            display: none;
        }

        /* Stats Mobile Responsive */
        @media (max-width: 968px) {
            .stats-container {
                gap: 2rem;
            }

            .stat-number {
                font-size: 1.75rem;
            }

            .stat-label {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 768px) {
            .stats-section {
                padding: 2.5rem 1.5rem;
            }

            .stats-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.65rem;
                max-width: 100px;
            }
        }

        @media (max-width: 480px) {
            .stats-section {
                padding: 2rem 1rem;
            }

            .stats-container {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 1.35rem;
            }

            .stat-label {
                font-size: 0.6rem;
            }
        }

        /* ========== ABOUT SECTION - PREMIUM REDESIGN ========== */
        .about-section {
            position: relative;
            min-height: 100vh;
            z-index: 35;
            margin-top: 0;
            margin-bottom: 0;
            background: transparent;
            overflow: hidden;
            padding: 8rem 0;
        }


        /* Main Container */
        .about-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5rem;
        }

        /* Hero Section */
        .about-hero {
            text-align: center;
            margin-bottom: 8rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-section.active .about-hero {
            opacity: 1;
            transform: translateY(0);
        }

        .about-label {
            font-family: 'Caveat', cursive;
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            color: rgba(125, 211, 192, 0.8);
            margin-bottom: 2rem;
            font-weight: 500;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
        }

        .about-section.active .about-label {
            opacity: 1;
            transform: translateY(0);
        }

        .about-hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 300;
            line-height: 1.1;
            color: #fff;
            max-width: 1000px;
            margin: 0 auto;
            letter-spacing: -0.03em;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
        }

        .about-section.active .about-hero-title {
            opacity: 1;
            transform: translateY(0);
        }

        .gradient-text {
            background: linear-gradient(135deg, #7dd3c0 0%, #5fb8a5 50%, #7dd3c0 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
            font-weight: 400;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* Main Grid */
        .about-main-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 6rem;
            align-items: start;
        }

        /* Story Section */
        .about-story {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
        }

        .about-section.active .about-story {
            opacity: 1;
            transform: translateX(0);
        }

        .story-content {
            margin-bottom: 4rem;
        }

        .story-lead {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 400;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
        }

        .about-section.active .story-lead {
            opacity: 1;
            transform: translateY(0);
        }

        .story-body {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s;
        }

        .about-section.active .story-body {
            opacity: 1;
            transform: translateY(0);
        }

        .highlight-accent {
            color: #7dd3c0;
            font-weight: 500;
            position: relative;
        }

        .highlight-accent::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 2px;
            height: 30%;
            background: rgba(125, 211, 192, 0.2);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-section.active .highlight-accent::after {
            transform: scaleX(1);
        }

        /* Services Grid */
        .about-services-grid {
            display: grid;
            gap: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1s;
        }

        .about-section.active .about-services-grid {
            opacity: 1;
            transform: translateY(0);
        }

        .about-service-card {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(125, 211, 192, 0.1);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            opacity: 0;
            transform: translateX(-20px);
        }

        .about-section.active .about-service-card {
            opacity: 1;
            transform: translateX(0);
        }

        .about-section.active .about-service-card:nth-child(1) {
            transition-delay: 1.2s;
        }

        .about-section.active .about-service-card:nth-child(2) {
            transition-delay: 1.4s;
        }

        .about-section.active .about-service-card:nth-child(3) {
            transition-delay: 1.6s;
        }

        .about-service-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(125, 211, 192, 0.3);
            transform: translateX(8px);
            box-shadow: 0 10px 40px rgba(125, 211, 192, 0.1);
        }

        .service-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            color: #7dd3c0;
            background: rgba(125, 211, 192, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(125, 211, 192, 0.2);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-service-card:hover .service-icon {
            background: rgba(125, 211, 192, 0.2);
            border-color: rgba(125, 211, 192, 0.4);
            transform: scale(1.1) rotate(5deg);
        }

        .service-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .about-service-card:hover .service-content h3 {
            color: #7dd3c0;
        }

        .service-content p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin: 0;
        }

        /* Team Section */
        .about-team {
            opacity: 0;
            transform: translateX(30px);
            transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s;
        }

        .about-section.active .about-team {
            opacity: 1;
            transform: translateX(0);
        }

        .team-label {
            font-family: 'Caveat', cursive;
            font-size: 1rem;
            letter-spacing: 0.1em;
            color: rgba(125, 211, 192, 0.8);
            margin-bottom: 2.5rem;
            font-weight: 500;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s;
        }

        .about-section.active .team-label {
            opacity: 1;
            transform: translateY(0);
        }

        .team-grid {
            display: grid;
            gap: 2rem;
        }

        .team-member-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(125, 211, 192, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            transform: translateY(30px);
        }

        .about-section.active .team-member-card {
            opacity: 1;
            transform: translateY(0);
        }

        .about-section.active .team-member-card:nth-child(1) {
            transition-delay: 1.1s;
        }

        .about-section.active .team-member-card:nth-child(2) {
            transition-delay: 1.3s;
        }

        .team-member-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(125, 211, 192, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(125, 211, 192, 0.15);
        }

        .member-photo-container {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .member-photo {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(125, 211, 192, 0.2);
            margin: 0 auto;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .team-member-card:hover .member-photo {
            border-color: rgba(125, 211, 192, 0.5);
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(125, 211, 192, 0.3);
        }

        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .team-member-card:hover .member-photo img {
            transform: scale(1.1);
        }

        .member-photo-overlay {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(circle, transparent 60%, rgba(125, 211, 192, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-member-card:hover .member-photo-overlay {
            opacity: 1;
        }

        .member-info {
            text-align: center;
        }

        .member-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.3rem;
        }

        .member-role {
            font-family: 'Caveat', cursive;
            font-size: 1.1rem;
            color: #7dd3c0;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .member-quote {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-main-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-hero {
                margin-bottom: 5rem;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 5rem 0;
            }

            .about-container {
                padding: 0 1.5rem;
            }

            .about-hero-title {
                font-size: 2rem;
            }

            .story-lead {
                font-size: 1.1rem;
            }

            .story-body {
                font-size: 1rem;
            }

            .about-service-card {
                padding: 1.5rem;
            }

            .team-member-card {
                padding: 1.5rem;
            }
        }

        /* Organic Background Elements */

        .organic-branches {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.6;
        }

        .branch {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawBranch 2s ease-out forwards;
        }

        .branch-left {
            animation-delay: 0.5s;
        }

        .branch-right {
            animation-delay: 0.8s;
        }

        .branch-center {
            animation-delay: 1.1s;
        }

        @keyframes drawBranch {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* Floating Spheres */
        .organic-spheres {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .sphere {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(125, 211, 192, 0.3), rgba(125, 211, 192, 0.1));
            filter: blur(1px);
            opacity: 0;
            animation: sphereFloat 8s ease-in-out infinite;
        }

        .about-section.active .sphere {
            opacity: 0.4;
        }

        .sphere-1 {
            width: 80px;
            height: 80px;
            left: 15%;
            top: 20%;
            animation-delay: 0s;
        }

        .sphere-2 {
            width: 120px;
            height: 120px;
            left: 25%;
            top: 60%;
            animation-delay: 1s;
        }

        .sphere-3 {
            width: 60px;
            height: 60px;
            left: 70%;
            top: 30%;
            animation-delay: 2s;
        }

        .sphere-4 {
            width: 100px;
            height: 100px;
            left: 80%;
            top: 70%;
            animation-delay: 1.5s;
        }

        .sphere-5 {
            width: 90px;
            height: 90px;
            left: 10%;
            top: 80%;
            animation-delay: 0.5s;
        }

        .sphere-6 {
            width: 70px;
            height: 70px;
            left: 50%;
            top: 15%;
            animation-delay: 2.5s;
        }

        .sphere-7 {
            width: 110px;
            height: 110px;
            left: 60%;
            top: 50%;
            animation-delay: 1.2s;
        }

        .sphere-8 {
            width: 85px;
            height: 85px;
            left: 35%;
            top: 40%;
            animation-delay: 0.8s;
        }

        @keyframes sphereFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(20px, -30px) scale(1.1);
            }

            50% {
                transform: translate(-15px, -20px) scale(0.95);
            }

            75% {
                transform: translate(10px, 15px) scale(1.05);
            }
        }


        /* About Content */
        .about-content {
            position: relative;
            z-index: 100;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 5rem;
            max-width: 1400px;
            margin: 0 auto;
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
            transition: all 1.3s ease-in-out 0.3s;
        }

        .about-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: -5rem;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, rgba(125, 211, 192, 0.3), transparent);
            opacity: 0;
            transition: opacity 1s ease-in-out 0.5s;
        }

        .about-section.active .about-content::before {
            opacity: 1;
        }

        .about-section.active .about-content {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0px);
        }

        /* Label */
        .label {
            font-family: 'Caveat', cursive;
            font-size: 1rem;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 500;
            text-align: left !important;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-section.active .label {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.1s;
        }

        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        /* Text Content */
        .text-content {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
        }

        .about-section.active .text-content {
            opacity: 1;
            transform: translateY(0);
        }

        .text-content h1 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: #fff;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-align: left !important;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
        }

        .about-section.active .text-content h1 {
            opacity: 1;
            transform: translateY(0);
        }

        .text-content h1 .handwritten {
            font-family: 'Caveat', cursive;
            font-weight: 700;
            color: #7dd3c0;
            font-size: 1.15em;
            display: inline-block;
            position: relative;
            animation: handwrittenReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
        }

        @keyframes handwrittenReveal {
            0% {
                opacity: 0;
                transform: translateY(15px) rotate(-2deg) scale(0.95);
            }

            50% {
                transform: translateY(-2px) rotate(1deg) scale(1.02);
            }

            100% {
                opacity: 1;
                transform: translateY(0) rotate(0deg) scale(1);
            }
        }

        .text-content p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.7;
            margin-bottom: 3rem;
            max-width: 600px;
            text-align: left !important;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
        }

        .about-section.active .text-content p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Vibrant highlight text animation */
        .text-content p .highlight-text {
            position: relative;
            display: inline-block;
            font-weight: 600;
            color: #fff;
            opacity: 0;
            transform: translateY(10px);
        }

        .about-section.active .text-content p .highlight-text {
            animation: fadeSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .about-section.active .text-content p .highlight-text:nth-of-type(1) {
            animation-delay: 0.5s;
        }

        .about-section.active .text-content p .highlight-text:nth-of-type(2) {
            animation-delay: 0.8s;
        }

        .about-section.active .text-content p .highlight-text:nth-of-type(3) {
            animation-delay: 1.1s;
        }

        .text-content p .highlight-text::after {
            content: '';
            position: absolute;
            left: -2px;
            right: -2px;
            bottom: 0px;
            height: 40%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(125, 211, 192, 0.25) 20%,
                    rgba(125, 211, 192, 0.35) 50%,
                    rgba(125, 211, 192, 0.25) 80%,
                    transparent);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-section.active .text-content p .highlight-text::after {
            transform: scaleX(1);
        }

        @keyframes fadeSlideIn {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services - Radical Redesign (About Section Only) */
        .about-section .services-list {
            display: grid;
            gap: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
            position: relative;
        }

        .about-section.active .services-list {
            opacity: 1;
            transform: translateY(0);
        }

        .about-section .service-item {
            opacity: 0;
            transform: translateX(-50px) rotateY(-15deg);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            position: relative;
            perspective: 1000px;
        }

        .service-item-inner {
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            border-radius: 20px;
            background: rgba(20, 25, 30, 0.4);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(125, 211, 192, 0.1);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-style: preserve-3d;
            overflow: hidden;
        }

        .service-item-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(125, 211, 192, 0.05) 0%, transparent 50%, rgba(125, 211, 192, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .about-section.active .service-item {
            opacity: 1;
            transform: translateX(0) rotateY(0deg);
        }

        .about-section.active .service-item:nth-child(1) {
            transition-delay: 0.6s;
        }

        .about-section.active .service-item:nth-child(2) {
            transition-delay: 0.75s;
        }

        .about-section.active .service-item:nth-child(3) {
            transition-delay: 0.9s;
        }

        .service-item:hover .service-item-inner {
            transform: translateX(15px) translateY(-5px) rotateY(5deg) scale(1.02);
            border-color: rgba(125, 211, 192, 0.3);
            box-shadow: 0 20px 60px rgba(125, 211, 192, 0.15), 0 0 40px rgba(125, 211, 192, 0.1);
        }

        .service-item:hover .service-item-bg {
            opacity: 1;
        }

        .service-number-wrapper {
            position: relative;
            flex-shrink: 0;
            z-index: 2;
        }

        .service-number {
            font-size: 1.2rem;
            color: #7dd3c0;
            font-weight: 700;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(125, 211, 192, 0.1);
            border: 2px solid rgba(125, 211, 192, 0.2);
            position: relative;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .service-number-glow {
            position: absolute;
            inset: -4px;
            border-radius: 12px;
            background: radial-gradient(circle, rgba(125, 211, 192, 0.4), transparent);
            opacity: 0;
            filter: blur(8px);
            transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: -1;
        }

        .service-item:hover .service-number {
            transform: scale(1.15) rotate(5deg);
            color: #fff;
            background: rgba(125, 211, 192, 0.2);
            border-color: rgba(125, 211, 192, 0.5);
            box-shadow: 0 0 20px rgba(125, 211, 192, 0.4);
        }

        .service-item:hover .service-number-glow {
            opacity: 1;
        }

        .service-text {
            flex: 1;
            z-index: 2;
            position: relative;
        }

        .service-text h3 {
            font-size: 1.3rem;
            color: #fff;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-align: left !important;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            letter-spacing: -0.01em;
        }

        .service-item:hover .service-text h3 {
            color: #7dd3c0;
            transform: translateX(5px);
            text-shadow: 0 0 20px rgba(125, 211, 192, 0.3);
        }

        .service-text p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin: 0;
            text-align: left !important;
            position: relative;
            z-index: 1;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-item:hover .service-text p {
            color: rgba(255, 255, 255, 0.95);
        }

        /* Founders */
        .founders-section {
            align-self: center;
            padding-top: 2rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s;
        }

        .about-section.active .founders-section {
            opacity: 1;
            transform: translateY(0);
        }

        .founders-label {
            font-family: 'Caveat', cursive;
            font-size: 0.95rem;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-weight: 500;
            text-align: center !important;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s;
        }

        .about-section.active .founders-label {
            opacity: 1;
            transform: translateY(0);
        }

        .founders-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
        }

        .founder-card {
            text-align: center;
            position: relative;
            cursor: pointer;
            opacity: 0;
            transform: translateY(30px) scale(0.95) rotateX(15deg);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            perspective: 1000px;
        }

        .about-section.active .founder-card {
            opacity: 1;
            transform: translateY(0) scale(1) rotateX(0deg);
        }

        .about-section.active .founder-card:nth-child(1) {
            transition-delay: 0.9s;
        }

        .about-section.active .founder-card:nth-child(2) {
            transition-delay: 1.05s;
        }

        .founder-card-inner {
            position: relative;
            padding: 2rem;
            border-radius: 24px;
            background: rgba(20, 25, 30, 0.5);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(125, 211, 192, 0.15);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-style: preserve-3d;
        }

        .founder-card:hover .founder-card-inner {
            transform: translateY(-10px) rotateX(-5deg);
            border-color: rgba(125, 211, 192, 0.4);
            box-shadow: 0 30px 80px rgba(125, 211, 192, 0.2), 0 0 60px rgba(125, 211, 192, 0.1);
        }

        .founder-quote {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            background: rgba(20, 20, 25, 0.95);
            border: 2px solid rgba(125, 211, 192, 0.4);
            border-radius: 16px;
            padding: 1rem 1.25rem;
            min-width: 280px;
            max-width: 320px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 100;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .founder-quote::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 10px solid transparent;
            border-top-color: rgba(125, 211, 192, 0.4);
        }

        .founder-quote::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-2px);
            border: 8px solid transparent;
            border-top-color: rgba(20, 20, 25, 0.95);
            z-index: 1;
        }

        .founder-card:hover .founder-quote {
            opacity: 1;
            transform: translateX(-50%) translateY(-20px);
            pointer-events: auto;
        }

        .founder-quote-text {
            font-family: 'Caveat', cursive;
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.4;
            font-weight: 500;
            text-align: center;
        }

        .founder-photo-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .founder-photo {
            width: 160px;
            height: 160px;
            margin: 0 auto;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.2);
            background: #fff;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .founder-photo-glow {
            position: absolute;
            inset: -10px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(125, 211, 192, 0.4), transparent);
            opacity: 0;
            filter: blur(20px);
            transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 1;
            animation: pulseGlow 3s ease-in-out infinite;
        }

        @keyframes pulseGlow {

            0%,
            100% {
                transform: scale(1);
                opacity: 0;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.3;
            }
        }

        .founder-photo::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(125, 211, 192, 0.5), rgba(125, 211, 192, 0));
            opacity: 0;
            transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: -1;
        }

        .founder-card:hover .founder-photo::before {
            opacity: 1;
            animation: photoGlow 2s ease-in-out infinite;
        }

        @keyframes photoGlow {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .founder-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            transition: all 0.4s ease;
        }

        .founder-card:hover .founder-photo {
            border-color: #7dd3c0;
            transform: translateY(-15px) scale(1.08) rotateY(5deg);
            box-shadow: 0 25px 80px rgba(125, 211, 192, 0.6), 0 0 60px rgba(125, 211, 192, 0.4), inset 0 0 40px rgba(125, 211, 192, 0.1);
        }

        .founder-card:hover .founder-photo-glow {
            opacity: 0.6;
        }

        .founder-card:hover .founder-photo img {
            transform: scale(1.15) rotate(2deg);
        }

        .founder-name {
            font-size: 1.1rem;
            color: #fff;
            font-weight: 600;
            margin-bottom: 0.3rem;
            letter-spacing: 0.02em;
            text-align: center !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .founder-card:hover .founder-name {
            color: #7dd3c0;
            transform: translateY(-2px);
        }

        .founder-role {
            font-family: 'Caveat', cursive;
            font-size: 1.1rem;
            color: #7dd3c0;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-align: center !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .founder-card:hover .founder-role {
            transform: translateY(-2px);
            font-size: 1.15rem;
        }

        /* Animations */
        @keyframes drawHandWritten {
            0% {
                opacity: 0;
                clip-path: inset(0 100% 0 0);
            }

            100% {
                opacity: 0.8;
                clip-path: inset(0 0 0 0);
            }
        }

        /* ========== PORTFOLIO SECTION ========== */
        .portfolio-section {
            position: relative;
            min-height: 100vh;
            z-index: 30;
            margin-top: 0;
            padding-top: 0;
            /* Background depth - subtle radial gradient */
            background: radial-gradient(ellipse at 50% 30%,
                    rgba(20, 25, 25, 1) 0%,
                    rgba(12, 12, 12, 1) 40%,
                    rgba(8, 8, 8, 1) 100%);
            overflow: hidden;
        }

        .portfolio-section.active {
            z-index: 40;
        }


        .portfolio-container {
            position: relative;
            z-index: 100;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 5rem 3rem;
            opacity: 1;
            transform: translateY(0);
            filter: none;
            visibility: visible;
        }

        .portfolio-section.active .portfolio-container {
            opacity: 1;
            transform: translateY(0);
            filter: none;
            visibility: visible;
        }

        .portfolio-label {
            position: relative;
            z-index: 1;
            font-family: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 80px;
            margin-bottom: 40px;
            text-align: center;
            display: block;
            width: 100%;
        }

        .portfolio-carousel {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            perspective: 2400px;
            perspective-origin: 50% 40%;
            transform-style: preserve-3d;
        }

        .portfolio-carousel-inner {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            transform: rotateX(-5deg);
            cursor: default;
            user-select: none;
            pointer-events: none;
        }

        .portfolio-carousel-inner .portfolio-card {
            pointer-events: auto;
        }

        .portfolio-card {
            position: absolute;
            /* Divine Balance - Center on viewport */
            left: 50%;
            top: 50%;
            margin-left: -170px;
            /* Half of card width (340/2) */
            margin-top: -240px;
            /* Half of card height (480/2) */
            width: 340px;
            height: 480px;
            border-radius: 32px;
            cursor: pointer;
            transform-origin: center center;
            transform-style: preserve-3d;
            backface-visibility: visible;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            will-change: transform, filter, box-shadow;
        }

        .portfolio-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(135deg,
                    rgba(125, 211, 192, 0.15) 0%,
                    transparent 40%,
                    transparent 60%,
                    rgba(125, 211, 192, 0.08) 100%);
            opacity: 0;
            transition: opacity 0.6s;
            pointer-events: none;
            z-index: 2;
        }

        .portfolio-card::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: 10%;
            right: 10%;
            height: 100%;
            background: radial-gradient(ellipse at center,
                    rgba(125, 211, 192, 0.3) 0%,
                    rgba(125, 211, 192, 0.1) 30%,
                    transparent 70%);
            filter: blur(40px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            transform: rotateX(90deg) translateZ(-100px) scaleY(0.5);
            pointer-events: none;
        }

        .portfolio-card.active::before {
            opacity: 1;
        }

        .portfolio-card.active::after {
            opacity: 0.8;
            transform: rotateX(90deg) translateZ(-100px) scaleY(1);
        }

        .portfolio-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: inherit;
            overflow: hidden;
            background: rgba(20, 20, 25, 0.98);
            border: 1px solid;
            border-image: linear-gradient(145deg,
                    rgba(125, 211, 192, 0.5),
                    rgba(125, 211, 192, 0.15),
                    rgba(125, 211, 192, 0.3)) 1;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.08),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3),
                0 30px 80px rgba(0, 0, 0, 0.8),
                0 15px 40px rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .portfolio-card.active .portfolio-card-inner {
            box-shadow:
                inset 0 1px 0 rgba(125, 211, 192, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3),
                0 0 120px rgba(125, 211, 192, 0.25),
                0 40px 120px rgba(0, 0, 0, 0.8),
                0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(125, 211, 192, 0.3);
        }

        .portfolio-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
            pointer-events: none;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            filter: contrast(1) brightness(1);
            z-index: 1;
        }

        .portfolio-card.active img {
            filter: contrast(1.1) brightness(1.05) saturate(1.15);
        }

        .portfolio-card.active:hover img {
            transform: scale(1.1) translateZ(20px) rotateX(-2deg);
            filter: contrast(1.1) brightness(1.05) saturate(1.15);
        }

        .portfolio-card-overlay {
            position: absolute;
            inset: 0;
            /* Stronger gradient for better text readability */
            background: linear-gradient(180deg,
                    transparent 0%,
                    rgba(0, 0, 0, 0.2) 30%,
                    rgba(0, 0, 0, 0.6) 60%,
                    rgba(0, 0, 0, 0.9) 85%,
                    rgba(0, 0, 0, 0.98) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding-bottom: 2.5rem;
            opacity: 0.85;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            pointer-events: none;
            backdrop-filter: blur(0px);
            z-index: 10;
        }

        .portfolio-card.active .portfolio-card-overlay {
            opacity: 0.9;
        }

        .portfolio-card.active:hover .portfolio-card-overlay {
            opacity: 1;
            backdrop-filter: blur(2px);
        }

        .portfolio-card-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.03em;
            margin-top: 0.5rem;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
            z-index: 11;
            /* Text shadow for readability */
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
            text-align: center;
            max-width: 90%;
        }

        .portfolio-card-desc {
            font-size: 0.8rem;
            font-weight: 500;
            color: #7dd3c0;
            letter-spacing: 0.02em;
            margin-top: 0.35rem;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
            z-index: 11;
            /* Text shadow for readability */
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
        }

        .portfolio-card.active .portfolio-card-title {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-card.active .portfolio-card-desc {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-card.active:hover .portfolio-card-title {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-card.active:hover .portfolio-card-desc {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-card-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center,
                    rgba(125, 211, 192, 0.4) 0%,
                    rgba(125, 211, 192, 0.2) 20%,
                    transparent 60%);
            opacity: 0;
            filter: blur(60px);
            transition: opacity 0.8s;
            pointer-events: none;
            z-index: -1;
        }

        .portfolio-card.active .portfolio-card-glow {
            opacity: 0.6;
            animation: pulse-glow 4s ease-in-out infinite;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.6;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }


        .portfolio-play-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #000;
            transition: all 0.4s ease;
            pointer-events: auto;
            padding-left: 3px;
            margin-bottom: 1rem;
            opacity: 0.6;
        }

        /* Active card play button - SPECIAL */
        .portfolio-card.active .portfolio-play-icon {
            width: 70px;
            height: 70px;
            background: rgba(125, 211, 192, 0.95);
            color: #000;
            font-size: 1.6rem;
            opacity: 1;
            box-shadow: 0 0 30px rgba(125, 211, 192, 0.5), 0 0 60px rgba(125, 211, 192, 0.3);
            animation: playButtonPulse 2s ease-in-out infinite;
        }

        @keyframes playButtonPulse {

            0%,
            100% {
                box-shadow: 0 0 30px rgba(125, 211, 192, 0.5), 0 0 60px rgba(125, 211, 192, 0.3);
                transform: scale(1);
            }

            50% {
                box-shadow: 0 0 40px rgba(125, 211, 192, 0.7), 0 0 80px rgba(125, 211, 192, 0.4);
                transform: scale(1.05);
            }
        }

        .portfolio-card.active:hover .portfolio-play-icon {
            transform: scale(1.15);
            background: #7dd3c0;
            box-shadow: 0 0 50px rgba(125, 211, 192, 0.7), 0 0 100px rgba(125, 211, 192, 0.4);
            animation: none;
        }

        /* Navigation controls */
        .portfolio-nav-controls {
            width: 100%;
            margin-top: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 50;
        }

        .portfolio-nav {
            position: relative;
            inset: auto;
            width: 70px;
            height: 70px;
            min-width: 60px;
            min-height: 60px;
            background: rgba(125, 211, 192, 0.25);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            pointer-events: auto !important;
            touch-action: manipulation !important;
            cursor: pointer !important;
            -webkit-tap-highlight-color: rgba(125, 211, 192, 0.3);
            -webkit-touch-callout: none;
            border: 2px solid rgba(125, 211, 192, 0.5);
            border-radius: 50%;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
            color: rgba(255, 255, 255, 1);
            font-size: 1.8rem;
            font-weight: bold;
            user-select: none;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(125, 211, 192, 0.15);
        }

        .portfolio-nav.left,
        .portfolio-nav.right {
            left: auto !important;
            right: auto !important;
        }

        .portfolio-nav:hover {
            background: rgba(125, 211, 192, 0.45);
            border-color: #7dd3c0;
            color: #fff;
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 40px rgba(125, 211, 192, 0.35);
        }

        .portfolio-nav:active {
            transform: scale(0.95);
            background: rgba(125, 211, 192, 0.6);
        }

        .portfolio-nav:disabled {
            opacity: 0.35;
            pointer-events: none;
            box-shadow: none;
        }

        @media (max-width: 768px) {
            .portfolio-section {
                margin-top: 0;
                padding-top: 2rem;
            }

            .portfolio-container {
                padding: 2rem 0;
                min-height: auto;
            }

            /* Mobile Carousel - Centered Cards */
            .portfolio-carousel {
                min-height: 520px;
                perspective: none !important;
                overflow: visible;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .portfolio-carousel-inner {
                height: 480px;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                will-change: transform;
                touch-action: pan-x pan-y;
                user-select: none;
                pointer-events: auto !important;
                padding-left: calc(50vw - 150px);
            }

            .portfolio-carousel-inner .portfolio-card {
                pointer-events: auto !important;
                cursor: pointer !important;
            }

            .portfolio-card {
                width: 300px !important;
                min-width: 300px !important;
                height: 450px;
                position: relative !important;
                transform: scale(0.85) !important;
                opacity: 0.5 !important;
                filter: blur(1px) !important;
                margin: 0 8px;
                flex-shrink: 0;
                transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
                pointer-events: auto !important;
                cursor: pointer !important;
            }

            .portfolio-card.active {
                opacity: 1 !important;
                transform: scale(1) !important;
                filter: none !important;
                z-index: 10;
            }

            .portfolio-nav-controls {
                margin-top: 1.5rem;
                gap: 0.75rem;
                flex-wrap: nowrap;
            }

            .portfolio-nav {
                width: 58px !important;
                height: 58px !important;
                font-size: 1.6rem !important;
            }

            .portfolio-nav:active {
                transform: scale(0.92) !important;
            }

            .portfolio-nav:disabled {
                opacity: 0.3;
                pointer-events: none;
            }
        }

        @media (max-width: 480px) {
            .portfolio-container {
                padding: 1.5rem 0.75rem;
            }

            .portfolio-carousel {
                min-height: 420px;
            }

            .portfolio-carousel-inner {
                height: 420px;
            }

            .portfolio-card {
                width: 90vw !important;
                max-width: 300px;
                height: 420px;
            }

            .portfolio-nav-controls {
                flex-direction: column;
                gap: 0.75rem;
            }

            .portfolio-nav {
                width: 100% !important;
                max-width: 320px;
                height: 54px !important;
                border-radius: 999px !important;
                font-size: 1.4rem !important;
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
            }
        }

        .portfolio-dots {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .portfolio-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .portfolio-dot:hover {
            background: rgba(125, 211, 192, 0.5);
            transform: scale(1.3);
        }

        .portfolio-dot.active {
            background: #7dd3c0;
            width: 18px;
            border-radius: 3px;
        }

        /* ========== HOW IT WORKS SECTION ========== */
        .how-section {
            position: relative;
            min-height: 100vh;
            z-index: 45;
            margin-top: 0;
            margin-bottom: 0;
            padding: 6rem 0;
            overflow: hidden;
        }

        .how-container {
            position: relative;
            z-index: 100;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 3rem;
            opacity: 1;
        }

        .how-header {
            text-align: center;
            margin-bottom: 5rem;
            padding-top: 0;
        }

        .how-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .how-header h2 .handwritten {
            font-family: 'Caveat', cursive;
            font-weight: 700;
            color: #7dd3c0;
            font-size: 1.15em;
        }

        .how-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Service Navigation Tabs */
        .how-services-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .how-nav-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.9rem 1.8rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(125, 211, 192, 0.15);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .how-nav-item svg {
            width: 20px;
            height: 20px;
            stroke-width: 2;
            transition: all 0.4s ease;
        }

        .how-nav-item:hover {
            background: rgba(125, 211, 192, 0.08);
            border-color: rgba(125, 211, 192, 0.35);
            color: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        .how-nav-item.active {
            background: rgba(125, 211, 192, 0.12);
            border-color: rgba(125, 211, 192, 0.5);
            color: #7dd3c0;
            box-shadow: 0 0 30px rgba(125, 211, 192, 0.15);
        }

        .how-nav-item.active svg {
            stroke: #7dd3c0;
        }

        /* Timeline Visual */
        .how-timeline-visual {
            position: relative;
            height: 6px;
            margin-bottom: 4rem;
            display: flex;
            align-items: center;
        }

        .how-timeline-track {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(125, 211, 192, 0.15);
            border-radius: 2px;
        }

        .how-timeline-progress {
            position: absolute;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, #7dd3c0, rgba(125, 211, 192, 0.6));
            border-radius: 2px;
            width: 0%;
            transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .how-timeline-dots {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: space-between;
            z-index: 2;
        }

        .how-timeline-dot {
            width: 12px;
            height: 12px;
            background: rgba(125, 211, 192, 0.3);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
            position: relative;
        }

        .how-timeline-dot.active {
            background: #7dd3c0;
            box-shadow: 0 0 20px rgba(125, 211, 192, 0.6);
            transform: scale(1.5);
        }

        .how-timeline-dot.completed {
            background: rgba(125, 211, 192, 0.7);
        }

        .how-timeline-dot-label {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.7rem;
            color: rgba(125, 211, 192, 0.8);
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .how-timeline-dot:hover .how-timeline-dot-label,
        .how-timeline-dot.active .how-timeline-dot-label {
            opacity: 1;
        }

        .how-timeline-total {
            position: absolute;
            bottom: -35px;
            right: 0;
            font-size: 0.75rem;
            color: rgba(125, 211, 192, 0.6);
            font-weight: 600;
        }

        .how-timeline-start {
            position: absolute;
            bottom: -35px;
            left: 0;
            font-size: 0.75rem;
            color: rgba(125, 211, 192, 0.6);
            font-weight: 600;
        }

        /* Steps Flow */
        .how-steps-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .how-steps-flow.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .how-step {
            position: relative;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(125, 211, 192, 0.1);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            transform: translateY(20px);
        }

        .how-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .how-step:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(125, 211, 192, 0.25);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .how-step.highlight {
            background: rgba(125, 211, 192, 0.08);
            border-color: rgba(125, 211, 192, 0.4);
            box-shadow: 0 0 30px rgba(125, 211, 192, 0.2);
            transform: scale(1.02);
        }

        .how-step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(125, 211, 192, 0.15);
            color: #7dd3c0;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .how-step-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 0.8rem;
            letter-spacing: -0.01em;
        }

        .how-step-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .how-step-time {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.9rem;
            background: rgba(125, 211, 192, 0.08);
            color: rgba(125, 211, 192, 0.9);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .how-step-time svg {
            width: 14px;
            height: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .how-section {
                padding: 4rem 1.5rem 4rem;
                margin-top: 0;
                min-height: auto;
            }

            .how-section::before {
                height: 150px;
            }

            .how-container {
                padding: 0 1.5rem;
            }

            .how-header {
                margin-bottom: 3rem;
            }

            .how-header h2 {
                font-size: clamp(1.8rem, 5vw, 2.2rem);
            }

            .how-nav {
                flex-wrap: wrap;
                gap: 0.75rem;
                justify-content: center;
            }

            .how-nav-item {
                padding: 0.75rem 1.25rem;
                font-size: 0.85rem;
                min-height: 44px;
            }

            .how-step {
                padding: 1.5rem;
            }

            .how-step-title {
                font-size: 1.1rem;
            }

            .how-step-desc {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .how-section {
                padding: 3rem 1rem 3rem;
            }

            .how-section::before {
                height: 100px;
            }

            .how-container {
                padding: 0 1rem;
            }

            .how-nav-item {
                padding: 0.65rem 1rem;
                font-size: 0.8rem;
            }

            .how-nav-item svg {
                width: 16px;
                height: 16px;
            }
        }

        /* ========== MISSION SECTION ========== */
        .mission-section {
            position: relative;
            min-height: 120vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 2rem 8rem;
            overflow: hidden;
            background: transparent;
            z-index: 30;
            perspective: 1500px;
            margin-bottom: 0;
            margin-top: 0;
        }

        .mission-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px;
            background: linear-gradient(to bottom,
                    transparent 0%,
                    rgba(125, 211, 192, 0.04) 20%,
                    rgba(125, 211, 192, 0.08) 50%,
                    rgba(125, 211, 192, 0.04) 80%,
                    transparent 100%);
            pointer-events: none;
            z-index: 5;
            opacity: 0;
            animation: sectionTransitionFade 4s ease-in-out infinite;
        }

        @keyframes sectionTransitionFade {

            0%,
            100% {
                opacity: 0.4;
                transform: translateY(0);
            }

            50% {
                opacity: 0.8;
                transform: translateY(-10px);
            }
        }

        .mission-bg-gradient {
            position: absolute;
            top: -50%;
            left: 0;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle at 30% 30%, rgba(125, 211, 192, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(125, 211, 192, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 50% 90%, rgba(93, 193, 172, 0.08) 0%, transparent 50%);
            animation: gradientShift 20s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes gradientShift {

            0%,
            100% {
                transform: translateY(0) scale(1);
                opacity: 0.6;
            }

            33% {
                transform: translateY(-5%) scale(1.05);
                opacity: 0.8;
            }

            66% {
                transform: translateY(5%) scale(0.95);
                opacity: 0.9;
            }
        }

        .mission-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 2;
        }

        .mission-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(125, 211, 192, 0.3);
            border-radius: 50%;
            filter: blur(1px);
        }

        .mission-content {
            position: relative;
            max-width: 900px;
            text-align: center;
            z-index: 10;
            opacity: 1;
            transform: scale(1) translateZ(0);
            transform-style: preserve-3d;
            perspective: 1000px;
            transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mission-section.active .mission-content {
            opacity: 1;
            transform: scale(1) translateZ(0);
        }

        .mission-label {
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(125, 211, 192, 0.9);
            margin-bottom: 2rem;
            font-weight: 600;
            opacity: 1;
            transform: scale(1);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
        }

        .mission-section.active .mission-label {
            opacity: 1;
            transform: scale(1);
        }

        .mission-text-container {
            margin-bottom: 3rem;
            max-width: 1000px;
        }

        .mission-paragraph {
            font-size: clamp(1.5rem, 3.5vw, 2.5rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 300;
            margin-bottom: 2rem;
            letter-spacing: -0.01em;
            opacity: 1;
            transform: scale(1);
            transform-origin: center;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mission-section.active .mission-paragraph {
            opacity: 1;
            transform: scale(1);
        }

        /* Vibrant highlight text animation */
        .mission-paragraph .highlight-text {
            position: relative;
            display: inline;
            font-weight: 600;
            color: #fff;
            opacity: 0;
            transform: translateY(10px);
        }

        .mission-section.active .mission-paragraph .highlight-text {
            animation: fadeSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .mission-section.active .mission-paragraph .highlight-text:nth-of-type(1) {
            animation-delay: 0.5s;
        }

        .mission-section.active .mission-paragraph .highlight-text:nth-of-type(2) {
            animation-delay: 0.8s;
        }

        .mission-section.active .mission-paragraph .highlight-text:nth-of-type(3) {
            animation-delay: 1.1s;
        }

        .mission-section.active .mission-paragraph .highlight-text:nth-of-type(4) {
            animation-delay: 1.4s;
        }

        .mission-paragraph .highlight-text::after {
            content: '';
            position: absolute;
            left: -2px;
            right: -2px;
            bottom: 2px;
            height: 45%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(125, 211, 192, 0.3) 10%,
                    rgba(125, 211, 192, 0.5) 50%,
                    rgba(125, 211, 192, 0.3) 90%,
                    transparent);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .mission-section.active .mission-paragraph .highlight-text::after {
            transform: scaleX(1);
        }

        @keyframes fadeSlideIn {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mission-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: rgba(125, 211, 192, 0.1);
            border: 1px solid rgba(125, 211, 192, 0.3);
            border-radius: 50px;
            color: #7dd3c0;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 1;
            transform: scale(1);
            cursor: pointer;
        }

        .mission-section.active .mission-cta {
            opacity: 1;
            transform: scale(1);
            transition-delay: 1.2s;
        }

        .mission-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(125, 211, 192, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1), height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mission-cta:hover::before {
            width: 300px;
            height: 300px;
        }

        .mission-cta:hover {
            background: rgba(125, 211, 192, 0.15);
            border-color: rgba(125, 211, 192, 0.5);
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(125, 211, 192, 0.3);
        }

        .mission-cta-icon {
            font-size: 1.2rem;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mission-cta:hover .mission-cta-icon {
            transform: translateX(5px) rotate(45deg);
        }

        /* Magnetic effect for CTA */
        .mission-cta.magnetic {
            transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @media (max-width: 768px) {
            .mission-section {
                padding: 3rem 1.5rem 4rem;
                min-height: auto;
                margin-bottom: 0;
            }

            .mission-section::after {
                height: 150px;
            }

            .mission-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }

            .mission-content {
                max-width: 100%;
            }

            .mission-label {
                font-size: 0.7rem;
                margin-bottom: 1.5rem;
            }

            .mission-paragraph {
                font-size: clamp(1.2rem, 4vw, 1.8rem);
                line-height: 1.5;
                margin-bottom: 2rem;
            }

            .mission-text-container {
                margin-bottom: 2rem;
            }

            .mission-cta {
                padding: 1rem 2rem;
                font-size: 0.9rem;
                min-height: 48px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .mission-section {
                padding: 2rem 1rem 3rem;
                margin-bottom: 0;
            }

            .mission-section::after {
                height: 100px;
            }

            .mission-paragraph {
                font-size: 1.1rem;
            }

            .mission-cta {
                padding: 0.9rem 1.5rem;
                font-size: 0.85rem;
                width: 100%;
                max-width: 280px;
            }
        }

        /* About Section Mobile */
        @media (max-width: 768px) {
            .about-section {
                margin-top: 30vh;
            }

            .about-content {
                padding: 0 1.5rem;
            }

            .about-content::before {
                display: none;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .service-item-inner {
                padding: 1.5rem;
                gap: 1rem;
            }

            .service-number {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }

            .service-text h3 {
                font-size: 1.1rem;
            }

            .service-text p {
                font-size: 0.85rem;
            }

            .founder-card-inner {
                padding: 1.5rem;
            }

            .founder-photo {
                width: 120px;
                height: 120px;
            }

            .organic-spheres .sphere {
                opacity: 0.2;
            }

            .organic-branches {
                opacity: 0.3;
            }
        }

        @media (max-width: 480px) {
            .about-content {
                padding: 0 1rem;
            }

            .service-item-inner {
                padding: 1.2rem;
                flex-direction: column;
                text-align: center;
            }

            .service-number-wrapper {
                align-self: center;
            }

            .service-text {
                text-align: center !important;
            }

            .service-text h3,
            .service-text p {
                text-align: center !important;
            }

            .founders-grid {
                flex-direction: column;
                gap: 2rem;
            }
        }

        /* ========== MANIFESTO HEADER LINK ========== */
        .nav-link-manifesto {
            position: relative;
            color: #7dd3c0 !important;
            font-weight: 600;
        }

        .nav-link-manifesto::after {
            background: linear-gradient(90deg, transparent, #7dd3c0, transparent) !important;
        }

        /* ========== MANIFESTO MODAL ========== */
        .manifesto-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 100000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .manifesto-modal.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .manifesto-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }

        .manifesto-card {
            position: relative;
            max-width: 900px;
            max-height: 85vh;
            width: 100%;
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
            border: 1px solid rgba(125, 211, 192, 0.2);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(125, 211, 192, 0.15);
            overflow-y: auto;
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            scrollbar-width: thin;
            scrollbar-color: rgba(125, 211, 192, 0.3) transparent;
        }

        .manifesto-modal.active .manifesto-card {
            transform: scale(1);
        }

        .manifesto-card::-webkit-scrollbar {
            width: 8px;
        }

        .manifesto-card::-webkit-scrollbar-track {
            background: transparent;
        }

        .manifesto-card::-webkit-scrollbar-thumb {
            background: rgba(125, 211, 192, 0.3);
            border-radius: 4px;
        }

        .manifesto-card::-webkit-scrollbar-thumb:hover {
            background: rgba(125, 211, 192, 0.5);
        }

        .manifesto-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .manifesto-close:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(125, 211, 192, 0.4);
            color: #7dd3c0;
            transform: rotate(90deg);
        }

        .manifesto-label {
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(125, 211, 192, 0.8);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .manifesto-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .manifesto-content {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
        }

        .manifesto-content p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .manifesto-content h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        .manifesto-content ul {
            margin: 1.5rem 0 1.5rem 2rem;
            list-style: none;
        }

        .manifesto-content ul li {
            position: relative;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
        }

        .manifesto-content ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #7dd3c0;
            font-weight: 600;
        }

        .manifesto-content a {
            color: #7dd3c0;
            text-decoration: none;
            border-bottom: 1px solid rgba(125, 211, 192, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .manifesto-content a:hover {
            color: #9de8d6;
            border-bottom-color: #7dd3c0;
        }

        .manifesto-content strong {
            color: #fff;
            font-weight: 600;
        }

        .manifesto-content em {
            color: rgba(125, 211, 192, 0.9);
            font-style: italic;
        }

        @media (max-width: 768px) {
            .manifesto-callout-btn {
                padding: 1.2rem 2rem;
                font-size: 1rem;
            }

            .manifesto-card {
                padding: 2rem 1.5rem;
                max-height: 90vh;
            }

            .manifesto-title {
                font-size: 1.5rem;
            }

            .manifesto-content p {
                font-size: 1rem;
            }

            .manifesto-content h2 {
                font-size: 1.3rem;
            }
        }

        /* ========== SERVICES SECTION ========== */
        .services-section {
            position: relative;
            min-height: 280vh;
            z-index: 50;
            margin-top: 0;
            padding-top: 0;
            isolation: isolate;
            overflow: hidden;
            background: transparent;
        }

        @media (max-width: 768px) {
            .services-section {
                margin-top: 0;
                min-height: auto;
                padding: 4rem 0;
            }

            .services-container {
                padding: 0 1.5rem;
            }
        }

        .services-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 100%;
            z-index: 0;
            opacity: 0.3 !important;
            transform: scale(1);
            filter: blur(0px);
            visibility: visible !important;
            pointer-events: none;
        }

        .services-bg img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 100%;
            object-fit: cover;
            object-position: center center;
            opacity: 0.2;
        }

        .services-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .services-section.active .services-bg {
            opacity: 0.3;
            transform: scale(1);
            filter: blur(0px);
            visibility: visible;
            z-index: 0;
            pointer-events: none;
        }

        /* How Section Background */
        .how-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 100%;
            z-index: 0;
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: none;
        }

        .how-bg img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 100%;
            object-fit: cover;
            object-position: center center;
            opacity: 0.4;
        }

        .how-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.2);
            z-index: 2;
        }

        .how-section.active .how-bg {
            opacity: 1;
            transform: scale(1);
            filter: blur(0px);
            visibility: visible;
            z-index: 0;
            pointer-events: none;
        }

        .services-container {
            position: relative;
            z-index: 200;
            isolation: isolate;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 3rem;
            opacity: 1 !important;
            transform: none;
            filter: none;
            transition: none;
            visibility: visible !important;
        }

        .services-section.active .services-container {
            opacity: 1 !important;
            transform: none;
            filter: none;
            visibility: visible !important;
        }

        /* Header */
        .services-header {
            text-align: center;
            margin-bottom: 8vh;
            padding-top: 10vh;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .services-label {
            font-family: 'Caveat', cursive;
            font-size: 1rem;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 400;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .services-headline {
            font-size: 2.5rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.4;
            letter-spacing: -0.02em;
            margin: 0;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .services-headline .handwritten {
            font-family: 'Caveat', cursive;
            font-weight: 700;
            color: #7dd3c0;
            font-size: 1.1em;
        }

        /* Service Item */
        .service-item {
            position: relative;
            z-index: 150;
            isolation: isolate;
            margin-bottom: 3vh;
            opacity: 1;
            transform: translateY(0);
            transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            padding: 2rem 2rem;
            visibility: visible !important;
        }

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

        /* Visual/SVG */
        .service-visual {
            width: 100%;
            max-width: 280px;
            margin: 0 auto 1.5rem;
            opacity: 0.85;
            visibility: visible !important;
        }

        .service-svg {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 40px rgba(125, 211, 192, 0.15));
        }

        .service-svg .draw-path {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            transition: stroke-dashoffset 2s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .service-item.visible .service-svg .draw-path {
            stroke-dashoffset: 0;
        }

        .service-svg .flow-particle {
            animation: flow-animation 3s ease-in-out infinite;
        }

        @keyframes flow-animation {

            0%,
            100% {
                opacity: 0.3;
                transform: translateX(0);
            }

            50% {
                opacity: 1;
                transform: translateX(10px);
            }
        }

        /* Content */
        .service-content {
            position: relative;
            z-index: 20;
            isolation: isolate;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .service-title {
            font-size: 1.8rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .service-desc {
            font-size: 1rem;
            font-weight: 300;
            color: rgba(125, 211, 192, 0.8);
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 1 !important;
            visibility: visible !important;
        }

        /* Expand/Toggle */
        .service-expand {
            margin-top: 2rem;
        }

        .service-toggle {
            background: transparent;
            border: 1px solid rgba(125, 211, 192, 0.3);
            color: rgba(125, 211, 192, 0.9);
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            letter-spacing: 0.02em;
        }

        .service-toggle:hover {
            background: rgba(125, 211, 192, 0.1);
            border-color: rgba(125, 211, 192, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(125, 211, 192, 0.15);
        }

        .service-details {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            margin-top: 0;
        }

        .service-expand[data-expanded="true"] .service-details {
            max-height: 500px;
            opacity: 1;
            margin-top: 2rem;
        }

        .service-details ul {
            list-style: none;
            padding: 0;
            text-align: left;
            margin: 0 auto 1.5rem;
            max-width: 400px;
        }

        .service-details li {
            padding: 0.5rem 0 0.5rem 1.5rem;
            position: relative;
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .service-details li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: rgba(125, 211, 192, 0.6);
        }

        .service-why {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            line-height: 1.8;
            padding: 1rem;
            border-top: 1px solid rgba(125, 211, 192, 0.1);
            margin-top: 1rem;
        }

        .service-why strong {
            color: rgba(125, 211, 192, 0.9);
        }

        /* Why Section */
        .why-section {
            margin-top: 10vh;
            padding: 3rem 0 8vh 0;
            text-align: center;
        }

        .why-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 1rem;
        }

        .why-subtitle {
            font-size: 1rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(125, 211, 192, 0.7);
            margin-bottom: 4rem;
        }

        .comparison-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .comp-row {
            display: grid;
            grid-template-columns: 200px 1fr 60px 1fr;
            gap: 1.5rem;
            align-items: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(125, 211, 192, 0.08);
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .comp-row:hover {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(125, 211, 192, 0.2);
            transform: translateX(4px);
        }

        .comp-label {
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .comp-old-value,
        .comp-new-value {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            text-align: left;
        }

        .comp-old-value strong,
        .comp-new-value strong {
            font-size: 1.1rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.95);
        }

        .comp-new-value strong {
            color: rgba(125, 211, 192, 0.95);
        }

        .comp-note {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            font-style: italic;
            line-height: 1.3;
        }

        .comp-arrow {
            font-size: 1.5rem;
            color: rgba(125, 211, 192, 0.5);
            text-align: center;
        }

        /* Manifesto Section */
        .manifesto-section {
            margin-top: 8vh;
            margin-bottom: 3vh;
            padding: 3vh 2rem;
            text-align: center;
            position: relative;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .manifesto-content {
            max-width: 900px;
            margin: 0 auto;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .manifesto-quote {
            font-size: 3rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.98);
            line-height: 1.3;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .manifesto-quote .handwritten {
            font-family: 'Caveat', cursive;
            font-weight: 700;
            color: #7dd3c0;
            font-size: 1.1em;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .manifesto-tagline {
            font-family: 'Caveat', cursive;
            font-size: 1.5rem;
            color: rgba(125, 211, 192, 0.85);
            font-weight: 500;
            letter-spacing: 0.02em;
            opacity: 1 !important;
            visibility: visible !important;
        }

        /* ========== HOW IT WORKS SECTION ========== */
        .how-section {
            position: relative;
            min-height: 120vh;
            padding: 8rem 2rem 12vh;
            z-index: 50;
            overflow: hidden;
            margin-top: 0;
            margin-bottom: 0;
            background: transparent;
        }

        .how-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 400px;
            background: linear-gradient(to bottom,
                    rgba(125, 211, 192, 0.06) 0%,
                    rgba(125, 211, 192, 0.1) 40%,
                    transparent 100%);
            pointer-events: none;
            z-index: 1;
            opacity: 0.7;
            animation: sectionWaveFlow 6s ease-in-out infinite;
        }

        @keyframes sectionWaveFlow {

            0%,
            100% {
                transform: translateY(0) scaleY(1);
                opacity: 0.7;
            }

            50% {
                transform: translateY(20px) scaleY(1.05);
                opacity: 0.9;
            }
        }

        .how-container {
            position: relative;
            z-index: 100;
            max-width: 1400px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUpSection 1s ease forwards;
        }

        @keyframes fadeInUpSection {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .how-header {
            text-align: center;
            margin-bottom: 8vh;
            padding-top: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .how-header h2 {
            font-size: 2.8rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .how-header h2 .handwritten {
            font-family: 'Caveat', cursive;
            font-weight: 700;
            color: #7dd3c0;
            font-size: 1.15em;
        }

        .how-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .how-services-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 8vh;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .how-nav-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 1.8rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .how-nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, rgba(125, 211, 192, 0.8), rgba(125, 211, 192, 0.4));
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .how-nav-item.active::before {
            transform: translateX(0);
        }

        .how-nav-item svg {
            width: 20px;
            height: 20px;
            color: rgba(125, 211, 192, 0.6);
            transition: all 0.3s ease;
        }

        .how-nav-item span {
            font-size: 0.95rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }

        .how-nav-item:hover,
        .how-nav-item.active {
            background: rgba(125, 211, 192, 0.08);
            border-color: rgba(125, 211, 192, 0.2);
        }

        .how-nav-item:hover svg,
        .how-nav-item.active svg {
            color: rgba(125, 211, 192, 1);
            transform: scale(1.1);
        }

        .how-nav-item:hover span,
        .how-nav-item.active span {
            color: rgba(255, 255, 255, 0.95);
        }

        .how-showcase {
            position: relative;
        }

        .how-timeline-visual {
            position: relative;
            max-width: 900px;
            margin: 0 auto 6vh;
            padding: 0 2rem;
        }

        .how-timeline-track {
            position: relative;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .how-timeline-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(125, 211, 192, 0.8), rgba(125, 211, 192, 0.4));
            border-radius: 2px;
            transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
            width: 0;
        }

        .how-timeline-dots {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 2rem;
        }

        .how-timeline-dot {
            position: relative;
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .how-timeline-dot.active {
            background: rgba(125, 211, 192, 0.9);
            border-color: rgba(125, 211, 192, 1);
            box-shadow: 0 0 20px rgba(125, 211, 192, 0.6);
            transform: scale(1.3);
        }

        .how-timeline-dot.completed {
            background: rgba(125, 211, 192, 0.7);
        }

        .how-timeline-info {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .how-timeline-dot:hover .how-timeline-info,
        .how-timeline-dot.active .how-timeline-info {
            opacity: 1;
        }

        .how-steps-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .how-steps-flow.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .how-step {
            position: relative;
            padding: 2.5rem 2rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(20px);
        }

        .how-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .how-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top left, rgba(125, 211, 192, 0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: inherit;
        }

        .how-step:hover {
            transform: translateY(-8px);
            border-color: rgba(125, 211, 192, 0.25);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .how-step:hover::before {
            opacity: 1;
        }

        .how-step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(125, 211, 192, 0.15);
            color: #7dd3c0;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .how-step-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 0.8rem;
            letter-spacing: -0.01em;
        }

        .how-step-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .how-step-time {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.9rem;
            background: rgba(125, 211, 192, 0.08);
            color: rgba(125, 211, 192, 0.9);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .how-step-time svg {
            width: 14px;
            height: 14px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== MINIMALIST FOOTER ========== */
        .footer {
            position: relative;
            padding: 4rem 2rem 3rem;
            background: #0a0a0a;
            border-top: 1px solid rgba(125, 211, 192, 0.1);
            z-index: 50;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.02em;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
        }

        .footer.visible .footer-logo {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
        }

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

        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: #7dd3c0;
            transition: width 0.3s ease;
        }

        .footer-link:hover {
            color: #7dd3c0;
        }

        .footer-link:hover::after {
            width: 100%;
        }

        .footer-copyright {
            width: 100%;
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
        }

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

        @media (max-width: 768px) {
            .how-section {
                padding: 5rem 0;
            }

            .how-header h2 {
                font-size: 2rem;
            }

            .how-header {
                margin-bottom: 3rem;
            }

            .how-services-nav {
                gap: 0.75rem;
            }

            .how-nav-item {
                padding: 0.75rem 1.3rem;
                font-size: 0.85rem;
            }

            .how-nav-item svg {
                width: 16px;
                height: 16px;
            }

            .how-steps-flow {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-content {
                padding: 0 3rem;
            }

            .portfolio-card {
                width: 80%;
                max-width: 450px;
                height: 300px;
            }

            .portfolio-container {
                padding: 4rem 2rem;
            }

            .services-headline {
                font-size: 2rem;
            }

            .service-title {
                font-size: 1.5rem;
            }

            .comp-row {
                grid-template-columns: 1fr;
                gap: 1rem;
                text-align: center;
            }

            .comp-label,
            .comp-old-value,
            .comp-new-value {
                text-align: center;
            }

            .comp-arrow {
                display: none;
            }

            .manifesto-quote {
                font-size: 2rem;
            }

            .manifesto-tagline {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 968px) {
            .hero-content {
                padding: 4rem 2rem 3rem;
            }

            .trust-section {
                padding: 1.5rem 2rem;
                justify-content: center;
            }

            .trust-logos {
                gap: 2rem;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .about-content {
                padding: 0 2rem;
            }

            .text-content h1 {
                font-size: 2rem;
            }

            .founders-grid {
                gap: 1.5rem;
            }

            .services-container {
                padding: 0 1.5rem;
            }

            .service-item {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-bottom: 8vh;
            }

            .service-item:nth-child(even) {
                direction: ltr;
            }

            .services-header {
                margin-bottom: 10vh;
                padding-top: 10vh;
            }

            .services-headline {
                font-size: 1.75rem;
            }

            .service-item {
                margin-bottom: 15vh;
            }

            .service-title {
                font-size: 1.3rem;
            }

            .service-desc {
                font-size: 0.95rem;
            }

            .why-section {
                margin-top: 15vh;
                padding: 3rem 0;
            }

            .why-title {
                font-size: 1.5rem;
            }

            .founder-photo {
                width: 120px;
                height: 120px;
            }

            .portfolio-card {
                width: 92%;
                max-width: 400px;
                height: 250px;
            }

            .portfolio-carousel {
                perspective: 1400px;
                min-height: 400px;
            }

            .portfolio-play-icon {
                width: 64px;
                height: 64px;
                font-size: 1.5rem;
            }

            .portfolio-container {
                padding: 3rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .trust-section {
                flex-direction: column;
                gap: 1rem;
            }

            .trust-logos {
                gap: 1.5rem;
            }

            .trust-logo {
                width: 80px;
                height: 28px;
            }

            .portfolio-card {
                width: 96%;
                max-width: 360px;
                height: 220px;
            }

            .portfolio-play-icon {
                width: 56px;
                height: 56px;
                font-size: 1.3rem;
            }
        }

        /* ========== WHY POSTHUMANE - MINIMALIST ========== */
        .why-section {
            position: relative;
            margin-top: 80px;
            margin-bottom: 80px;
            padding: 6rem 0;
            overflow: visible;
            opacity: 1 !important;
            visibility: visible !important;
            z-index: 60;
            isolation: isolate;
        }

        /* Why Section Background */
        .why-bg {
            position: absolute;
            inset: 0;
            z-index: -1;
            pointer-events: none;
        }

        .why-bg-gradient {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at top, rgba(125, 211, 192, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(125, 211, 192, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at center, rgba(125, 211, 192, 0.03) 0%, transparent 70%);
            opacity: 0.6;
            animation: whyGradientPulse 8s ease-in-out infinite;
        }

        .why-bg-pattern {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(125, 211, 192, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(125, 211, 192, 0.03) 0%, transparent 50%),
                linear-gradient(135deg, transparent 0%, rgba(125, 211, 192, 0.02) 50%, transparent 100%);
            background-size: 100% 100%, 100% 100%, 200% 200%;
            animation: whyPatternMove 20s ease-in-out infinite;
        }

        @keyframes whyGradientPulse {

            0%,
            100% {
                opacity: 0.6;
                transform: scale(1);
            }

            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        @keyframes whyPatternMove {

            0%,
            100% {
                background-position: 0% 0%, 100% 100%, 0% 0%;
            }

            50% {
                background-position: 100% 100%, 0% 0%, 50% 50%;
            }
        }

        .why-title {
            position: relative;
            z-index: 10;
            font-size: 2.8rem;
            font-weight: 200;
            color: rgba(255, 255, 255, 0.95);
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .why-subtitle {
            position: relative;
            z-index: 10;
            text-align: center;
            font-size: 1.1rem;
            color: rgba(125, 211, 192, 0.5);
            font-family: 'Caveat', cursive;
            margin-bottom: 70px;
            font-weight: 400;
            letter-spacing: 0.02em;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .comparison-flow {
            position: relative;
            z-index: 10;
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 50px;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .comparison-item {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 100px 1fr;
            gap: 40px;
            align-items: center;
            padding: 0;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .comparison-side {
            position: relative;
            padding: 40px 30px;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            opacity: 1 !important;
            visibility: visible !important;
        }

        .comparison-side:hover {
            border-color: rgba(125, 211, 192, 0.3);
            background: rgba(0, 0, 0, 0.5);
            transform: translateY(-2px);
        }

        .comparison-side.traditional {
            border-left: 2px solid rgba(255, 255, 255, 0.2);
        }

        .comparison-side.posthumane {
            border-left: 2px solid rgba(125, 211, 192, 0.5);
            background: rgba(125, 211, 192, 0.08);
        }

        .comparison-side.posthumane:hover {
            border-left-color: rgba(125, 211, 192, 0.7);
            background: rgba(125, 211, 192, 0.12);
            border-color: rgba(125, 211, 192, 0.3);
        }

        .side-label {
            font-family: 'Caveat', cursive;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 16px;
            opacity: 0.4 !important;
            visibility: visible !important;
            letter-spacing: 0.01em;
        }

        .comparison-side.posthumane .side-label {
            color: #7dd3c0;
            opacity: 0.6 !important;
            visibility: visible !important;
        }

        .side-icon {
            width: 32px;
            height: 32px;
            margin-bottom: 20px;
            stroke-width: 1;
            opacity: 0.3 !important;
            visibility: visible !important;
        }

        .comparison-side.posthumane .side-icon {
            stroke: #7dd3c0;
            opacity: 0.5 !important;
            visibility: visible !important;
        }

        .side-value {
            font-size: 1.6rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 12px;
            line-height: 1.2;
            letter-spacing: -0.01em;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .comparison-side.posthumane .side-value {
            color: #7dd3c0;
            font-weight: 400;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .side-description {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .comparison-divider {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .divider-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, transparent, rgba(125, 211, 192, 0.2), transparent);
            opacity: 1 !important;
            visibility: visible !important;
        }

        .divider-arrow {
            font-size: 1.5rem;
            color: rgba(125, 211, 192, 0.3);
            transition: all 0.3s ease;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .comparison-item:hover .divider-arrow {
            color: rgba(125, 211, 192, 0.5);
        }

        @media (max-width: 1024px) {
            .comparison-item {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .comparison-divider {
                flex-direction: row;
                gap: 10px;
            }

            .divider-line {
                width: 50px;
                height: 1px;
                background: linear-gradient(to right, transparent, rgba(125, 211, 192, 0.2), transparent);
            }

            .divider-arrow {
                transform: rotate(90deg);
            }
        }

        @media (max-width: 640px) {
            .why-title {
                font-size: 2.2rem;
            }

            .why-subtitle {
                font-size: 1rem;
            }

            .comparison-side {
                padding: 30px 24px;
            }

            .side-value {
                font-size: 1.4rem;
            }

            .comparison-flow {
                gap: 40px;
            }
        }

        /* ========== PRICING SECTION ========== */
        .pricing-section {
            position: relative;
            width: 100%;
            padding: 100px 20px;
            background: transparent;
            z-index: 100;
            isolation: isolate;
        }

        .pricing-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            z-index: 101;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .pricing-label {
            font-family: 'Caveat', cursive;
            font-size: 1rem;
            letter-spacing: 0.08em;
            color: rgba(125, 211, 192, 0.7);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .pricing-header h2 {
            font-size: 3rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .pricing-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
        }

        .pricing-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            perspective: 1000px;
        }

        .service-card {
            position: relative;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(125, 211, 192, 0.15);
            border-radius: 20px;
            padding: 32px 24px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            transform-style: preserve-3d;
            animation: floatCard 4s ease-in-out infinite;
        }

        .service-card:nth-child(1) {
            animation-delay: 0s;
        }

        .service-card:nth-child(2) {
            animation-delay: 1s;
        }

        .service-card:nth-child(3) {
            animation-delay: 2s;
        }

        .service-card:nth-child(4) {
            animation-delay: 3s;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        .service-card:hover {
            border-color: rgba(125, 211, 192, 0.4);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 50px rgba(125, 211, 192, 0.2);
        }

        .service-card.featured {
            border: 2px solid #00BFA6 !important;
            background: rgba(0, 191, 166, 0.08) !important;
            box-shadow:
                0 0 25px rgba(0, 191, 166, 0.4),
                0 0 50px rgba(0, 191, 166, 0.2),
                0 15px 40px rgba(0, 0, 0, 0.3) !important;
            transform: scale(1.03);
            z-index: 2;
            position: relative;
        }

        .service-card.featured::before {
            content: '⭐ RECOMMENDED';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #00BFA6, #7dd3c0);
            color: #0a0a0a;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            box-shadow: 0 4px 15px rgba(0, 191, 166, 0.5);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #7dd3c0, #5ab5a3);
            color: #0a0a0a;
            padding: 5px 16px;
            border-radius: 16px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 12px rgba(125, 211, 192, 0.5);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(125, 211, 192, 0.1);
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .service-icon svg {
            width: 24px;
            height: 24px;
            stroke: #7dd3c0;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .service-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 12px;
        }

        .service-price {
            font-size: 1.6rem;
            font-weight: 700;
            color: #7dd3c0;
            margin-bottom: 8px;
        }

        .service-delivery {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(125, 211, 192, 0.1);
        }

        .service-includes {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
        }

        .service-includes li {
            padding: 8px 0;
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.9rem;
            line-height: 1.5;
            position: relative;
            padding-left: 20px;
        }

        .service-includes li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #7dd3c0;
            font-weight: 700;
        }

        .service-examples {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.95);
            font-style: italic;
            margin-bottom: 24px;
            padding: 12px;
            background: rgba(125, 211, 192, 0.03);
            border-radius: 8px;
        }

        .service-btn {
            display: block;
            width: 100%;
            padding: 14px 24px;
            background: rgba(125, 211, 192, 0.1);
            border: 1px solid rgba(125, 211, 192, 0.3);
            border-radius: 50px;
            color: #7dd3c0;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .service-btn:hover {
            background: rgba(125, 211, 192, 0.2);
            border-color: rgba(125, 211, 192, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(125, 211, 192, 0.3);
        }

        .service-btn.featured {
            background: linear-gradient(135deg, #7dd3c0, #5ab5a3);
            color: #0a0a0a;
            border: none;
        }

        .service-btn.featured:hover {
            background: linear-gradient(135deg, #8ee4cc, #6bc4b1);
            box-shadow: 0 6px 20px rgba(125, 211, 192, 0.5);
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .pricing-services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 4rem 1.5rem;
            }

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

            .pricing-header {
                text-align: center;
                margin-bottom: 3rem;
            }

            .pricing-header h2 {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
                line-height: 1.2;
            }

            .pricing-subtitle {
                font-size: 0.95rem;
            }

            .pricing-services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .service-name {
                font-size: 1.4rem;
            }

            .service-price {
                font-size: 1.8rem;
            }

            .service-btn {
                padding: 1rem 1.5rem;
                font-size: 0.95rem;
                min-height: 48px;
            }
        }

        @media (max-width: 480px) {
            .pricing-section {
                padding: 3rem 1rem;
            }

            .pricing-header h2 {
                font-size: 1.6rem;
            }

            .service-card {
                padding: 1.5rem 1.25rem;
            }

            .service-name {
                font-size: 1.25rem;
            }

            .service-price {
                font-size: 1.6rem;
            }
        }

        /* ========== WHATSAPP FLOATING BUTTON ========== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            animation: pulse 2s infinite;
        }

        .whatsapp-float a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float a:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* ========== CTA BUTTONS ========== */
        .cta-primary {
            display: inline-block;
            padding: 16px 32px;
            background: linear-gradient(135deg, #7dd3c0 0%, #5fb8a6 100%);
            color: #000;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(125, 211, 192, 0.3);
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(125, 211, 192, 0.5);
            background: linear-gradient(135deg, #8fe0cf 0%, #6fc9b7 100%);
        }

        .cta-secondary {
            display: inline-block;
            padding: 16px 32px;
            background: transparent;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            font-size: 1.05rem;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
        }

        .cta-secondary:hover {
            border-color: rgba(125, 211, 192, 0.5);
            background: rgba(125, 211, 192, 0.05);
            transform: translateY(-2px);
        }

        .cta-group {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ========== NAVBAR CTA ========== */
        .nav-cta-btn {
            padding: 10px 24px;
            background: linear-gradient(135deg, #7dd3c0 0%, #5fb8a6 100%);
            color: #000;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-cta-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(125, 211, 192, 0.4);
        }

        /* ========== QUOTE MODAL - CURSOR TRACKING SYSTEM ========== */
        .quote-modal {
            /* ALWAYS PRESENT BUT INVISIBLE */
            display: none;
            /* FIXED FULLSCREEN OVERLAY */
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            /* OVERLAY DOESN'T BLOCK CLICKS - ONLY MODAL CONTENT DOES */
            pointer-events: none !important;
            /* DARK BACKDROP */
            background: rgba(0, 0, 0, 0.85) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            /* ABOVE EVERYTHING */
            z-index: 999999 !important;
            /* NO DEFAULT CENTERING - JS WILL POSITION */
            margin: 0 !important;
            padding: 0 !important;
            overflow: hidden !important;
        }

        .quote-modal.active {
            display: block !important;
            /* OVERLAY CAPTURES CLICKS WHEN ACTIVE (for closing on outside click) */
            pointer-events: auto !important;
        }

        .quote-modal-content {
            /* ABSOLUTE POSITIONING - JS CONTROLS TOP/LEFT */
            position: absolute !important;
            /* DEFAULT - JS WILL OVERRIDE */
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) scale(0.95) !important;
            /* STYLING */
            background: #0a0a0a !important;
            border: 1px solid rgba(125, 211, 192, 0.3) !important;
            border-radius: 20px !important;
            padding: 35px !important;
            width: 460px !important;
            max-width: calc(100vw - 40px) !important;
            max-height: calc(100vh - 40px) !important;
            overflow-y: auto !important;
            /* MODAL CONTENT IS CLICKABLE */
            pointer-events: auto !important;
            /* SHADOW */
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(125, 211, 192, 0.15) !important;
            /* ANIMATION START STATE */
            opacity: 0 !important;
            transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease !important;
        }

        .quote-modal.active .quote-modal-content {
            opacity: 1 !important;
            transform: translate(-50%, -50%) scale(1) !important;
        }

        .quote-modal-close {
            position: absolute !important;
            top: 15px !important;
            right: 15px !important;
            width: 48px !important;
            height: 48px !important;
            min-width: 48px !important;
            min-height: 48px !important;
            background: rgba(255, 255, 255, 0.1) !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            border-radius: 50% !important;
            color: #fff !important;
            font-size: 28px !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            z-index: 10 !important;
            line-height: 1 !important;
        }

        .quote-modal-close:hover {
            background: rgba(125, 211, 192, 0.4) !important;
            border-color: #7dd3c0 !important;
            color: #7dd3c0 !important;
            transform: scale(1.1) !important;
        }

        .quote-modal h3 {
            font-size: 1.8rem;
            font-weight: 400;
            color: #fff;
            margin-bottom: 12px;
            margin-top: 0;
            padding-right: 50px;
        }

        .quote-modal p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .quote-form input,
        .quote-form select,
        .quote-form textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 14px;
            transition: all 0.3s ease;
            font-family: inherit;
            box-sizing: border-box;
        }

        .quote-form input:focus,
        .quote-form select:focus,
        .quote-form textarea:focus {
            outline: none;
            border-color: #7dd3c0;
            background: rgba(125, 211, 192, 0.05);
        }

        .quote-form input::placeholder,
        .quote-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .quote-form select {
            appearance: none;
            cursor: pointer;
        }

        .quote-form select option {
            background: #1a1a1a;
            color: #fff;
        }

        .quote-form textarea {
            min-height: 100px;
            resize: vertical;
        }

        .quote-form button[type="submit"] {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #7dd3c0 0%, #5fb8a6 100%);
            color: #000;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .quote-form button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(125, 211, 192, 0.4);
        }

        /* MOBILE QUOTE MODAL */
        @media (max-width: 768px) {
            .quote-modal {
                padding: 15px !important;
            }

            .quote-modal-content {
                padding: 30px 20px !important;
                max-height: 90vh !important;
            }

            .quote-modal h3 {
                font-size: 1.5rem;
            }
        }

        /* ========== FOOTER CTA SECTION ========== */
        .footer-cta-section {
            padding: 80px 20px;
            text-align: center;
            background: linear-gradient(180deg, transparent 0%, rgba(125, 211, 192, 0.02) 100%);
            border-top: 1px solid rgba(125, 211, 192, 0.1);
        }

        .footer-cta-section h2 {
            font-size: 3rem;
            font-weight: 200;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .footer-cta-section p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-cta-alternative {
            margin-top: 20px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.95);
        }

        .footer-cta-alternative a {
            color: #7dd3c0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-cta-alternative a:hover {
            color: #8fe0cf;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float a {
                width: 55px;
                height: 55px;
            }

            .cta-group {
                flex-direction: column;
                width: 100%;
            }

            .cta-primary,
            .cta-secondary {
                width: 100%;
                text-align: center;
            }

            .footer-cta-section h2 {
                font-size: 2rem;
            }

            .quote-modal-content {
                padding: 30px 20px;
            }
        }

        /* ========== MINIMAL HEADER ========== */
        .minimal-header {
            position: fixed;
            top: clamp(0.65rem, env(safe-area-inset-top, 0.9rem), 1.3rem);
            left: 50%;
            transform: translateX(-50%);
            width: min(1000px, calc(100% - 56px));
            z-index: 9999;
            padding: 0.65rem 1.5rem;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(18, 18, 22, 0.78), rgba(8, 8, 10, 0.58));
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(125, 211, 192, 0.08);
            backdrop-filter: blur(24px) saturate(160%);
            -webkit-backdrop-filter: blur(24px) saturate(160%);
            transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), background 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            box-sizing: border-box;
            overflow: visible;
            pointer-events: auto;
        }

        .minimal-header::before {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), rgba(125, 211, 192, 0.12) 45%, rgba(255, 255, 255, 0.05));
            opacity: 0.85;
            pointer-events: none;
            z-index: -1;
        }

        .minimal-header::after {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: inherit;
            background: radial-gradient(circle, rgba(125, 211, 192, 0.08), transparent 60%);
            opacity: 0.5;
            pointer-events: none;
            z-index: -2;
            filter: blur(6px);
        }


        .header-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }

        .header-logo {
            flex-shrink: 0;
        }

        .header-nav {
            flex: 1;
            display: flex;
            justify-content: center;
            margin-left: 0;
            margin-right: 0;
        }

        .header-cta {
            flex-shrink: 0;
            margin-left: 0;
            margin-right: 0;
        }

        /* Logo - Left Side with Animation */
        .header-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .header-logo-image {
            height: 58px;
            width: auto;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            filter: brightness(1) drop-shadow(0 0 0 rgba(125, 211, 192, 0));
        }

        .header-logo:hover .header-logo-image {
            transform: scale(1.1) rotate(2deg);
            filter: brightness(1.15) drop-shadow(0 0 20px rgba(125, 211, 192, 0.4));
        }

        /* Pulse animation for logo */
        @keyframes logoPulse {

            0%,
            100% {
                transform: scale(1);
                filter: brightness(1) drop-shadow(0 0 0 rgba(125, 211, 192, 0));
            }

            50% {
                transform: scale(1.05);
                filter: brightness(1.1) drop-shadow(0 0 15px rgba(125, 211, 192, 0.3));
            }
        }

        .header-logo-image {
            animation: logoPulse 4s ease-in-out infinite;
        }

        .header-logo:hover .header-logo-image {
            animation: none;
        }

        /* Navigation - Center, Minimal */
        .header-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            position: relative;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            letter-spacing: 0.015em;
            transition: color 0.15s ease;
            padding: 6px 2px;
            min-height: 44px;
            display: flex;
            align-items: center;
            -webkit-tap-highlight-color: transparent;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 50%;
            right: 50%;
            bottom: 0;
            height: 1px;
            background: rgba(125, 211, 192, 0.8);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover {
            color: rgba(255, 255, 255, 0.95);
        }

        .nav-link:hover::after {
            left: 0;
            right: 0;
        }

        .nav-link.active {
            color: #fff;
        }

        /* Book a Call - Right Side, Handwritten */
        .header-cta {
            font-family: 'Caveat', cursive;
            color: #7dd3c0;
            font-weight: 600;
            font-size: 1.25rem;
            transition: color 0.15s ease;
            position: relative;
            padding: 0 !important;
            margin: 0 !important;
            text-decoration: none;
            white-space: nowrap;
            min-height: auto !important;
            height: auto !important;
            display: inline-block;
            -webkit-tap-highlight-color: transparent;
            background: none !important;
            border: none !important;
            box-shadow: none !important;
            line-height: 1.5;
        }

        .header-cta::after {
            content: '';
            position: absolute;
            left: -5%;
            right: -5%;
            bottom: -2px;
            height: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 15'%3E%3Cpath d='M3,10 Q25,7 50,11 T100,9 Q130,12 160,8 T197,10' stroke='%237dd3c0' stroke-width='2' fill='none' stroke-linecap='round' opacity='0.5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .header-cta:hover {
            color: #fff;
            transform: none;
        }

        .header-cta:hover::after {
            opacity: 1;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 10px;
            background: none;
            border: none;
            cursor: pointer;
            transition: transform 0.15s ease;
            min-width: 48px;
            min-height: 48px;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            user-select: none;
            -webkit-user-select: none;
            pointer-events: auto;
            z-index: 10001;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .mobile-menu-toggle span {
            width: 24px;
            height: 2px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu-toggle:hover span {
            background: #7dd3c0;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translateY(7px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(-7px);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .minimal-header {
                width: min(960px, calc(100% - 40px));
                padding: 0.85rem 1.5rem;
                top: clamp(0.75rem, env(safe-area-inset-top, 0.9rem), 1.35rem);
            }

            .header-wrapper {
                gap: 40px;
                background: transparent !important;
                border: none !important;
                box-shadow: none !important;
            }

            .header-nav {
                gap: 32px;
            }

            .header-logo-image {
                height: 60px;
            }

            .nav-link {
                font-size: 0.88rem;
                padding: 12px 24px;
                min-height: 48px;
            }

            .header-cta {
                font-size: 1.15rem;
                background: none !important;
                border: none !important;
                padding: 0 !important;
            }
        }

        @media (max-width: 768px) {
            .minimal-header {
                width: calc(100% - 28px);
                max-width: calc(100% - 28px);
                padding: 0.7rem 1.1rem;
                top: calc(env(safe-area-inset-top, 0px) + 0.65rem);
                border-radius: 24px;
                transform: translateX(-50%);
                box-shadow: 0 14px 40px rgba(0, 0, 0, 0.42);
            }

            .minimal-header.scrolled {
                transform: translateX(-50%) translateY(-0.2rem) scale(0.99);
            }

            .header-wrapper {
                gap: 10px;
                justify-content: flex-start;
                align-items: center;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                overflow: visible;
                padding-right: 50px;
            }

            .header-logo {
                order: 1;
                flex-shrink: 0;
            }

            .header-nav {
                display: none !important;
            }

            .header-cta {
                display: none !important;
            }

            .mobile-tagline {
                display: block !important;
                order: 2 !important;
                flex: 1 !important;
                text-align: center !important;
                font-size: 0.75rem !important;
                font-style: italic !important;
                color: rgba(125, 211, 192, 0.9) !important;
                font-weight: 400 !important;
                letter-spacing: 0.02em !important;
                padding: 0 10px !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
            }

            .header-logo-image {
                height: 45px;
                max-width: 150px;
            }

            .mobile-menu-toggle {
                display: flex !important;
                visibility: visible !important;
                opacity: 1 !important;
                z-index: 1001 !important;
                order: 3;
                pointer-events: auto !important;
                cursor: pointer !important;
                flex-shrink: 0;
                width: 44px !important;
                height: 44px !important;
                flex-direction: column !important;
                justify-content: center !important;
                align-items: center !important;
                background: transparent !important;
                border: none !important;
                padding: 10px !important;
            }

            .mobile-menu-toggle span {
                display: block !important;
                width: 24px !important;
                height: 2px !important;
                background: #fff !important;
                margin: 3px 0 !important;
                border-radius: 2px !important;
                transition: all 0.3s ease !important;
            }

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

            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0 !important;
                transform: translateX(-20px) !important;
            }

            .mobile-menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px) !important;
            }

            .header-nav {
                position: fixed;
                top: 80px;
                left: 50%;
                transform: translateX(-50%) translateY(-20px) scale(0.95);
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(30px);
                -webkit-backdrop-filter: blur(30px);
                padding: 24px 0;
                border-radius: 16px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.3s;
                pointer-events: none;
                width: calc(100% - 32px);
                max-width: 360px;
                flex: none;
                margin-top: 0;
                z-index: 10000;
                touch-action: pan-y;
                -webkit-overflow-scrolling: touch;
                max-height: calc(100vh - 100px);
                overflow-y: auto;
            }

            .header-nav.active {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateX(-50%) translateY(0) scale(1) !important;
                pointer-events: auto !important;
                transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s !important;
                z-index: 1000 !important;
            }

            .header-nav .nav-link {
                padding: 14px 24px;
                min-height: 48px;
                justify-content: flex-start;
                touch-action: manipulation;
                -webkit-tap-highlight-color: rgba(125, 211, 192, 0.2);
                -webkit-touch-callout: none;
                user-select: none;
                -webkit-user-select: none;
                cursor: pointer;
            }

            .header-nav .header-cta {
                margin: 8px 16px 0 !important;
                padding: 0 !important;
                justify-content: center;
                background: none !important;
                border: none !important;
            }

            .nav-link {
                font-size: 1.05rem;
                padding: 6px 0;
            }

            .header-cta {
                margin-top: 16px !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding: 0 !important;
                font-size: 1.4rem;
                background: none !important;
                border: none !important;
            }
        }

        @media (max-width: 480px) {
            .minimal-header {
                width: calc(100% - 16px);
                max-width: calc(100% - 16px);
                padding: 0.85rem 1rem;
                top: calc(env(safe-area-inset-top, 0px) + 0.65rem);
                border-radius: 24px;
            }

            .minimal-header.scrolled {
                transform: translateX(-50%) translateY(-0.15rem) scale(0.995);
            }

            .header-wrapper {
                gap: 8px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .header-logo-image {
                height: 38px;
                max-width: 130px;
            }

            .header-cta {
                font-size: 1.1rem;
                white-space: nowrap;
            }
        }

        /* ========== SCROLL PROGRESS BAR ========== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #7dd3c0 0%, #8fe0cf 100%);
            z-index: 99999;
            transition: width 0.1s linear;
            box-shadow: 0 0 10px rgba(125, 211, 192, 0.5);
        }

        /* ========== LOADING ANIMATION ========== */

        /* ========== BACK TO TOP BUTTON ========== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #7dd3c0 0%, #5bc1ac 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 9998;
            box-shadow: 0 4px 20px rgba(125, 211, 192, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(125, 211, 192, 0.5);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
            fill: #0a0a0a;
        }

        /* ========== FAQ MODAL ========== */
        .faq-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 100000;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            overflow-x: hidden;
        }

        .faq-modal.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .faq-modal-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 2rem 4rem;
            transform: translateY(30px);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-modal.active .faq-modal-container {
            transform: translateY(0);
        }

        .faq-modal-close {
            position: fixed;
            top: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #fff;
            font-size: 1.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 100001;
        }

        .faq-modal-close:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.1) rotate(90deg);
        }

        .faq-modal-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-modal-label {
            font-family: 'Caveat', cursive;
            font-size: 1.2rem;
            color: rgba(125, 211, 192, 0.8);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .faq-modal-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .faq-modal-title .highlight {
            font-family: 'Caveat', cursive;
            font-weight: 700;
            color: #7dd3c0;
            font-size: 1.1em;
        }

        .faq-modal-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-search-container {
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .faq-search-input {
            width: 100%;
            padding: 1.2rem 3rem 1.2rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-search-input:focus {
            outline: none;
            border-color: rgba(125, 211, 192, 0.5);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(125, 211, 192, 0.1);
        }

        .faq-search-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .faq-category {
            margin-bottom: 4rem;
        }

        .faq-category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-category-icon {
            width: 50px;
            height: 40px;
            background: linear-gradient(135deg, #7dd3c0 0%, #5bc1ac 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: #0a0a0a;
        }

        .faq-category-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
        }

        .faq-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover {
            border-color: rgba(125, 211, 192, 0.3);
            transform: translateX(4px);
        }

        .faq-item.active {
            border-color: rgba(125, 211, 192, 0.4);
        }

        .faq-item.hidden {
            display: none;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            user-select: none;
        }

        .faq-question-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            flex: 1;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-question-text {
            color: #7dd3c0;
        }

        .faq-toggle {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            font-size: 1.2rem;
            color: #7dd3c0;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
            background: rgba(125, 211, 192, 0.15);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer-content {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .faq-answer-content strong {
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
        }

        .faq-answer-content ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .faq-answer-content li {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* ========== FOOTER ========== */
        /* ========== MINIMALIST ANIMATED FOOTER ========== */
        .main-footer {
            position: relative;
            background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
            padding: 4rem 2rem;
            border-top: 1px solid rgba(125, 211, 192, 0.1);
            z-index: 30;
        }

        .footer-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2.5rem;
            text-align: center;
        }

        .footer-logo-minimal {
            opacity: 0;
            transform: translateY(30px) scale(0.8);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .main-footer.visible .footer-logo-minimal {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .footer-logo-minimal img {
            width: 60px;
            height: auto;
            filter: drop-shadow(0 0 15px rgba(125, 211, 192, 0.4));
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-logo-minimal img:hover {
            filter: drop-shadow(0 0 25px rgba(125, 211, 192, 0.6));
            transform: scale(1.1) rotate(5deg);
        }

        .footer-links-minimal {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
        }

        .main-footer.visible .footer-links-minimal {
            opacity: 1;
            transform: translateY(0);
        }

        .footer-link-minimal {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 0.02em;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .footer-link-minimal::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: #7dd3c0;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-link-minimal:hover {
            color: #7dd3c0;
        }

        .footer-link-minimal:hover::after {
            width: 100%;
        }

        .footer-emails-minimal {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
        }

        .main-footer.visible .footer-emails-minimal {
            opacity: 1;
            transform: translateY(0);
        }

        .footer-email-minimal {
            font-size: 0.9rem;
            color: rgba(125, 211, 192, 0.8);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 0.02em;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .footer-email-minimal::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: #7dd3c0;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-email-minimal:hover {
            color: #7dd3c0;
            text-shadow: 0 0 20px rgba(125, 211, 192, 0.5);
        }

        .footer-email-minimal:hover::after {
            width: 100%;
        }

        .footer-copyright-minimal {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
        }

        .main-footer.visible .footer-copyright-minimal {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .footer-links-minimal {
                gap: 1.5rem;
            }

            .footer-link-minimal {
                font-size: 0.85rem;
            }

            .faq-modal-container {
                padding: 5rem 1.5rem 3rem;
            }

            .faq-modal-close {
                top: 1.5rem;
                right: 1.5rem;
                width: 45px;
                height: 45px;
            }

            .faq-modal-title {
                font-size: 2rem;
            }

            .faq-category-title {
                font-size: 1.4rem;
            }

            .faq-question {
                padding: 1rem;
            }

            .faq-question-text {
                font-size: 1rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 1rem 1rem;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }

            /* Mission Section Mobile */
            .mission-section {
                padding: 6rem 1.5rem;
            }

            .mission-paragraph {
                font-size: clamp(1.2rem, 4vw, 1.6rem);
                margin-bottom: 1.5rem;
            }

            .mission-cta {
                padding: 0.9rem 2rem;
                font-size: 0.8rem;
            }

        }

        /* ========== ADDITIONAL MOBILE OPTIMIZATIONS ========== */

        /* Better touch targets for mobile */
        @media (max-width: 768px) {

            .btn,
            .cta-primary,
            .cta-secondary,
            .mission-cta {
                min-height: 44px;
                min-width: 44px;
                padding: 0.9rem 1.8rem;
            }

            /* Larger font sizes for better readability */
            body {
                font-size: 16px;
            }

            /* Hero section mobile optimization */
            .hero-section {
                margin-top: 0 !important;
                padding-top: 0 !important;
                min-height: 100svh;
                /* Use svh for better mobile support */
            }

            .hero-title {
                font-size: clamp(1.75rem, 5vw, 2.5rem);
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                gap: 1rem;
            }

            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }

            /* Trust section mobile */
            .trust-section {
                padding: 1rem 1.5rem;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .trust-logos {
                justify-content: center;
                gap: 1.5rem;
            }

            .trust-logo {
                width: 90px;
                height: 30px;
            }

            /* About section mobile */
            .about-content {
                padding: 0 2rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .text-content h1 {
                font-size: clamp(2rem, 6vw, 2.8rem);
                text-align: center !important;
            }

            .text-content p {
                text-align: center !important;
            }

            .founders-grid {
                flex-direction: column;
                gap: 2rem;
            }

            .founder-photo {
                width: 120px;
                height: 120px;
            }

            /* Portfolio section mobile */
            .portfolio-carousel {
                min-height: 400px;
            }

            .portfolio-carousel-inner {
                height: 400px;
            }

            .portfolio-card {
                width: 280px;
                height: 420px;
            }

            .portfolio-nav {
                width: 52px;
                height: 52px;
                font-size: 1.45rem;
                left: auto !important;
                right: auto !important;
            }

            /* Services section mobile */
            .service-visual {
                height: 200px;
            }

            /* Better spacing for mobile */
            section {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        /* Extra small devices */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.5rem;
            }

            .hero-subtitle {
                font-size: 0.85rem;
            }

            .about-content {
                padding: 0 1.5rem;
            }

            .text-content h1 {
                font-size: 1.8rem;
            }

            .founder-photo {
                width: 100px;
                height: 100px;
            }

            .portfolio-card {
                width: 260px;
                height: 380px;
            }

            .trust-logo {
                width: 70px;
                height: 25px;
            }
        }

        /* Landscape mode on mobile */
        @media (max-width: 896px) and (orientation: landscape) {
            .hero-section {
                min-height: auto;
                padding: 2rem 0;
            }

            .hero-content {
                padding-top: 15vh;
            }

            .trust-section {
                position: relative;
                padding: 1rem 2rem;
            }
        }

        /* Reduce animations on low-end devices */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            body {
                background: #0a0a0a;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {

            .btn,
            .cta-primary,
            .cta-secondary {
                border: 2px solid currentColor;
            }

            .hero-title,
            .hero-subtitle {
                text-shadow: none;
            }
        }

        /* Print styles */
        @media print {

            .page-loader,
            .scroll-progress,
            .back-to-top,
            .minimal-header,
            .trust-section,
            .portfolio-nav,
            .portfolio-nav-controls,
            .faq-modal,
            .manifesto-modal {
                display: none !important;
            }

            body {
                background: white;
                color: black;
            }

            section {
                page-break-inside: avoid;
            }
        }

        /* Prevent text overflow */
        * {
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Better focus states for accessibility */
        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid #7dd3c0;
            outline-offset: 2px;
        }

        /* Skip to content link for accessibility */
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: #7dd3c0;
            color: #0a0a0a;
            padding: 8px;
            text-decoration: none;
            z-index: 100000;
        }

        .skip-to-content:focus {
            top: 0;
        }

        /* ========================================
   NEW FEATURES STYLES
   ======================================== */

        /* ========== 1. TYPEWRITER EFFECT ========== */
        .typewriter-text {
            position: relative;
            display: inline-block;
            overflow: hidden;
            border-right: 3px solid #7dd3c0;
            white-space: nowrap;
            animation: typewriter 2s steps(40, end) 1s 1 normal both,
                blink 0.75s step-end infinite;
        }

        @keyframes typewriter {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes blink {

            from,
            to {
                border-color: transparent;
            }

            50% {
                border-color: #7dd3c0;
            }
        }

        /* Stop blinking after animation */
        .typewriter-text.typed {
            border-right: none;
            animation: none;
        }

        /* ========== 3. CONTACT FORM SECTION ========== */
        .contact-section {
            padding: 100px 20px;
            background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 50%, rgba(125, 211, 192, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(125, 211, 192, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #7dd3c0;
            font-weight: 600;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .contact-title {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .contact-title .highlight {
            color: #7dd3c0;
            font-style: italic;
        }

        .contact-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        /* Contact Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(125, 211, 192, 0.1);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(10px);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(125, 211, 192, 0.2);
            border-radius: 12px;
            color: #fff;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #7dd3c0;
            background: rgba(125, 211, 192, 0.05);
            transform: translateY(-2px);
        }

        .form-group input:focus+label,
        .form-group select:focus+label,
        .form-group textarea:focus+label,
        .form-group input:not(:placeholder-shown)+label,
        .form-group select:not([value=""])+label,
        .form-group textarea:not(:placeholder-shown)+label {
            top: -10px;
            left: 12px;
            font-size: 0.75rem;
            color: #7dd3c0;
            background: #0a0a0a;
            padding: 0 8px;
        }

        .form-group label {
            position: absolute;
            top: 16px;
            left: 20px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-error {
            display: block;
            color: #ff6b6b;
            font-size: 0.85rem;
            margin-top: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .form-group.error .form-error {
            opacity: 1;
        }

        .form-group.error input,
        .form-group.error select,
        .form-group.error textarea {
            border-color: #ff6b6b;
        }

        .form-submit-wrapper {
            margin-top: 30px;
            text-align: center;
        }

        .contact-submit-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: linear-gradient(135deg, #7dd3c0 0%, #5fb8a7 100%);
            color: #0a0a0a;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .contact-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(125, 211, 192, 0.3);
        }

        .contact-submit-btn:active {
            transform: translateY(-1px);
        }

        .contact-submit-btn .submit-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .contact-submit-btn:hover .submit-icon {
            transform: translateX(4px);
        }

        .form-message {
            margin-top: 20px;
            padding: 16px 20px;
            border-radius: 12px;
            display: none;
            align-items: center;
            gap: 12px;
            animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-message.show {
            display: flex;
        }

        .success-message {
            background: rgba(46, 213, 115, 0.1);
            border: 1px solid rgba(46, 213, 115, 0.3);
            color: #2ed573;
        }

        .error-message {
            background: rgba(255, 107, 107, 0.1);
            border: 1px solid rgba(255, 107, 107, 0.3);
            color: #ff6b6b;
        }

        .form-message svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-alternative {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(125, 211, 192, 0.1);
        }

        .contact-alternative p {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 15px;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 30px;
            background: #25D366;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* ========== 5. PORTFOLIO LIGHTBOX ========== */
        .portfolio-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 100000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #7dd3c0;
            transform: rotate(90deg);
        }

        .lightbox-close svg {
            width: 24px;
            height: 24px;
            color: #fff;
        }

        .lightbox-content {
            max-width: 90vw;
            max-height: 90vh;
            width: 1200px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            animation: lightboxSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes lightboxSlideIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(30px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .lightbox-video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            /* 16:9 */
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        }

        .lightbox-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .lightbox-info {
            text-align: center;
            color: #fff;
        }

        .lightbox-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #fff;
        }

        .lightbox-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* ========== 6. LANGUAGE TOGGLE ========== */
        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 20px;
        }

        .lang-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 6px;
        }

        .lang-btn:hover {
            color: #7dd3c0;
            background: rgba(125, 211, 192, 0.1);
        }

        .lang-btn.active {
            color: #7dd3c0;
            background: rgba(125, 211, 192, 0.15);
        }

        .lang-separator {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
        }

        /* ========== 7. HEADER (NON-STICKY) ========== */

        /* ========== 8. PORTFOLIO NAVIGATION OPTIMIZE ========== */
        /* Hide portfolio dots */
        .portfolio-dots {
            display: none !important;
        }

        /* Enhance arrow buttons */
        .portfolio-prev,
        .portfolio-next {
            width: 60px !important;
            height: 60px !important;
            background: rgba(125, 211, 192, 0.1) !important;
            border: 2px solid rgba(125, 211, 192, 0.3) !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        .portfolio-prev:hover,
        .portfolio-next:hover {
            background: rgba(125, 211, 192, 0.2) !important;
            border-color: #7dd3c0 !important;
            transform: scale(1.1) !important;
            box-shadow: 0 0 30px rgba(125, 211, 192, 0.4) !important;
        }

        .portfolio-prev svg,
        .portfolio-next svg {
            width: 30px !important;
            height: 30px !important;
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 768px) {

            /* Delivery Counter */
            .counter-value {
                font-size: 3rem;
            }

            .counter-value::after {
                font-size: 2rem;
            }

            /* Contact Form */
            .contact-title {
                font-size: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 30px 20px;
            }

            /* Case Study */
            .case-title {
                font-size: 2rem;
            }

            .case-content-grid {
                grid-template-columns: 1fr;
            }

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

            .timeline-label {
                font-size: 0.7rem;
            }

            /* Lightbox */
            .lightbox-content {
                max-width: 95vw;
                padding: 20px;
            }

            .lightbox-title {
                font-size: 1.5rem;
            }

            .lightbox-description {
                font-size: 1rem;
            }

            .lightbox-close {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }

            /* Language Toggle */
            .lang-toggle {
                margin-left: 0;
                margin-top: 10px;
            }
        }

        @media (max-width: 480px) {
            .contact-title {
                font-size: 1.75rem;
            }
        }

        /* ========== COMPREHENSIVE MOBILE OPTIMIZATIONS ========== */

        /* Hero Section Mobile - Heavily Optimized */
        @media (max-width: 768px) {

            html,
            body {
                overflow-x: hidden;
                max-width: 100vw;
                position: relative;
                /* iOS specific */
                -webkit-text-size-adjust: 100%;
                height: 100%;
            }

            /* Safe area insets for notch devices */
            .hero-section {
                min-height: 100svh;
                min-height: -webkit-fill-available;
                height: auto;
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
                touch-action: pan-y;
                -webkit-overflow-scrolling: touch;
                padding-top: env(safe-area-inset-top);
                padding-bottom: env(safe-area-inset-bottom);
            }

            /* Hero content - simplified for mobile */
            .hero-content {
                position: relative;
                width: 100%;
                max-width: 100vw;
                padding-top: max(15vh, env(safe-area-inset-top, 0px) + 80px);
                padding-left: max(1.5rem, env(safe-area-inset-left, 0px) + 1.5rem);
                padding-right: max(1.5rem, env(safe-area-inset-right, 0px) + 1.5rem);
                padding-bottom: 3rem;
                box-sizing: border-box;
                pointer-events: none;
                z-index: 50;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                min-height: 80vh;
            }

            .hero-text {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                pointer-events: auto;
            }

            .hero-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            .hero-buttons {
                pointer-events: auto !important;
                width: 100%;
                z-index: 100;
                gap: 1rem;
                margin-top: 2rem;
            }

            .hero-buttons a,
            .cta-primary,
            .cta-secondary {
                pointer-events: auto !important;
                touch-action: manipulation !important;
                -webkit-tap-highlight-color: rgba(125, 211, 192, 0.3) !important;
                box-sizing: border-box;
                cursor: pointer !important;
                user-select: none;
                -webkit-user-select: none;
                will-change: transform;
                backface-visibility: hidden;
                -webkit-backface-visibility: hidden;
            }

            /* Disable hover effects on mobile */
            .hero-buttons a:hover,
            .cta-primary:hover,
            .cta-secondary:hover {
                transform: none;
            }

            .hero-title {
                font-size: clamp(1.75rem, 6vw, 2.2rem);
                line-height: 1.2;
                margin-bottom: 1.2rem;
                letter-spacing: -0.01em;
                max-width: 100%;
                word-wrap: break-word;
            }

            .hero-subtitle {
                font-size: clamp(0.9rem, 3vw, 1rem);
                line-height: 1.6;
                margin-bottom: 2rem;
                max-width: 100%;
                word-wrap: break-word;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 100%;
                gap: 1rem;
                box-sizing: border-box;
            }

            .hero-buttons a {
                width: 100%;
                max-width: 100%;
                padding: 1rem 1.5rem;
                font-size: 0.95rem;
                min-height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-sizing: border-box;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding-top: 0;
                max-width: 100vw;
                overflow-x: hidden;
                min-height: 100dvh;
            }

            .hero-content {
                padding-top: max(12vh, env(safe-area-inset-top, 0px) + 70px);
                padding-left: max(1.25rem, env(safe-area-inset-left, 0px) + 1.25rem);
                padding-right: max(1.25rem, env(safe-area-inset-right, 0px) + 1.25rem);
                max-width: 100vw;
                box-sizing: border-box;
            }

            .hero-title {
                font-size: clamp(1.4rem, 8vw, 1.8rem);
                line-height: 1.15;
                max-width: 100%;
                text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            }

            .hero-subtitle {
                font-size: clamp(0.85rem, 4vw, 0.95rem);
                line-height: 1.5;
                max-width: 100%;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 0.75rem;
            }

            .hero-buttons a {
                padding: 1rem 1.5rem;
                font-size: 0.95rem;
                max-width: 100%;
                width: 100%;
                justify-content: center;
            }
        }

        /* Trust Section Mobile */
        @media (max-width: 768px) {
            .trust-section {
                position: relative;
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 1.5rem 1.5rem 2rem;
                gap: 1rem;
            }

            .trust-text {
                font-size: 0.75rem;
            }

            .trust-logos {
                gap: 1.5rem;
                justify-content: center;
            }

            .trust-logo {
                width: 80px;
                height: 30px;
            }
        }

        @media (max-width: 480px) {
            .trust-logos {
                gap: 1rem;
            }

            .trust-logo {
                width: 70px;
                height: 25px;
            }
        }

        /* About Section Mobile */
        @media (max-width: 768px) {
            .about-content {
                padding: 0 1.5rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .text-content h1 {
                font-size: clamp(1.8rem, 6vw, 2.5rem);
                text-align: center !important;
            }

            .text-content p {
                font-size: 0.95rem;
                text-align: center !important;
            }

            .services-list {
                gap: 1.5rem;
            }

            .service-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .service-number {
                margin-bottom: 0.5rem;
            }

            .service-text h3,
            .service-text p {
                text-align: center !important;
            }

            .founders-grid {
                flex-direction: column;
                gap: 2.5rem;
            }

            .founder-photo {
                width: 120px;
                height: 120px;
            }

            .founder-quote {
                min-width: 250px;
                max-width: 280px;
                font-size: 1rem;
            }
        }

        /* Portfolio Section Mobile - Already handled above, removing duplicate */

        /* Contact Form Mobile */
        @media (max-width: 768px) {
            .contact-section {
                padding: 4rem 1.5rem;
            }

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

            .contact-form {
                padding: 2rem 1.5rem;
            }

            .form-group {
                margin-bottom: 1.5rem;
            }

            .form-input,
            .form-select,
            .form-textarea {
                font-size: 16px;
                /* Prevent iOS zoom */
            }

            .submit-btn {
                width: 100%;
                padding: 1rem;
                font-size: 1rem;
            }
        }

        /* Scroll offset for all sections to account for fixed header */
        section[id] {
            scroll-margin-top: 0;
        }

        /* Header Mobile - Optimized */
        @media (max-width: 768px) {
            .minimal-header {
                padding: 0.85rem 1.2rem !important;
                width: calc(100% - 24px) !important;
                border-radius: 28px !important;
                top: calc(env(safe-area-inset-top, 0px) + 0.7rem) !important;
            }

            .minimal-header.scrolled {
                padding: 0.75rem 1.2rem !important;
                box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45) !important;
            }

            .header-logo-image {
                height: 45px;
                width: auto;
            }

            .minimal-header.scrolled .header-logo-image {
                height: 40px;
            }
        }

        /* General Mobile Optimizations - Enhanced */
        @media (max-width: 768px) {

            /* Better touch targets - minimum 44px for accessibility */
            button,
            a.btn,
            a.cta-primary,
            a.cta-secondary,
            .portfolio-nav,
            .nav-link,
            .header-cta,
            /* Touch target sizes - minimum 44px (Apple), ideally 48px (Material Design) */
            .mobile-menu-toggle,
            input[type="submit"],
            input[type="button"],
            .portfolio-nav,
            .back-to-top,
            button,
            .btn,
            a.cta-primary,
            a.cta-secondary,
            .nav-link,
            .header-cta,
            .mission-cta,
            .pricing-cta,
            .service-cta,
            .faq-item,
            .modal-close,
            #acceptCookies,
            #rejectCookies,
            #customizeCookies {
                min-height: 48px;
                min-width: 48px;
                pointer-events: auto !important;
                touch-action: manipulation !important;
                cursor: pointer !important;
                -webkit-tap-highlight-color: rgba(125, 211, 192, 0.2);
                -webkit-touch-callout: none;
                user-select: none;
                position: relative;
                z-index: 1;
            }

            /* Cookie banner specific optimizations */
            .cookie-consent,
            .cookie-consent-content,
            .cookie-consent button {
                pointer-events: auto !important;
                touch-action: manipulation !important;
                -webkit-tap-highlight-color: rgba(125, 211, 192, 0.3);
            }

            /* Portfolio navigation specific optimizations */
            .portfolio-nav {
                pointer-events: auto !important;
                touch-action: manipulation !important;
                z-index: 1000 !important;
                display: flex !important;
            }

            /* Form inputs - prevent zoom on iOS */
            input,
            select,
            textarea {
                font-size: 16px;
                min-height: 48px;
                padding: 12px 16px;
                touch-action: manipulation;
                -webkit-tap-highlight-color: transparent;
            }

            input:focus,
            select:focus,
            textarea:focus {
                outline: 2px solid #7dd3c0;
                outline-offset: 2px;
            }

            /* Prevent text overflow */
            h1,
            h2,
            h3,
            h4,
            h5,
            h6,
            p {
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
            }

            /* Smooth scrolling */
            html {
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
            }

            /* Better tap highlight */
            * {
                -webkit-tap-highlight-color: rgba(125, 211, 192, 0.2);
            }

            /* Improve readability */
            body {
                font-size: 16px;
                line-height: 1.6;
            }

            /* Better spacing for mobile */
            section {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            /* Ensure buttons are thumb-friendly */
            .btn,
            .cta-primary,
            .cta-secondary {
                padding: 0.9rem 1.8rem;
                font-size: 0.95rem;
            }
        }

        /* Disable hover on touch devices */
        @media (hover: none) {

            .portfolio-card:hover,
            .btn:hover,
            .trust-logo:hover {
                transform: none;
            }
        }

        /* iOS specific fixes */
        @supports (-webkit-touch-callout: none) {

            .hero-section,
            .about-section,
            .portfolio-section {
                min-height: -webkit-fill-available;
            }
        }

        /* Small screens landscape */
        @media (max-width: 896px) and (orientation: landscape) {
            .hero-section {
                min-height: auto;
                height: auto;
                padding: 2rem 0;
            }

            .hero-content {
                padding-top: 12vh;
            }

            .trust-section {
                position: relative;
            }
        }

        /* ========== ACCESSIBILITY ENHANCEMENTS ========== */

        /* Skip to Main Content Link */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: #7dd3c0;
            color: #0a0a0a;
            padding: 12px 24px;
            text-decoration: none;
            font-weight: 600;
            z-index: 100000;
            transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 0 0 8px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .skip-link:focus {
            top: 0;
            outline: 3px solid #fff;
            outline-offset: 2px;
        }

        /* Enhanced Focus Indicators */
        *:focus-visible {
            outline: 2px solid #7dd3c0;
            outline-offset: 4px;
            border-radius: 4px;
        }

        /* Button Focus States */
        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 2px solid #7dd3c0;
            outline-offset: 4px;
        }

        /* Remove default outline for mouse users */
        *:focus:not(:focus-visible) {
            outline: none;
        }

        /* Ensure interactive elements are keyboard accessible */
        .nav-link:focus-visible,
        .cta-primary:focus-visible,
        .cta-secondary:focus-visible {
            outline: 2px solid #7dd3c0;
            outline-offset: 4px;
            box-shadow: 0 0 0 4px rgba(125, 211, 192, 0.2);
        }

        /* Modal Focus Trap */
        .manifesto-modal.active,
        .faq-modal.active,
        .quote-modal.active,
        .portfolio-lightbox.active {
            /* Ensure focus stays within modal */
            isolation: isolate;
        }

        /* Improve clickable area for touch */
        @media (hover: none) {

            a,
            button {
                min-height: 44px;
                min-width: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            /* Enhanced touch feedback */
            button:active,
            .btn:active,
            a.cta-primary:active,
            a.cta-secondary:active,
            .portfolio-nav:active,
            .nav-link:active,
            .header-cta:active {
                transform: scale(0.98);
                transition: transform 0.1s ease;
                opacity: 0.9;
            }

            /* Prevent unwanted text selection on touch */
            button,
            .btn,
            a.cta-primary,
            a.cta-secondary,
            .portfolio-nav,
            .nav-link,
            .header-cta {
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                -webkit-touch-callout: none;
                touch-action: manipulation;
            }
        }

        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {

            .nav-link,
            .cta-primary,
            .cta-secondary {
                border: 2px solid currentColor;
            }
        }

        /* ========== PORTFOLIO NEW FEATURES ========== */

        /* Category Filters */
        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 50px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .portfolio-filter {
            padding: 10px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(125, 211, 192, 0.2);
            border-radius: 30px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .portfolio-filter:hover {
            background: rgba(125, 211, 192, 0.1);
            border-color: rgba(125, 211, 192, 0.4);
            color: #fff;
        }

        .portfolio-filter.active {
            background: linear-gradient(135deg, rgba(125, 211, 192, 0.3), rgba(125, 211, 192, 0.15));
            border-color: #7dd3c0;
            color: #7dd3c0;
            box-shadow: 0 0 20px rgba(125, 211, 192, 0.2);
        }

        /* Video Counter */
        .portfolio-counter {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(125, 211, 192, 0.15);
            border-radius: 20px;
            font-family: 'SF Mono', 'Fira Code', monospace;
        }

        .counter-current {
            color: #7dd3c0;
            font-size: 1rem;
            font-weight: 600;
        }

        .counter-separator {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
        }

        .counter-total {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Brand Logo on Cards */
        .portfolio-brand-logo {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 6px;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .portfolio-brand-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .portfolio-card:hover .portfolio-brand-logo {
            opacity: 1;
        }

        /* Hover Video Preview Container */
        .portfolio-video-preview {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 2;
        }

        .portfolio-video-preview video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
        }

        .portfolio-card.active:hover .portfolio-video-preview {
            opacity: 1;
        }

        /* Hidden class for filtered cards */
        .portfolio-card.filtered-out {
            display: none !important;
        }

        /* ========== MOBILE PORTFOLIO - COMPLETE REWRITE ========== */
        @media (max-width: 768px) {

            /* ===== PORTFOLIO SECTION CONTAINER ===== */
            .portfolio-section {
                padding: 40px 0 60px 0 !important;
            }

            .portfolio-container {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: flex-start !important;
                width: 100% !important;
                max-width: 100vw !important;
                padding: 0 !important;
                margin: 0 !important;
                gap: 20px !important;
            }

            /* ===== CAROUSEL WRAPPER ===== */
            .portfolio-carousel {
                width: 100% !important;
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
                min-height: 380px !important;
                position: relative !important;
                overflow: hidden !important;
            }

            /* ===== CAROUSEL INNER - Cards Container ===== */
            .portfolio-carousel-inner {
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
                width: 100% !important;
                height: 380px !important;
                position: relative !important;
                overflow: visible !important;
            }

            /* ===== PORTFOLIO CARDS ===== */
            .portfolio-card {
                position: absolute !important;
                left: 50% !important;
                top: 50% !important;
                width: 85vw !important;
                max-width: 320px !important;
                height: 360px !important;
                margin: 0 !important;
                padding: 0 !important;
                border-radius: 20px !important;
                overflow: hidden !important;
                /* Hidden by default */
                opacity: 0 !important;
                visibility: hidden !important;
                transform: translate(-50%, -50%) scale(0.9) !important;
                transition: all 0.4s ease !important;
                z-index: 1 !important;
            }

            /* Active Card - VISIBLE AND CENTERED */
            .portfolio-card.active {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translate(-50%, -50%) scale(1) !important;
                z-index: 10 !important;
                filter: none !important;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
            }

            /* Card overlay for text readability */
            .portfolio-card-overlay {
                background: linear-gradient(to top,
                        rgba(0, 0, 0, 0.9) 0%,
                        rgba(0, 0, 0, 0.5) 40%,
                        transparent 100%) !important;
            }

            /* Card Text */
            .portfolio-card-title {
                font-size: 1.1rem !important;
                font-weight: 700 !important;
            }

            .portfolio-card-desc {
                font-size: 0.8rem !important;
            }

            /* Play Icon */
            .portfolio-play-icon {
                width: 50px !important;
                height: 50px !important;
            }

            /* ===== FILTER BUTTONS ===== */
            .portfolio-filters {
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
                flex-wrap: wrap !important;
                gap: 8px !important;
                width: 100% !important;
                padding: 0 15px !important;
                margin: 0 !important;
            }

            .portfolio-filter {
                padding: 8px 16px !important;
                font-size: 0.75rem !important;
                min-height: 36px !important;
                border-radius: 20px !important;
                flex-shrink: 0 !important;
                white-space: nowrap !important;
            }

            /* ===== NAVIGATION CONTROLS - Arrows + Counter INLINE ===== */
            .portfolio-nav-controls {
                display: flex !important;
                flex-direction: row !important;
                justify-content: center !important;
                align-items: center !important;
                gap: 15px !important;
                width: 100% !important;
                padding: 0 20px !important;
                margin-top: 10px !important;
            }

            /* Navigation Arrows */
            .portfolio-nav {
                width: 50px !important;
                height: 50px !important;
                min-width: 44px !important;
                min-height: 44px !important;
                font-size: 1.5rem !important;
                background: rgba(20, 20, 20, 0.9) !important;
                border: 2px solid rgba(0, 191, 166, 0.5) !important;
                border-radius: 50% !important;
                color: #fff !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                cursor: pointer !important;
                transition: all 0.3s ease !important;
                flex-shrink: 0 !important;
            }

            .portfolio-nav:active {
                transform: scale(0.9) !important;
                background: rgba(0, 191, 166, 0.2) !important;
                border-color: #00BFA6 !important;
            }

            /* Counter */
            .portfolio-counter {
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                padding: 8px 20px !important;
                min-height: 40px !important;
                background: rgba(20, 20, 20, 0.8) !important;
                border: 1px solid rgba(125, 211, 192, 0.3) !important;
                border-radius: 25px !important;
            }

            .counter-current,
            .counter-separator,
            .counter-total {
                font-size: 0.9rem !important;
            }

            /* ===== HIDE DOTS ON MOBILE ===== */
            .portfolio-dots {
                display: none !important;
            }

            /* ===== BRAND LOGO ===== */
            .portfolio-brand-logo {
                width: 28px !important;
                height: 28px !important;
                top: 8px !important;
                right: 8px !important;
            }
        }

        /* Extra Small Devices */
        @media (max-width: 480px) {
            .portfolio-filters {
                padding: 0 15px;
                gap: 8px;
                margin-top: 25px;
            }

            .portfolio-filter {
                padding: 10px 16px;
                font-size: 0.8rem;
            }

            .portfolio-nav-controls {
                gap: 0.5rem;
            }

            .portfolio-nav {
                width: 50px !important;
                height: 50px !important;
            }
        }

        /* ========== MOBILE CHAOS CARDS - CONTROLLED VERTICAL CHAOS ========== */
        @media (max-width: 768px) {
            .chaos-cluster {
                height: auto !important;
                min-height: 450px !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 0 !important;
                padding: 0 10px !important;
            }

            .chaos-card {
                position: relative !important;
                left: auto !important;
                right: auto !important;
                top: auto !important;
                bottom: auto !important;
                width: 85% !important;
                max-width: 280px !important;
                margin: -15px auto !important;
                padding: 1rem 1.25rem !important;
            }

            /* Staggered positioning for chaos feel */
            .chaos-card-1 {
                transform: rotate(-4deg) translateX(-15px) !important;
                z-index: 2 !important;
            }

            .chaos-card-2 {
                transform: rotate(2deg) translateX(20px) !important;
                z-index: 3 !important;
            }

            .chaos-card-3 {
                transform: rotate(-3deg) translateX(-10px) !important;
                z-index: 2 !important;
                opacity: 0.9 !important;
            }

            .chaos-card-4 {
                transform: rotate(4deg) translateX(15px) !important;
                z-index: 1 !important;
                opacity: 0.85 !important;
            }

            .chaos-card-5 {
                transform: rotate(-2deg) translateX(-5px) !important;
                z-index: 1 !important;
                opacity: 0.8 !important;
            }

            /* Smaller text for mobile */
            .chaos-card div:first-child {
                font-size: 1.4rem !important;
            }

            .chaos-card div:last-child {
                font-size: 0.65rem !important;
            }
        }

        @media (max-width: 480px) {
            .chaos-cluster {
                min-height: 400px !important;
            }

            .chaos-card {
                width: 90% !important;
                max-width: 250px !important;
                margin: -12px auto !important;
                padding: 0.85rem 1rem !important;
            }

            .chaos-card div:first-child {
                font-size: 1.2rem !important;
            }
        }

        /* ========== FOOTER MOBILE RESPONSIVE ========== */
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 2.5rem !important;
                text-align: center !important;
                padding: 3rem 1.25rem !important;
            }

            .footer-grid>div {
                text-align: center !important;
            }

            .footer-grid>div:last-child {
                text-align: center !important;
            }

            .footer-grid>div:last-child>div:last-child {
                justify-content: center !important;
                flex-wrap: wrap !important;
            }
        }