    /* =========================================================
    LUHUR SUTEKNO PORTFOLIO
    GLOBAL DESIGN SYSTEM
    ========================================================= */


    /* =========================================================
    1. GOOGLE FONT
    ========================================================= */

    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');


    /* =========================================================
    2. ROOT VARIABLES
    ========================================================= */

    :root {

        /* Brand */
        --primary-color: #2563eb;
        --primary-hover: #1d4ed8;

        --secondary-color: #0f172a;
        --accent-color: #06b6d4;

        /* Background */
        --background-color: #f8fafc;
        --background-secondary: #ffffff;

        /* Text */
        --text-color: #0f172a;
        --text-muted: #64748b;
        --text-soft: #94a3b8;

        /* Surface */
        --surface-color: #ffffff;
        --surface-soft: #f1f5f9;
        --surface-hover: #f8fafc;

        /* Border */
        --border-color: #e2e8f0;
        --border-light: #f1f5f9;

        /* Navbar */
        --navbar-height: 76px;

        /* Container */
        --container-width: 1200px;
        --container-padding: 24px;

        /* Radius */
        --radius-sm: 10px;
        --radius-md: 14px;
        --radius-lg: 18px;
        --radius-xl: 24px;
        --radius-2xl: 30px;

        /* Shadow */
        --shadow-sm:
            0 4px 14px rgba(15, 23, 42, 0.05);

        --shadow-md:
            0 12px 30px rgba(15, 23, 42, 0.08);

        --shadow-lg:
            0 20px 50px rgba(15, 23, 42, 0.10);

        /* Transition */
        --transition-fast: 0.2s ease;
        --transition-normal: 0.3s ease;
        --transition-slow: 0.5s ease;

    }


    /* =========================================================
    3. DARK MODE VARIABLES
    ========================================================= */

    html.dark {

        --background-color: #07111f;
        --background-secondary: #0b1728;

        --text-color: #f8fafc;
        --text-muted: #94a3b8;
        --text-soft: #64748b;

        --surface-color: #0d1b2d;
        --surface-soft: #13243a;
        --surface-hover: #172b44;

        --border-color: #20344d;
        --border-light: #172a40;

        --shadow-sm:
            0 4px 14px rgba(0, 0, 0, 0.15);

        --shadow-md:
            0 12px 30px rgba(0, 0, 0, 0.20);

        --shadow-lg:
            0 20px 50px rgba(0, 0, 0, 0.25);

    }


    /* =========================================================
    4. HTML
    ========================================================= */

    html {

        scroll-behavior: smooth;

        scroll-padding-top:
            calc(var(--navbar-height) + 20px);

    }


    /* =========================================================
    5. BODY
    ========================================================= */

    body {

        margin: 0;
        padding: 0;

        min-width: 320px;

        background:
            var(--background-color);

        color:
            var(--text-color);

        font-family:
            "Plus Jakarta Sans",
            sans-serif;

        font-size: 15px;

        line-height: 1.7;

        transition:
            background-color var(--transition-normal),
            color var(--transition-normal);

    }


    /* =========================================================
    6. FULL PAGE BACKGROUND
    ========================================================= */

    body::before {

        content: "";

        position: fixed;

        inset: 0;

        z-index: -10;

        pointer-events: none;

        background:
            radial-gradient(
                circle at 10% 15%,
                rgba(37, 99, 235, 0.07),
                transparent 28%
            ),

            radial-gradient(
                circle at 90% 35%,
                rgba(6, 182, 212, 0.06),
                transparent 28%
            );

    }


    html.dark body::before {

        background:
            radial-gradient(
                circle at 8% 12%,
                rgba(37, 99, 235, 0.15),
                transparent 30%
            ),

            radial-gradient(
                circle at 90% 35%,
                rgba(6, 182, 212, 0.12),
                transparent 32%
            ),

            radial-gradient(
                circle at 50% 100%,
                rgba(30, 64, 175, 0.08),
                transparent 35%
            );

    }


    /* =========================================================
    7. TEXT SELECTION
    ========================================================= */

    ::selection {

        background:
            var(--primary-color);

        color:
            #ffffff;

    }


    /* =========================================================
    8. SCROLLBAR
    ========================================================= */

    ::-webkit-scrollbar {

        width: 8px;

    }

    ::-webkit-scrollbar-track {

        background:
            var(--surface-soft);

    }

    ::-webkit-scrollbar-thumb {

        background:
            var(--primary-color);

        border-radius:
            999px;

    }

    ::-webkit-scrollbar-thumb:hover {

        background:
            var(--accent-color);

    }


    /* =========================================================
    9. GLOBAL CONTAINER
    ========================================================= */

    .site-container {

        width:
            min(
                calc(100% - 48px),
                var(--container-width)
            );

        margin-inline:
            auto;

    }


    /*
    |--------------------------------------------------------------------------
    | Untuk container Tailwind yang sudah ada
    |--------------------------------------------------------------------------
    */

    .container {

        width:
            min(
                calc(100% - 48px),
                var(--container-width)
            );

    }


    /* =========================================================
    10. SECTION
    ========================================================= */

    section {

        position:
            relative;

        scroll-margin-top:
            calc(var(--navbar-height) + 20px);

    }


    /* =========================================================
    11. SECTION BACKGROUND
    ========================================================= */

    .section-light {

        background:
            var(--background-secondary);

    }

    .section-soft {

        background:
            var(--background-color);

    }

    .section-dark {

        background:
            var(--background-secondary);

    }






    /* =========================================================
    /* =========================================================
    27. GRADIENT TEXT
    ========================================================= */

    .gradient-text {

        background:
            linear-gradient(
                90deg,
                #2563eb,
                #06b6d4
            );

        -webkit-background-clip:
            text;

        background-clip:
            text;

        -webkit-text-fill-color:
            transparent;

    }


    /* =========================================================
    28. SECTION HEADER
    ========================================================= */

    .section-heading {

        max-width:
            700px;

        margin-inline:
            auto;

        text-align:
            center;

    }


    .section-heading-label {

        display:
            inline-flex;

        align-items:
            center;

        gap:
            7px;

        margin-bottom:
            10px;

        color:
            var(--primary-color);

        font-size:
            0.68rem;

        font-weight:
            800;

        letter-spacing:
            0.16em;

        text-transform:
            uppercase;

    }


    .section-heading h2 {

        margin:
            0;

        color:
            var(--text-color);

        font-size:
            clamp(
                1.8rem,
                4vw,
                2.6rem
            );

        line-height:
            1.2;

        font-weight:
            800;

        letter-spacing:
            -0.04em;

    }


    .section-heading p {

        margin:
            14px auto 0;

        color:
            var(--text-muted);

        font-size:
            0.9rem;

        line-height:
            1.8;

    }


    /* =========================================================
    29. GENERIC CARD
    ========================================================= */

    .portfolio-card {

        position:
            relative;

        background:
            var(--surface-color);

        border:
            1px solid var(--border-color);

        border-radius:
            var(--radius-lg);

        box-shadow:
            var(--shadow-sm);

        transition:
            transform var(--transition-normal),
            border-color var(--transition-normal),
            box-shadow var(--transition-normal);

    }


    .portfolio-card:hover {

        transform:
            translateY(-4px);

        border-color:
            color-mix(
                in srgb,
                var(--primary-color) 25%,
                var(--border-color)
            );

        box-shadow:
            var(--shadow-md);

    }


    /* =========================================================
    30. IMAGE
    ========================================================= */

    img {

        max-width:
            100%;

        height:
            auto;

    }


    /* =========================================================
    31. LINKS
    ========================================================= */

    a {

        transition:
            color var(--transition-fast);

    }


    /* =========================================================
    32. BUTTON
    ========================================================= */

    button,
    input,
    textarea,
    select {

        font-family:
            inherit;

    }


    button {

        cursor:
            pointer;

    }


    /* =========================================================
    33. FORM
    ========================================================= */

    input,
    textarea,
    select {

        color:
            var(--text-color);

        background:
            var(--surface-color);

        border-color:
            var(--border-color);

    }


    input::placeholder,
    textarea::placeholder {

        color:
            var(--text-soft);

    }


    /* =========================================================
    34. TYPING EFFECT
    ========================================================= */

    .typing-text {

        display:
            inline;

    }


    .typing-cursor {

        display:
            inline-block;

        width:
            2px;

        height:
            1em;

        margin-left:
            4px;

        vertical-align:
            -2px;

        background:
            currentColor;

        animation:
            blinkCursor 0.8s infinite;

    }


    @keyframes blinkCursor {

        0%,
        45% {

            opacity:
                1;

        }

        46%,
        100% {

            opacity:
                0;

        }

    }


    /* =========================================================
    35. SCROLL REVEAL
    ========================================================= */

    .reveal {

        opacity:
            0;

        transform:
            translateY(24px);

        transition:
            opacity 0.7s ease,
            transform 0.7s ease;

    }


    .reveal.active {

        opacity:
            1;

        transform:
            translateY(0);

    }


    /* =========================================================
    36. FOCUS ACCESSIBILITY
    ========================================================= */

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {

        outline:
            3px solid
            color-mix(
                in srgb,
                var(--primary-color) 35%,
                transparent
            );

        outline-offset:
            3px;

    }


    /* =========================================================
    37. DARK MODE UTILITY
    ========================================================= */

    .dark-bg {

        background:
            var(--background-color);

    }


    .dark-border {

        border-color:
            var(--border-color);

    }


    /* =========================================================
    38. HORIZONTAL DIVIDER
    ========================================================= */

    .section-divider {

        height:
            1px;

        width:
            100%;

        background:
            var(--border-color);

    }


    /* =========================================================
    39. SOFT GLOW
    ========================================================= */

    .blue-glow {

        box-shadow:
            0 0 60px rgba(37, 99, 235, 0.10);

    }


    .cyan-glow {

        box-shadow:
            0 0 60px rgba(6, 182, 212, 0.10);

    }


    /* =========================================================
    43. REDUCE MOTION
    ========================================================= */

    @media (prefers-reduced-motion: reduce) {

        html {

            scroll-behavior:
                auto;

        }


        *,
        *::before,
        *::after {

            animation-duration:
                0.01ms !important;

            animation-iteration-count:
                1 !important;

            transition-duration:
                0.01ms !important;

            scroll-behavior:
                auto !important;

        }

    }


    /* =========================================================
    NAVBAR
    ========================================================= */

    #mainNavbar {
        width: 100%;

        padding: 8px 0;

        background: rgba(255, 255, 255, 0.78);

        border-bottom: 1px solid rgba(226, 232, 240, 0.75);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .navbar-container {
        width: min(1180px, calc(100% - 48px));
        min-height: 58px;
        margin: 0 auto;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 11px;

        flex-shrink: 0;

        color: inherit;
        text-decoration: none;
    }

    .navbar-logo {
        width: 25px;
        height: 25px;

        display: block;

        object-fit: contain;

        border-radius: 13px;
    }

    .navbar-logo-fallback {
        display: flex;
        align-items: center;
        justify-content: center;

        color: white;

        font-size: 20px;
        font-weight: 900;

        background: linear-gradient(
            135deg,
            #2563eb,
            #06b6d4
        );
    }

    .navbar-brand-text {
        display: flex;
        flex-direction: column;
    }

    .navbar-brand-name {
        color: #0f172a;

        font-size: 15px;
        line-height: 1.1;

        font-weight: 800;
    }

    .navbar-brand-subtitle {
        margin-top: 4px;

        color: #94a3b8;

        font-size: 9px;
        line-height: 1;

        font-weight: 800;

        text-transform: uppercase;
        letter-spacing: 0.2em;
    }

    .navbar-nav {
        display: flex;
        align-items: center;
        gap: 4px;

        margin-left: auto;
    }

    .nav-link {
        position: relative;

        display: flex;
        align-items: center;

        min-height: 42px;

        padding: 0 11px;

        color: #64748b;

        font-size: 14px;
        font-weight: 600;

        text-decoration: none;

        border-radius: 10px;

        transition:
            color 0.2s ease,
            background 0.2s ease;
    }

    .nav-link:hover {
        color: #2563eb;
        background: rgba(37, 99, 235, 0.06);
    }

    .nav-link.active {
        color: #2563eb;
    }

    .navbar-actions {
        display: flex;
        align-items: center;
        gap: 8px;

        flex-shrink: 0;
    }

    .language-wrapper {
        position: relative;
    }


    .language-option:hover {
        background: #f1f5f9;
    }

    .dark .language-dropdown {
        background: #0f172a;
        border-color: #334155;
    }

    .dark .language-option {
        color: #e2e8f0;
    }

    .dark .language-option:hover {
        background: #1e293b;
    }

    .language-toggle,
    .navbar-icon-button {
        height: 46px;

        border: 1px solid #e2e8f0;

        background: rgba(248, 250, 252, 0.9);

        color: #334155;

        border-radius: 14px;

        cursor: pointer;

        transition:
            background 0.2s ease,
            border-color 0.2s ease,
            transform 0.2s ease;
    }

    .language-toggle {
        display: flex;
        align-items: center;

        gap: 6px;

        padding: 0 12px;

        font-size: 11px;
        font-weight: 700;
    }

    .language-toggle:hover,
    .navbar-icon-button:hover {
        background: #ffffff;
        border-color: #cbd5e1;

        transform: translateY(-1px);
    }

    .language-toggle i {
        font-size: 9px;
    }

    .navbar-icon-button {
        width: 46px;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 16px;
    }

    .mobile-menu-button {
        display: none;
    }

    .language-dropdown {
        position: absolute;

        top: calc(100% + 10px);
        right: 0;

        width: 190px;

        padding: 7px;

        background: rgba(255, 255, 255, 0.96);

        border: 1px solid #e2e8f0;

        border-radius: 16px;

        box-shadow:
            0 20px 50px rgba(15, 23, 42, 0.12);

        backdrop-filter: blur(18px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-8px);

        transition:
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.2s ease;
    }

    .language-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .language-dropdown-title {
        padding: 9px 10px;

        color: #94a3b8;

        font-size: 9px;
        font-weight: 800;

        text-transform: uppercase;
        letter-spacing: 0.14em;

        border-bottom: 1px solid #f1f5f9;
    }

    .language-option {
        width: 100%;

        display: flex;
        align-items: center;
        gap: 10px;

        padding: 10px;

        border: 0;
        border-radius: 10px;

        background: transparent;

        color: #475569;

        cursor: pointer;

        text-align: left;

        font-size: 13px;
    }

    .language-option:hover {
        background: #f1f5f9;
    }

    .language-option-name {
        flex: 1;
    }

    .language-check {
        display: none;
    }

    .language-option.active .language-check {
        display: block;
    }

    .mobile-menu {
        display: none;
    }

    /* =========================================================
    GOOGLE TRANSLATE - HIDE ORIGINAL UI
    ========================================================= */

    #google_translate_element {
        position: fixed !important;

        width: 1px !important;
        height: 1px !important;

        overflow: hidden !important;

        opacity: 0 !important;

        pointer-events: none !important;

        left: -9999px !important;
        top: -9999px !important;
    }


    /* Google top banner */

    .goog-te-banner-frame {
        display: none !important;
    }

    iframe.goog-te-banner-frame {
        display: none !important;
    }


    /* Google gadget */

    .goog-te-gadget {
        display: none !important;
    }


    /* Google toolbar */

    .goog-te-balloon-frame {
        display: none !important;
    }


    /* Google adds margin to body */

    body {
        top: 0 !important;
    }


    /* =========================================================
    DARK MODE
    ========================================================= */

    html.dark #mainNavbar {
        background: rgba(11, 18, 32, 0.82);

        border-bottom-color: rgba(
            51,
            65,
            85,
            0.7
        );
    }

    html.dark .navbar-brand-name {
        color: #f8fafc;
    }

    html.dark .navbar-brand-subtitle {
        color: #64748b;
    }

    html.dark .nav-link {
        color: #94a3b8;
    }

    html.dark .nav-link:hover,
    html.dark .nav-link.active {
        color: #60a5fa;

        background: rgba(
            37,
            99,
            235,
            0.10
        );
    }

    html.dark .language-toggle,
    html.dark .navbar-icon-button {
        color: #e2e8f0;

        background: rgba(
            30,
            41,
            59,
            0.75
        );

        border-color: #334155;
    }

    html.dark .language-toggle:hover,
    html.dark .navbar-icon-button:hover {
        background: #1e293b;
    }

    html.dark .language-dropdown {
        background: #0f172a;
        border-color: #334155;
    }

    html.dark .language-dropdown-title {
        border-color: #1e293b;
    }

    html.dark .language-option {
        color: #cbd5e1;
    }

    html.dark .language-option:hover {
        background: #1e293b;
    }


    /* =========================================================
    MOBILE
    ========================================================= */

    @media (max-width: 1024px) {

        .navbar-nav {
            display: none;
        }

        .mobile-menu-button {
            display: flex;
        }

        .mobile-menu {
            width: min(
                1180px,
                calc(100% - 32px)
            );

            margin: 8px auto 0;

            padding: 12px;

            background: rgba(
                255,
                255,
                255,
                0.96
            );

            border: 1px solid #e2e8f0;

            border-radius: 20px;

            box-shadow:
                0 20px 50px rgba(
                    15,
                    23,
                    42,
                    0.12
                );

            backdrop-filter: blur(18px);

            display: none;
        }

        .mobile-menu.show {
            display: block;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 13px;

            padding: 13px;

            color: #475569;

            text-decoration: none;

            font-size: 14px;
            font-weight: 600;

            border-radius: 12px;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: #2563eb;
            background: #eff6ff;
        }

        .mobile-nav-link i {
            width: 20px;
            text-align: center;
        }

        .mobile-language {
            margin-top: 10px;
            padding-top: 12px;

            border-top: 1px solid #e2e8f0;
        }

        .mobile-language > p {
            margin: 0 0 8px;

            color: #94a3b8;

            font-size: 9px;
            font-weight: 800;

            text-transform: uppercase;
            letter-spacing: 0.14em;
        }

        .mobile-language-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .mobile-language-option {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;

            padding: 10px;

            border: 1px solid #e2e8f0;
            border-radius: 10px;

            background: #f8fafc;

            color: #475569;

            cursor: pointer;

            font-size: 12px;
            font-weight: 700;
        }

        html.dark .mobile-menu {
            background: #0f172a;
            border-color: #334155;
        }

        html.dark .mobile-nav-link {
            color: #cbd5e1;
        }

        html.dark .mobile-nav-link:hover,
        html.dark .mobile-nav-link.active {
            color: #60a5fa;
            background: rgba(
                37,
                99,
                235,
                0.10
            );
        }

        html.dark .mobile-language {
            border-color: #334155;
        }

        html.dark .mobile-language-option {
            background: #1e293b;
            border-color: #334155;
            color: #cbd5e1;
        }
    }


    @media (max-width: 600px) {

        #mainNavbar {
            padding: 10px 0;
        }

        .navbar-container {
            width: calc(100% - 24px);
            min-height: 52px;
        }

        .navbar-logo {
            width: 25px;
            height: 25px;
            border-radius: 11px;
        }

        .navbar-brand-name {
            font-size: 14px;
        }

        .navbar-brand-subtitle {
            font-size: 8px;
        }

        .language-toggle {
            width: 44px;
            padding: 0;

            justify-content: center;
        }

        .language-toggle span:nth-child(2),
        .language-toggle i {
            display: none;
        }

        .navbar-icon-button {
            width: 44px;
            height: 44px;
        }
    }


    /* =========================================================
    ABOUT SECTION
    ========================================================= */

    .about-section {
        position: relative;
        overflow: hidden;
        padding: 90px 0 100px;
    }

    .about-background {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .about-glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: .18;
    }

    .about-glow-blue {
        width: 420px;
        height: 420px;
        left: -180px;
        top: 180px;
        background: #1478ff;
    }

    .about-glow-cyan {
        width: 400px;
        height: 400px;
        right: -160px;
        bottom: 20px;
        background: #00c8d7;
    }


    .about-container {
        position: relative;
        z-index: 2;
    }


    /* =========================================================
    HEADING
    ========================================================= */

    .about-section .section-heading {
        text-align: center;
        margin-bottom: 45px;
    }

    .about-section .section-eyebrow {
        display: block;
        margin-bottom: 8px;
    }

    .about-section .section-title {
        margin: 0;
    }

    .about-section .section-subtitle {
        margin: 12px auto 0;
        max-width: 650px;
    }


    /* =========================================================
    MAIN LAYOUT
    ========================================================= */

    .about-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.6fr) minmax(300px, .8fr);
        gap: 28px;
        align-items: stretch;
    }


    /* =========================================================
    ABOUT CARD
    ========================================================= */

    .about-card {
        position: relative;
        padding: 32px;
        border-radius: 24px;
        background: rgba(255, 255, 255, .72);
        border: 1px solid rgba(120, 160, 210, .22);
        box-shadow: 0 20px 60px rgba(40, 100, 170, .08);
        backdrop-filter: blur(16px);
        overflow: hidden;
    }

    .about-card::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        right: -100px;
        top: -100px;
        border-radius: 50%;
        background: rgba(20, 120, 255, .08);
        pointer-events: none;
    }


    .about-card-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
    }

    .about-icon {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        color: #fff;
        background: linear-gradient(
            135deg,
            #087cff,
            #00b8d9
        );
        box-shadow: 0 10px 25px rgba(0, 130, 255, .20);
    }

    .about-card-label {
        display: block;
        margin-bottom: 4px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: #7b91aa;
    }

    .about-card h3 {
        margin: 0;
        font-size: 22px;
        line-height: 1.2;
    }


    .about-card-content {
        position: relative;
        z-index: 1;
    }

    .about-card-content p {
        margin: 0 0 14px;
        font-size: 15px;
        line-height: 1.75;
        color: #58708a;
    }

    .about-card-content p:last-child {
        margin-bottom: 0;
    }


    /* =========================================================
    TAGS
    ========================================================= */

    .about-tags {
        position: relative;
        z-index: 1;

        display: flex;
        flex-wrap: wrap;
        gap: 8px;

        margin-top: 24px;
    }

    .about-tags span {
        display: inline-flex;
        align-items: center;
        gap: 7px;

        padding: 8px 11px;

        border-radius: 10px;

        font-size: 12px;
        font-weight: 600;

        color: #48617b;
        background: rgba(235, 244, 253, .8);
        border: 1px solid rgba(100, 150, 200, .15);
    }

    .about-tags i {
        color: #087cff;
    }


    /* =========================================================
    STATISTICS
    ========================================================= */

    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .about-stat-card {
        display: flex;
        align-items: center;
        gap: 14px;

        min-height: 135px;
        padding: 22px;

        border-radius: 20px;

        background: rgba(255, 255, 255, .72);
        border: 1px solid rgba(120, 160, 210, .20);

        box-shadow: 0 15px 45px rgba(40, 100, 170, .06);

        backdrop-filter: blur(14px);

        transition:
            transform .25s ease,
            box-shadow .25s ease;
    }

    .about-stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(40, 100, 170, .12);
    }


    .about-stat-icon {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 13px;

        font-size: 16px;
    }

    .about-stat-icon.blue {
        color: #087cff;
        background: rgba(8, 124, 255, .10);
    }

    .about-stat-icon.cyan {
        color: #00aeca;
        background: rgba(0, 174, 202, .10);
    }

    .about-stat-icon.green {
        color: #12a66a;
        background: rgba(18, 166, 106, .10);
    }

    .about-stat-icon.purple {
        color: #805ad5;
        background: rgba(128, 90, 213, .10);
    }


    .about-stat-card strong {
        display: block;
        margin-bottom: 3px;

        font-size: 28px;
        line-height: 1;

        color: #0b172b;
    }

    .about-stat-card span {
        display: block;

        font-size: 12px;
        font-weight: 600;

        color: #7a8fa6;
    }

    /* =========================================================
    DARK MODE
    ========================================================= */

    html.dark .about-card,
    html.dark .about-stat-card {
        box-shadow:
            0 20px 70px rgba(
                0,
                0,
                0,
                0.2
            );
    }


    /* =========================================================
    RESPONSIVE
    ========================================================= */

    @media (max-width: 900px) {

        .about-layout {
            grid-template-columns: 1fr;
        }

        .about-stats {
            grid-template-columns:
                repeat(4, 1fr);
        }

        .about-highlights {
            grid-template-columns: 1fr;
        }

    }


    @media (max-width: 640px) {

        .about-section {
            padding: 90px 0;
        }

        .section-heading {
            margin-bottom: 35px;
        }

        .section-title {
            font-size: 2rem;
        }

        .section-subtitle {
            font-size: 0.85rem;
        }

        .about-card {
            padding: 23px;

            border-radius: 22px;
        }

        .about-stats {
            grid-template-columns:
                repeat(2, 1fr);
        }

        .about-stat-card {
            min-height: 105px;

            padding: 16px;

            border-radius: 18px;
        }

        .about-stat-icon {
            width: 38px;
            height: 38px;
        }

        .about-stat-card strong {
            font-size: 1.2rem;
        }

        .about-tags span {
            font-size: 0.65rem;
        }

    }


    /* =========================================================
    HERO SECTION
    ========================================================= */

    .hero-section {
        position: relative;

        min-height: calc(100vh - 76px);

        display: flex;
        align-items: center;

        overflow: hidden;

        background:
            radial-gradient(
                circle at 80% 45%,
                rgba(14, 165, 233, 0.12),
                transparent 35%
            ),
            radial-gradient(
                circle at 15% 70%,
                rgba(37, 99, 235, 0.10),
                transparent 35%
            ),
            var(--background-color);

        /* ruang untuk navbar */
        padding: 76px 0 35px;

        box-sizing: border-box;
    }

    /* =========================================================
    HERO BACKGROUND
    ========================================================= */

    .hero-background {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
        z-index: 0;
    }


    .hero-glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
    }


    .hero-glow-blue {
        width: 500px;
        height: 500px;

        top: -180px;
        right: -100px;

        background: rgba(37, 99, 235, 0.16);
    }


    .hero-glow-cyan {
        width: 400px;
        height: 400px;

        bottom: -180px;
        left: -120px;

        background: rgba(6, 182, 212, 0.12);
    }


    .hero-grid {
        position: absolute;
        inset: 0;

        opacity: 0.035;

        background-image:
            linear-gradient(
                rgba(37, 99, 235, 1) 1px,
                transparent 1px
            ),
            linear-gradient(
                90deg,
                rgba(37, 99, 235, 1) 1px,
                transparent 1px
            );

        background-size: 50px 50px;
    }


    /* =========================================================
    CONTAINER
    ========================================================= */

    .hero-container {
        position: relative;
        z-index: 2;

        width: min(
            1180px,
            calc(100% - 48px)
        );

        margin: 0 auto;
    }


    /* =========================================================
    TWO COLUMN
    ========================================================= */

    .hero-grid-layout {
        display: grid;

        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(360px, 0.95fr);

        align-items: center;

        gap: 45px;
    }

    /* =========================================================
    LEFT CONTENT
    ========================================================= */

    .hero-content {
        max-width: 680px;
    }


    .hero-status {
        display: inline-flex;

        align-items: center;
        gap: 10px;

        padding: 10px 18px;

        margin-bottom: 30px;

        border: 1px solid rgba(37, 99, 235, 0.20);

        border-radius: 999px;

        background: rgba(255, 255, 255, 0.65);

        backdrop-filter: blur(12px);

        color: #2563eb;

        font-size: 14px;
        font-weight: 600;
    }


    .hero-status-dot {
        width: 9px;
        height: 9px;

        border-radius: 50%;

        background: #10b981;

        box-shadow:
            0 0 0 5px rgba(16, 185, 129, 0.10);
    }


    /* =========================================================
    GREETING
    ========================================================= */

    .hero-greeting {
        margin: 0 0 4px;

        font-size: clamp(
            19px,
            2vw,
            25px
        );

        font-weight: 600;

        color: #2563eb;
    }

    /* =========================================================
    TITLE
    ========================================================= */

    .hero-title {
        margin: 0;

        font-size: clamp(
            48px,
            5.2vw,
            72px
        );

        line-height: 0.92;

        letter-spacing: -0.055em;

        font-weight: 900;

        color: #0f172a;
    }


    /* =========================================================
    ROLE
    ========================================================= */

    .hero-role {
        display: flex;

        flex-wrap: wrap;

        align-items: center;

        gap: 10px;

        margin-top: 14px;

        font-size: clamp(
            19px,
            2.2vw,
            28px
        );

        font-weight: 700;

        color: #334155;
    }


    .hero-role-dot {
        color: #2563eb;
    }


    .hero-role-highlight {
        background:
            linear-gradient(
                90deg,
                #2563eb,
                #06b6d4
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }


    /* =========================================================
    DESCRIPTION
    ========================================================= */

    .hero-description {
        max-width: 620px;

        margin: 16px 0 0;

        font-size: 15px;

        line-height: 1.65;

        color: #64748b;
    }


    /* =========================================================
    BUTTONS
    ========================================================= */

    .hero-actions {
        display: flex;

        flex-wrap: wrap;

        gap: 14px;

        margin-top: 32px;
    }


    .hero-btn {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        gap: 10px;

        min-height: 52px;

        padding: 0 24px;

        border-radius: 15px;

        text-decoration: none;

        font-size: 14px;

        font-weight: 700;

        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            background 0.25s ease;
    }


    .hero-btn:hover {
        transform: translateY(-3px);
    }


    .hero-btn-primary {
        color: white;

        background:
            linear-gradient(
                135deg,
                #2563eb,
                #06b6d4
            );

        box-shadow:
            0 12px 30px rgba(
                37,
                99,
                235,
                0.22
            );
    }


    .hero-btn-secondary {
        color: #334155;

        background: rgba(
            255,
            255,
            255,
            0.7
        );

        border: 1px solid #dbe4ee;

        backdrop-filter: blur(10px);
    }


    .hero-btn-secondary:hover {
        background: white;

        box-shadow:
            0 10px 25px rgba(
                15,
                23,
                42,
                0.08
            );
    }


    /* =========================================================
    SOCIAL
    ========================================================= */

    .hero-social {
        display: flex;

        align-items: center;

        flex-wrap: wrap;

        gap: 10px;

        margin-top: 38px;
    }


    .hero-social-label {
        margin-right: 8px;

        font-size: 11px;

        font-weight: 800;

        letter-spacing: 0.15em;

        color: #94a3b8;
    }


    .hero-social-link {
        width: 42px;
        height: 42px;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 13px;

        color: #475569;

        background: rgba(
            255,
            255,
            255,
            0.75
        );

        border: 1px solid #e2e8f0;

        text-decoration: none;

        transition:
            transform 0.2s ease,
            color 0.2s ease,
            background 0.2s ease;
    }


    .hero-social-link:hover {
        transform: translateY(-3px);

        color: white;

        background: #2563eb;
    }


    /* =========================================================
    PROFILE AREA
    ========================================================= */

    .hero-profile-wrapper {
        position: relative;

        width: min(
            480px,
            100%
        );

        aspect-ratio: 1 / 1;

        margin: 0 auto;

        display: flex;

        align-items: center;
        justify-content: center;
    }


    .hero-profile-glow {
        position: absolute;

        width: 75%;
        height: 75%;

        border-radius: 50%;

        background:
            linear-gradient(
                135deg,
                rgba(37, 99, 235, 0.45),
                rgba(6, 182, 212, 0.35)
            );

        filter: blur(45px);

        z-index: 0;
    }


    /* =========================================================
    PROFILE CIRCLE
    ========================================================= */

    .hero-profile {
        position: relative;

        width: 72%;
        aspect-ratio: 1 / 1;

        border-radius: 50%;

        overflow: hidden;

        z-index: 2;

        border: 5px solid rgba(
            255,
            255,
            255,
            0.95
        );

        background: #ffffff;

        box-shadow:
            0 22px 60px rgba(
                37,
                99,
                235,
                0.20
            );
    }


    .hero-profile-image {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: contain;

        object-position: center;

        background: #ffffff;
    }


    .hero-profile-fallback {
        width: 100%;
        height: 100%;

        display: flex;

        align-items: center;
        justify-content: center;

        font-size: 100px;

        font-weight: 900;

        color: white;

        background:
            linear-gradient(
                135deg,
                #2563eb,
                #06b6d4
            );
    }


    /* =========================================================
    FLOATING CARD
    ========================================================= */

    .hero-floating-card {
        position: absolute;

        z-index: 5;

        display: flex;

        align-items: center;

        gap: 12px;

        padding: 13px 17px;

        border-radius: 17px;

        background: rgba(
            255,
            255,
            255,
            0.88
        );

        border: 1px solid rgba(
            255,
            255,
            255,
            0.8
        );

        box-shadow:
            0 15px 40px rgba(
                15,
                23,
                42,
                0.10
            );

        backdrop-filter: blur(18px);
    }



    .hero-floating-icon {
        width: 42px;
        height: 42px;

        display: flex;

        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        border-radius: 13px;

        color: #2563eb;

        background: #eff6ff;

        font-size: 17px;
    }


    .hero-floating-card span {
        display: block;

        margin-bottom: 3px;

        font-size: 10px;

        color: #94a3b8;
    }


    .hero-floating-card strong {
        display: block;

        font-size: 12px;

        color: #334155;
    }


    /* =========================================================
    DARK MODE
    ========================================================= */

    html.dark .hero-section {
        background:
            radial-gradient(
                circle at 80% 45%,
                rgba(37, 99, 235, 0.18),
                transparent 35%
            ),
            radial-gradient(
                circle at 15% 70%,
                rgba(6, 182, 212, 0.10),
                transparent 35%
            ),
            #0b1220;
    }


    html.dark .hero-status {
        background: rgba(
            15,
            23,
            42,
            0.65
        );

        border-color: rgba(
            96,
            165,
            250,
            0.20
        );
    }


    html.dark .hero-title {
        color: white;
    }


    html.dark .hero-role {
        color: #e2e8f0;
    }


    html.dark .hero-description {
        color: #94a3b8;
    }


    html.dark .hero-btn-secondary {
        color: #e2e8f0;

        background: rgba(
            30,
            41,
            59,
            0.7
        );

        border-color: #334155;
    }


    html.dark .hero-btn-secondary:hover {
        background: #1e293b;
    }


    html.dark .hero-social-link {
        color: #cbd5e1;

        background: rgba(
            30,
            41,
            59,
            0.7
        );

        border-color: #334155;
    }


    html.dark .hero-floating-card {
        background: rgba(
            15,
            23,
            42,
            0.88
        );

        border-color: #334155;
    }


    html.dark .hero-floating-icon {
        background: rgba(
            37,
            99,
            235,
            0.15
        );
    }


    html.dark .hero-floating-card strong {
        color: #e2e8f0;
    }


    /* =========================================================
    TABLET
    ========================================================= */

    @media (max-width: 1024px) {
        .hero-section {
            padding-top: 76px;
        }


        .hero-grid-layout {
            grid-template-columns:
                minmax(0, 1fr)
                minmax(330px, 0.8fr);

            gap: 40px;
        }

        .hero-title {
            font-size: clamp(
                48px,
                7vw,
                68px
            );
        }

        .hero-profile-wrapper {
            width: 400px;
        }

    }


    /* =========================================================
    MOBILE
    ========================================================= */

    @media (max-width: 768px) {
        .hero-section {
        min-height: auto;
        margin-top: 60px;
        padding: 35px 0 55px;
    }



        .hero-container {
            width: min(
                100% - 32px,
                620px
            );
        }


        .hero-grid-layout {
            grid-template-columns: 1fr;

            gap: 55px;

            text-align: center;
        }


        .hero-content {
            max-width: none;
        }


        .hero-status {
            margin-bottom: 24px;
        }


        .hero-title {
            font-size: clamp(
                44px,
                13vw,
                62px
            );
        }


        .hero-role {
            justify-content: center;

            font-size: 21px;
        }


        .hero-description {
            margin-left: auto;
            margin-right: auto;

            font-size: 15px;
        }


        .hero-actions {
            justify-content: center;
        }


        .hero-social {
            justify-content: center;
        }


        .hero-profile-wrapper {
            width: min(
                360px,
                90vw
            );
        }

    }


    /* =========================================================
    SMALL MOBILE
    ========================================================= */

    @media (max-width: 480px) {

        .hero-section {
            padding-top: 40px;
        }


        .hero-status {
            font-size: 12px;

            padding:
                9px 14px;
        }


        .hero-title {
            font-size: 44px;
        }


        .hero-role {
            font-size: 18px;
        }


        .hero-description {
            font-size: 14px;
        }


        .hero-btn {
            width: 100%;
        }


        .hero-floating-card {
            padding: 9px 11px;

            gap: 8px;
        }


        .hero-floating-icon {
            width: 35px;
            height: 35px;

            font-size: 14px;
        }


        .hero-floating-card span {
            font-size: 8px;
        }


        .hero-floating-card strong {
            font-size: 10px;
        }

        .about-section {
            padding: 70px 0 80px;
        }

        .about-section .section-heading {
            margin-bottom: 30px;
        }

        .about-section .section-title {
            font-size: 34px;
        }

        .about-section .section-subtitle {
            font-size: 14px;
            line-height: 1.6;
        }

        .about-layout {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .about-card {
            padding: 24px;
            border-radius: 20px;
        }

        .about-card-content p {
            font-size: 14px;
            line-height: 1.7;
        }

        .about-stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .about-stat-card {
            min-height: 105px;
            padding: 16px;
            gap: 10px;
        }

        .about-stat-icon {
            width: 40px;
            height: 40px;
            flex-basis: 40px;
        }

        .about-stat-card strong {
            font-size: 22px;
        }

        .about-stat-card span {
            font-size: 11px;
        }

        .about-tags {
            gap: 6px;
        }

        .about-tags span {
            font-size: 11px;
            padding: 7px 9px;
        }

    }

    /* =========================================================
    FINAL CLEAN RESPONSIVE NORMALIZATION
    Menjaga desain portfolio + navbar mobile
    ========================================================= */

    :root {
        --navbar-height: 64px;
    }

    #mainNavbar {
        height: 64px;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .navbar-container {
        width: min(1180px, calc(100% - 48px));
        min-height: 64px;
        height: 64px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .navbar-logo {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .navbar-brand {
        gap: 10px;
    }

    .navbar-nav {
        gap: 2px;
    }

    .nav-link {
        min-height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }

    .language-toggle,
    .navbar-icon-button {
        height: 40px;
    }

    .navbar-icon-button {
        width: 40px;
    }

    .hero-section {
        min-height: calc(100vh - 64px);
        margin-top: 64px;
        box-sizing: border-box;
        padding: 28px 0 30px;
    }

    .hero-container {
        width: min(1180px, calc(100% - 48px));
    }

    .hero-grid-layout {
        gap: 35px;
    }

    .hero-status {
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(46px, 5vw, 66px);
        line-height: 0.94;
    }

    .hero-role {
        margin-top: 10px;
        font-size: clamp(18px, 2vw, 25px);
        gap: 8px;
    }

    .hero-description {
        margin-top: 12px;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-social {
        margin-top: 24px;
    }

    .hero-profile-wrapper {
        width: min(440px, 100%);
    }

    .hero-profile {
        width: 74%;
        border-width: 5px;
    }

    .hero-profile-image {
        object-fit: contain;
        object-position: center center;
    }

    .hero-profile-glow {
        width: 82%;
        height: 82%;
        filter: blur(40px);
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
        display: none;
        align-items: center;
        justify-content: center;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        background: rgba(248,250,252,.9);
        color: #334155;
        cursor: pointer;
    }

    .mobile-menu {
        top: calc(var(--navbar-height) + 8px);
    }

    @media (max-width: 1024px) {
        .navbar-nav { display: none; }
        .mobile-menu-button { display: flex; }
        .navbar-container { width: min(1180px, calc(100% - 32px)); }
    }

    @media (max-width: 768px) {
        #mainNavbar,
    .navbar-container {
            height: 60px;
            min-height: 60px;
        }
        :root { --navbar-height: 60px; }
        .navbar-logo { width: 34px; height: 34px; }
        .navbar-brand-name { font-size: 14px; }
        .navbar-brand-subtitle { font-size: 8px; }
        .language-toggle { height: 40px; }
        .mobile-menu-button { width: 40px; height: 40px; }
        .hero-section {
            min-height: auto;
            padding: 35px 0 55px;
        }
        .hero-container { width: min(100% - 32px, 620px); }
        .hero-grid-layout { grid-template-columns: 1fr; gap: 38px; text-align: center; }
        .hero-title { font-size: clamp(42px, 12vw, 58px); }
        .hero-role { justify-content: center; }
        .hero-description { margin-left: auto; margin-right: auto; }
        .hero-actions,
    .hero-social { justify-content: center; }
        .hero-profile-wrapper { width: min(340px, 86vw); }
        .hero-profile { width: 76%; }
        .hero-floating-bottom { left: -4px; bottom: 8%; }
    }

    @media (max-width: 480px) {
        .navbar-container { width: calc(100% - 24px); }
        .navbar-brand-text { max-width: 130px; }
        .navbar-brand-name { font-size: 13px; }
        .hero-section { padding-top: 28px; }
        .hero-status { font-size: 12px; padding: 8px 12px; }
        .hero-title { font-size: clamp(38px, 12vw, 52px); }
        .hero-profile-wrapper { width: min(300px, 88vw); }
        .hero-floating-card { padding: 10px 12px; gap: 8px; }
        .hero-floating-icon { width: 36px; height: 36px; }
        .hero-floating-card strong { font-size: 11px; }
    }

    html.dark .mobile-menu-button {
        color: #e2e8f0;
        background: rgba(30,41,59,.75);
        border-color: #334155;
    }

    html.dark .hero-title { color: #f8fafc; }


    /* =========================================================
    FORCE HIDE GOOGLE TRANSLATE BANNER
    ========================================================= */

    /* Google Translate top banner */
    iframe.goog-te-banner-frame,
    .goog-te-banner-frame,
    .goog-te-banner-frame.skiptranslate,
    body > .skiptranslate {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
    }

    /* Google Translate biasanya menggeser body ke bawah */
    html,
    body {
        top: 0 !important;
        margin-top: 0 !important;
    }

    /* Hilangkan highlight bawaan Google */
    .goog-text-highlight {
        background: transparent !important;
        box-shadow: none !important;
    }

    /* Jangan sampai Google mengubah posisi halaman */
    body {
        position: static !important;
    }


