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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #ffffff;
            color: #111;
            line-height: 1.6;
            font-size: 14px;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 680px;
            margin: 0 auto;
            padding: 60px 24px 80px;
        }

        /* Header */
        header {
            margin-bottom: 48px;
        }

        header h1 {
            font-size: 22px;
            font-weight: 600;
            letter-spacing: -0.3px;
            margin-bottom: 4px;
        }

        header p {
            font-size: 14px;
            color: #555;
        }

        .resume-link {
            display: inline-block;
            margin-top: 12px;
            font-size: 13px;
            color: #111;
            text-decoration: none;
            border-bottom: 1px solid #ddd;
            padding-bottom: 1px;
            transition: border-color 0.2s;
        }

        .resume-link:hover {
            border-color: #111;
        }

        .about {
            margin-bottom: 48px;
            color: #333;
            font-size: 14px;
            max-width: 540px;
        }

        .section-title {
            font-size: 12px;
            font-weight: 500;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 12px;
        }

        /* Works */
        .works {
            margin-bottom: 48px;
        }

        .works-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .nav-buttons {
            display: flex;
            gap: 8px;
        }

        .nav-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid #e5e5e5;
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .nav-btn:hover {
            border-color: #111;
            background: #fafafa;
            transform: scale(1.05);
        }

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

        .carousel {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            width: 100%;
            transition: transform 0.4s ease;
            will-change: transform;
        }

        .work-item {
            min-width: 100%;
            width: 100%;
            flex-shrink: 0;
            position: relative;
        }

        .work-item .project-overlay span {
            font-size: 12px;
        }

        .work-item img {
            width: 100%;
            border-radius: 10px;
            border: 1px solid #eee;
            display: block;
            aspect-ratio: 16/10;
            object-fit: cover;
            background: #f9f9f9;
        }

        /* Bottom right overlay */
        .project-overlay {
            position: absolute;
            bottom: 14px;
            right: 14px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 8px 12px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 7px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .project-overlay:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        }

        .project-overlay svg {
            width: 15px;
            height: 15px;
            color: #111;
        }

        .project-overlay span {
            font-size: 13px;
            font-weight: 500;
            color: #111;
        }

        .dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #ddd;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.2s;
        }

        .dot.active {
            background: #111;
        }

        /* Benefits */
        .benefits {
            margin-bottom: 48px;
        }

        .benefits-intro {
            font-size: 14px;
            color: #555;
            margin: 12px 0 24px;
            max-width: 480px;
        }

        .benefits-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .benefit-item {
            position: relative;
            padding-top: 20px;
            padding-left: 16px;
            border-left: 1px solid #ededed;
            transition: border-color 0.25s ease;
        }

        .benefit-item:hover {
            border-left-color: #111;
        }

        .benefit-item:hover .benefit-index {
            color: #111;
        }

        .benefit-index {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #ccc;
            margin-bottom: 10px;
            transition: color 0.25s ease;
        }

        .benefit-item h4 {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: -0.1px;
            margin-bottom: 6px;
        }

        .benefit-item p {
            font-size: 12px;
            color: #777;
            line-height: 1.55;
        }

        /* Services */
        .services {
            margin-bottom: 48px;
        }

        .quiz {
            width: 100%;
            border: 1px solid #ececec;
            border-radius: 16px;
            background: #fafafa;
            padding: 28px 24px;
        }

        .quiz-progress {
            font-size: 12px;
            font-weight: 500;
            color: #999;
            margin-bottom: 14px;
        }

        .quiz-step {
            display: none;
        }

        .quiz-step.active {
            display: block;
        }

        .quiz-chat {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
        }

        .quiz-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid #ececec;
        }

        .quiz-bubble {
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 4px 14px 14px 14px;
            padding: 12px 16px;
            max-width: 100%;
        }

        .quiz-question {
            font-size: 15.5px;
            font-weight: 500;
            line-height: 1.5;
            white-space: pre-wrap;
        }

        .quiz-typing {
            display: none;
            align-items: center;
            gap: 4px;
            padding: 4px 0;
        }

        .quiz-typing.active {
            display: inline-flex;
        }

        .quiz-typing span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #bbb;
            animation: quizTypingBounce 1.1s infinite ease-in-out;
        }

        .quiz-typing span:nth-child(2) { animation-delay: 0.15s; }
        .quiz-typing span:nth-child(3) { animation-delay: 0.3s; }

        @keyframes quizTypingBounce {
            0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
            30% { transform: translateY(-3px); opacity: 1; }
        }

        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
            opacity: 0;
            transform: translateY(6px);
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .quiz-options.revealed {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .quiz-option {
            display: block;
            width: 100%;
            min-height: 44px;
            padding: 10px 16px;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            background: #fff;
            font-family: inherit;
            font-size: 14px;
            color: #111;
            text-align: left;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .quiz-option:hover,
        .quiz-option.selected {
            border-color: #111;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }

        .quiz-back {
            display: inline-block;
            margin-bottom: 16px;
            font-size: 13px;
            color: #888;
            text-decoration: none;
        }

        .quiz-back:hover {
            color: #111;
        }

        .quiz-step .start-btn {
            margin-top: 4px;
        }

        .services-note {
            font-size: 12px;
            color: #888;
            text-align: center;
            margin-top: 12px;
        }

        .start-btn {
            display: block;
            width: 100%;
            height: 46px;
            background: #111;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s ease;
            text-decoration: none;
            text-align: center;
            line-height: 46px;
            margin-top: 12px;
        }

        .start-btn:hover {
            background: #222;
            transform: translateY(-1px);
        }

        /* Contact */
        .contact {
            margin-bottom: 40px;
        }

        .socials {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }

        .socials a {
            color: #333;
            transition: opacity 0.2s;
        }

        .socials a:hover {
            opacity: 0.6;
        }

        .socials svg {
            width: 18px;
            height: 18px;
        }

        footer {
            font-size: 12px;
            color: #aaa;
            margin-top: 60px;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

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

        .modal {
            background: #fff;
            width: 100%;
            max-width: 640px;
            max-height: 88vh;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            transform: translateY(25px);
            transition: transform 0.3s ease;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 18px;
            background: #f5f5f5;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #888;
            z-index: 10;
            line-height: 1;
            transition: color 0.2s;
            height: 36px;
            width: 36px;
            border-radius: 100%;
            transition: 0.3s;
        }

        .modal-close:hover {
            scale: 110%;
            transition: 0.3s;
        }

        .modal-content {
            padding: 24px 24px 36px 24px;
            overflow-y: auto;
            max-height: 88vh;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .modal-content::-webkit-scrollbar {
            display: none;
        }

        .modal-content img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 24px;
            border: 1px solid #eee;
        }

        .modal-content h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .modal-block {
            margin-bottom: 20px;
        }

        .modal-block h5 {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
            color: #111;
        }

        .modal-block p {
            font-size: 14.5px;
            color: #444;
            line-height: 1.65;
        }

        .modal-link {
            display: inline-block;
            margin-top: 12px;
            font-size: 14px;
            color: #111;
            text-decoration: none;
            border-bottom: 1px solid #ccc;
            padding-bottom: 2px;
            transition: border-color 0.2s;
        }

        .modal-link:hover {
            border-color: #111;
        }

        body.modal-open {
            overflow: hidden;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .benefits-list {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .quiz {
                padding: 22px 18px;
            }

            .modal-content {
                padding: 16px 16px 28px 16px;
            }

            .modal-close {
                top: 8px;
                right: 8px;
                font-size: 24px;
            }

            .modal-overlay {
                align-items: end;
                padding: 0 8px 0 8px;
                padding: 0;
            }

            .modal {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }

            .modal-content {
                height: 88vh;
            }
        }