
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #0a0a0a;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #f5f5f5;
        }

        ::-webkit-scrollbar-thumb {
            background: #0a0a0a;
        }

        /* Header */
        .header {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        /* Typography */
        .text-hero {
            font-size: clamp(3rem, 11vw, 9rem);
            line-height: 0.9;
            font-weight: 900;
            letter-spacing: -0.04em;
        }

        .text-display {
            font-size: clamp(2rem, 5vw, 3.75rem);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .text-label {
            font-size: 0.6875rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        /* Container */
        .container-custom {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding: 0 1.25rem;
            }
        }

        /* Hover Effects */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-hover:hover {
            transform: translateY(-4px) scale(1.01);
        }

        .image-hover {
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .image-hover:hover {
            transform: scale(1.06);
        }

        /* Timeline */
        .timeline-line {
            position: relative;
        }

        .timeline-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, #e5e5e5, transparent);
        }

        @media (max-width: 768px) {
            .timeline-line::before {
                left: 0;
            }
        }

        /* Accordion */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-content.active {
            max-height: 400px;
        }

        .accordion-icon {
            transition: transform 0.3s ease;
        }

        .accordion-icon.active {
            transform: rotate(45deg);
        }

        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        /* Button Underline */
        .btn-underline {
            position: relative;
            overflow: hidden;
        }

        .btn-underline::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .btn-underline:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Service Row */
        .service-row {
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .service-row:hover {
            background: #fafafa;
            padding-left: 1rem;
        }

        /* Loading */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.6s, visibility 0.6s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-bar {
            width: 140px;
            height: 2px;
            background: #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .loader-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 45%;
            height: 100%;
            background: #0a0a0a;
            animation: loading 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }

        @keyframes loading {
            0% {
                left: -45%;
            }

            100% {
                left: 100%;
            }
        }

        /* Testimonial Dots */
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d4d4d4;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            width: 28px;
            border-radius: 4px;
            background: #0a0a0a;
        }

        /* Stats Counter */
        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1;
        }
