        /* ══ VARIABLES ══ */
        :root {
            --bg: #080c14;
            --bg2: #0d1422;
            --card: #111827;
            --border: rgba(99, 179, 237, 0.12);
            --text: #e2e8f0;
            --muted: #94a3b8;
            --accent: #38bdf8;
            --accent2: #818cf8;
            --accent3: #34d399;
            --glow: rgba(56, 189, 248, 0.15);
            --tr: .4s cubic-bezier(.23, 1, .32, 1);
            --H: 'Outfit', system-ui, sans-serif;
            --B: 'Plus Jakarta Sans', system-ui, sans-serif;
        }

        [data-theme="light"] {
            --bg: #f0f4ff;
            --bg2: #e8eeff;
            --card: #fff;
            --border: rgba(99, 102, 241, 0.15);
            --text: #1e293b;
            --muted: #64748b;
            --accent: #0284c7;
            --accent2: #4f46e5;
            --accent3: #059669;
            --glow: rgba(2, 132, 199, 0.1);
        }

        /* ══ RESET ══ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: var(--B);
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            transition: background var(--tr), color var(--tr)
        }

        /* ══ LOADER ══ */
        #loader {
            position: fixed;
            inset: 0;
            background: #030608;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity .8s ease, visibility .8s ease
        }

        #loader.out {
            opacity: 0;
            visibility: hidden;
            pointer-events: none
        }

        .ld-logo {
            font-family: var(--H);
            font-size: 2.6rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: ldP 1.1s ease infinite alternate
        }

        @keyframes ldP {
            from {
                opacity: .3
            }

            to {
                opacity: 1
            }
        }

        .ld-bar {
            width: 220px;
            height: 2px;
            background: rgba(255, 255, 255, .07);
            border-radius: 2px;
            overflow: hidden
        }

        .ld-fill {
            height: 100%;
            background: linear-gradient(90deg, #38bdf8, #818cf8, #34d399);
            border-radius: 2px;
            width: 0;
            animation: ldF 2.2s cubic-bezier(.4, 0, .2, 1) forwards
        }

        @keyframes ldF {
            to {
                width: 100%
            }
        }

        .ld-txt {
            font-family: var(--B);
            font-size: .7rem;
            color: #ffffff;
            letter-spacing: 4px;
            text-transform: uppercase;
            animation: ldB 1s ease infinite alternate
        }

        @keyframes ldB {
            from {
                opacity: .2
            }

            to {
                opacity: .8
            }
        }

        /* ══ NAV ══ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            padding: 0 5%;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            background: rgba(8, 12, 20, .82);
            border-bottom: 1px solid var(--border);
            transition: background var(--tr)
        }

        [data-theme="light"] nav {
            background: rgba(240, 244, 255, .9)
        }

        .nav-logo {
            font-family: var(--H);
            font-size: 1.3rem;
            font-weight: 900;
            letter-spacing: -.5px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .nav-links {
            display: flex;
            gap: 1.8rem;
            list-style: none
        }

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: .88rem;
            font-weight: 600;
            transition: color .3s;
            position: relative
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width .3s
        }

        .nav-links a:hover {
            color: var(--text)
        }

        .nav-links a:hover::after {
            width: 100%
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .theme-btn {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--card);
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all .3s
        }

        .theme-btn:hover {
            border-color: var(--accent);
            color: var(--accent)
        }

        .btn-cta {
            padding: 10px 22px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: #fff;
            border: none;
            font-family: var(--B);
            font-weight: 700;
            font-size: .88rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform .2s, box-shadow .2s
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(56, 189, 248, .35)
        }

        /* ══ HERO ══ */
        .hero {
            min-height: 100vh;
            padding: 120px 5% 80px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            pointer-events: none
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: oF 8s ease-in-out infinite alternate
        }

        .orb1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(56, 189, 248, .15), transparent);
            top: -100px;
            right: 10%
        }

        .orb2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(129, 140, 248, .12), transparent);
            bottom: 0;
            left: 5%;
            animation-delay: -3s
        }

        .orb3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(52, 211, 153, .1), transparent);
            top: 30%;
            right: 35%;
            animation-delay: -6s
        }

        @keyframes oF {
            from {
                transform: translate(0, 0) scale(1)
            }

            to {
                transform: translate(28px, 18px) scale(1.05)
            }
        }

        .grid-lines {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(56, 189, 248, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 189, 248, .03) 1px, transparent 1px);
            background-size: 60px 60px
        }

        .hero-content {
            position: relative;
            max-width: 680px;
            z-index: 1
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border: 1px solid var(--border);
            border-radius: 100px;
            background: var(--card);
            font-size: .8rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 28px;
            animation: fU .8s ease both
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent3);
            animation: dP 1.5s ease infinite
        }

        @keyframes dP {
            0% {
                box-shadow: 0 0 0 0 rgba(52, 211, 153, .6)
            }

            70% {
                box-shadow: 0 0 0 8px rgba(52, 211, 153, 0)
            }

            100% {
                box-shadow: 0 0 0 0 rgba(52, 211, 153, 0)
            }
        }

        .hero h1 {
            font-family: var(--H);
            font-size: clamp(2.8rem, 5vw, 5rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -2px;
            margin-bottom: 24px;
            animation: fU .8s .1s ease both
        }

        .g-text {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--muted);
            line-height: 1.75;
            max-width: 560px;
            margin-bottom: 40px;
            font-weight: 400;
            animation: fU .8s .2s ease both
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fU .8s .3s ease both
        }

        .btn-outline {
            padding: 12px 24px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text);
            font-family: var(--B);
            font-size: .9rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all .3s
        }

        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent)
        }

        /* ── HERO STATS (animated counters) ── */
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
            animation: fU .8s .4s ease both
        }

        .stat-n {
            font-family: var(--H);
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1
        }

        .stat-l {
            font-size: .78rem;
            color: var(--muted);
            font-weight: 500;
            margin-top: 4px
        }

        .hero-code {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 360px;
            animation: fR 1s .3s ease both;
            z-index: 1
        }

        .code-win {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 32px 80px rgba(0, 0, 0, .45)
        }

        .code-bar {
            padding: 13px 18px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid var(--border);
            background: var(--bg2)
        }

        .cdot {
            width: 10px;
            height: 10px;
            border-radius: 50%
        }

        .cr {
            background: #ff5f57
        }

        .cy {
            background: #febc2e
        }

        .cg0 {
            background: #28c840
        }

        .code-body {
            padding: 20px;
            font-size: .76rem;
            line-height: 1.95;
            font-family: 'Courier New', monospace
        }

        .cb {
            color: #38bdf8
        }

        .cp {
            color: #818cf8
        }

        .cg {
            color: #34d399
        }

        .co {
            color: #fb923c
        }

        .cm {
            color: #475569
        }

        .cw {
            color: #e2e8f0
        }

        @keyframes fU {
            from {
                opacity: 0;
                transform: translateY(28px)
            }

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

        @keyframes fR {
            from {
                opacity: 0;
                transform: translate(28px, -50%)
            }

            to {
                opacity: 1;
                transform: translate(0, -50%)
            }
        }

        /* ══ SECTION COMMON ══ */
        section {
            padding: 100px 5%
        }

        .s-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .75rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 16px
        }

        .s-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--accent)
        }

        .s-title {
            font-family: var(--H);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 900;
            letter-spacing: -1.5px;
            margin-bottom: 14px;
            line-height: 1.1
        }

        .s-desc {
            color: var(--muted);
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.7;
            max-width: 500px
        }

        /* ══ SERVICES ══ */
        .services {
            background: var(--bg2)
        }

        .tabs-wrap {
            margin-top: 48px
        }

        .tabs-nav {
            display: flex;
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            background: var(--bg);
            margin-bottom: 32px;
            width: fit-content
        }

        .tab-btn {
            padding: 14px 28px;
            background: transparent;
            border: none;
            border-right: 1px solid var(--border);
            color: var(--muted);
            font-family: var(--B);
            font-size: .9rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all .3s;
            white-space: nowrap
        }

        .tab-btn:last-child {
            border-right: none
        }

        .tab-btn.active {
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: #fff
        }

        .tab-btn:not(.active):hover {
            color: var(--text);
            background: var(--card)
        }

        .tab-pane {
            display: none
        }

        .tab-pane.active {
            display: block;
            animation: fU .4s ease both
        }

        .sv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px
        }

        .sv-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
            transition: all .3s;
            position: relative;
            overflow: hidden
        }

        .sv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
            transform: scaleX(0);
            transition: transform .3s
        }

        .sv-card:hover {
            border-color: rgba(56, 189, 248, .3);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px var(--glow)
        }

        .sv-card:hover::before {
            transform: scaleX(1)
        }

        .sv-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 18px;
            background: var(--glow);
            color: var(--accent);
            border: 1px solid var(--border)
        }

        .sv-card h3 {
            font-family: var(--H);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -.2px
        }

        .sv-card p {
            color: var(--muted);
            font-size: .85rem;
            line-height: 1.7;
            font-weight: 400
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 14px
        }

        .tag {
            padding: 3px 10px;
            border-radius: 100px;
            font-size: .68rem;
            font-weight: 600;
            background: var(--glow);
            color: var(--accent);
            border: 1px solid var(--border)
        }

        /* ══ ABOUT ══ */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            margin-top: 56px
        }

        .about-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 32px;
            position: relative
        }

        .about-badge {
            position: absolute;
            top: -14px;
            right: 24px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: #fff;
            border-radius: 100px;
            font-size: .72rem;
            font-weight: 700;
            padding: 6px 14px;
            font-family: var(--B);
            letter-spacing: .3px
        }

        .sk-row {
            display: flex;
            flex-direction: column;
            gap: 16px
        }

        .sk-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px
        }

        .sk-name {
            font-size: .85rem;
            font-weight: 600
        }

        .sk-pct {
            font-size: .8rem;
            color: var(--accent);
            font-weight: 700
        }

        .sk-bar {
            height: 4px;
            background: var(--bg2);
            border-radius: 4px;
            overflow: hidden
        }

        .sk-fill {
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
            width: 0;
            transition: width 1.4s ease
        }

        .about-text p {
            color: var(--muted);
            line-height: 1.8;
            font-weight: 400;
            margin-bottom: 22px
        }

        .about-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .about-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: .9rem;
            font-weight: 500
        }

        .about-list li i {
            color: var(--accent3);
            width: 16px;
            flex-shrink: 0
        }

        /* ══ TECH ══ */
        .tech-sec {
            background: var(--bg2)
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 16px;
            margin-top: 48px
        }

        .tech-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 20px 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            text-align: center;
            transition: all .3s;
            cursor: default
        }

        .tech-item:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 8px 32px var(--glow)
        }

        .tech-item i {
            font-size: 1.6rem
        }

        .tech-item span {
            font-size: .7rem;
            font-weight: 600;
            color: var(--muted)
        }

        /* ══ TEAM ══ */
        .team-sec {
            background: var(--bg)
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 24px;
            margin-top: 48px
        }

        .team-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            transition: all .35s;
            position: relative;
            overflow: hidden
        }

        .team-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            opacity: 0;
            transition: opacity .35s;
            z-index: 0
        }

        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 64px var(--glow);
            border-color: rgba(56, 189, 248, .35)
        }

        .team-card:hover .tm-role {
            color: rgba(255, 255, 255, .75)
        }

        .team-card:hover .tm-name {
            color: #fff
        }

        .team-card:hover::after {
            opacity: .06
        }

        .tm-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            font-family: var(--H);
            color: #fff;
            position: relative;
            z-index: 1
        }

        .av1 {
            background: linear-gradient(135deg, #38bdf8, #818cf8)
        }

        .av2 {
            background: linear-gradient(135deg, #34d399, #0ea5e9)
        }

        .av3 {
            background: linear-gradient(135deg, #f472b6, #818cf8)
        }

        .av4 {
            background: linear-gradient(135deg, #fb923c, #f43f5e)
        }

        .tm-name {
            font-family: var(--H);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 4px;
            position: relative;
            z-index: 1;
            transition: color .35s
        }

        .tm-role {
            font-size: .82rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
            transition: color .35s
        }

        .tm-desc {
            font-size: .82rem;
            color: var(--muted);
            line-height: 1.6;
            font-weight: 400;
            position: relative;
            z-index: 1
        }

        .tm-links {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 16px;
            position: relative;
            z-index: 1
        }

        .tm-link {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: var(--bg2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: .85rem;
            text-decoration: none;
            transition: all .25s
        }

        .tm-link:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--glow)
        }

        /* ══ CLIENT SATISFACTION ══ */
        .clients-sec {
            background: var(--bg2)
        }

        .clients-inner {
            margin-top: 56px
        }

        .cs-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-bottom: 56px
        }

        .cs-box {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            transition: all .3s;
            position: relative;
            overflow: hidden
        }

        .cs-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
            transform: scaleX(0);
            transition: transform .4s;
            transform-origin: left
        }

        .cs-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px var(--glow);
            border-color: rgba(56, 189, 248, .3)
        }

        .cs-box:hover::before {
            transform: scaleX(1)
        }

        .cs-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin: 0 auto 16px;
            border: 1px solid var(--border)
        }

        .csi1 {
            background: rgba(56, 189, 248, .1);
            color: var(--accent)
        }

        .csi2 {
            background: rgba(52, 211, 153, .1);
            color: var(--accent3)
        }

        .csi3 {
            background: rgba(129, 140, 248, .1);
            color: var(--accent2)
        }

        .csi4 {
            background: rgba(251, 146, 60, .1);
            color: #fb923c
        }

        .cs-num {
            font-family: var(--H);
            font-size: 2.4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 6px
        }

        .cs-lbl {
            font-size: .85rem;
            font-weight: 600;
            color: var(--muted)
        }

        /* review stars */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px
        }

        .rv-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            transition: all .3s
        }

        .rv-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px var(--glow);
            border-color: rgba(56, 189, 248, .25)
        }

        .rv-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 12px
        }

        .rv-stars i {
            color: #fbbf24;
            font-size: .85rem
        }

        .rv-text {
            font-size: .88rem;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 400;
            margin-bottom: 16px;
            font-style: italic
        }

        .rv-author {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .rv-av {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .75rem;
            font-weight: 700;
            color: #fff;
            font-family: var(--H)
        }

        .rv-info strong {
            display: block;
            font-size: .88rem;
            font-weight: 700
        }

        .rv-info span {
            font-size: .75rem;
            color: var(--muted)
        }

        /* ══ PORTFOLIO ══ */
        .port-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 48px
        }

        .port-card {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            background: var(--card);
            transition: all .3s;
            cursor: default
        }

        .port-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 64px var(--glow)
        }

        .port-thumb {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .port-thumb i {
            font-size: 3rem;
            opacity: .6;
            color: #fff
        }

        .pt1 {
            background: linear-gradient(135deg, #0ea5e9, #6366f1)
        }

        .pt2 {
            background: linear-gradient(135deg, #059669, #0d9488)
        }

        .pt3 {
            background: linear-gradient(135deg, #d946ef, #ec4899)
        }

        .port-info {
            padding: 22px
        }

        .port-info h3 {
            font-family: var(--H);
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: -.3px
        }

        .port-info p {
            color: var(--muted);
            font-size: .85rem;
            font-weight: 400;
            margin-bottom: 14px
        }

        .port-meta {
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .pt-tag {
            font-size: .72rem;
            font-weight: 600;
            color: var(--accent)
        }

        .pt-link {
            color: var(--muted);
            font-size: .85rem;
            transition: color .2s;
            text-decoration: none
        }

        .pt-link:hover {
            color: var(--accent)
        }

        /* ══ CONTACT ══ */
        .contact-sec {
            background: var(--bg2)
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            margin-top: 56px;
            align-items: start
        }

        .contact-desc {
            color: var(--muted);
            line-height: 1.8;
            font-weight: 400;
            margin-bottom: 32px
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        .c-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: all .3s;
            text-decoration: none;
            color: var(--text)
        }

        .c-item:hover {
            border-color: var(--accent);
            transform: translateX(4px)
        }

        .c-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0
        }

        .ci-wa {
            background: rgba(37, 211, 102, .15);
            color: #25d366
        }

        .ci-em {
            background: rgba(56, 189, 248, .15);
            color: var(--accent)
        }

        .ci-ph {
            background: rgba(129, 140, 248, .15);
            color: var(--accent2)
        }

        .c-lbl {
            display: block;
            font-size: .72rem;
            color: var(--muted);
            font-weight: 400
        }

        .c-val {
            font-size: .9rem;
            font-weight: 600
        }

        .fg {
            margin-bottom: 18px
        }

        .fg label {
            display: block;
            font-size: .82rem;
            color: var(--muted);
            margin-bottom: 7px;
            font-weight: 600
        }

        .fg input,
        .fg textarea,
        .fg select {
            width: 100%;
            padding: 13px 16px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: var(--B);
            font-size: .9rem;
            outline: none;
            transition: border-color .3s;
            resize: vertical;
            font-weight: 400
        }

        .fg input:focus,
        .fg textarea:focus,
        .fg select:focus {
            border-color: var(--accent)
        }

        .fg select option {
            background: var(--card);
            color: var(--text)
        }

        .btn-send {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: #fff;
            border: none;
            font-family: var(--B);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all .3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px
        }

        .btn-send:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(56, 189, 248, .4)
        }

        .btn-send:disabled {
            opacity: .6;
            cursor: not-allowed;
            transform: none
        }

        #fmsg {
            margin-top: 14px;
            text-align: center;
            font-size: .88rem;
            font-weight: 600;
            display: none;
            padding: 12px;
            border-radius: 10px
        }

        /* ══ FOOTER ══ */
        footer {
            border-top: 1px solid var(--border);
            padding: 36px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px
        }

        .f-logo {
            font-family: var(--H);
            font-weight: 900;
            font-size: 1.2rem;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent
        }

        footer p {
            color: var(--muted);
            font-size: .82rem
        }

        .f-links {
            display: flex;
            gap: 20px
        }

        .f-links a {
            color: var(--muted);
            font-size: 1.1rem;
            text-decoration: none;
            transition: color .2s
        }

        .f-links a:hover {
            color: var(--accent)
        }

        /* ══ WA FLOAT ══ */
        .wa-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 56px;
            height: 56px;
            border-radius: 18px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 8px 32px rgba(37, 211, 102, .45);
            z-index: 300;
            transition: all .3s;
            animation: wP .5s 3s ease both;
            opacity: 0
        }

        .wa-btn:hover {
            transform: scale(1.12) translateY(-3px);
            box-shadow: 0 16px 48px rgba(37, 211, 102, .6)
        }

        @keyframes wP {
            from {
                opacity: 0;
                transform: scale(.4)
            }

            to {
                opacity: 1;
                transform: scale(1)
            }
        }

        .wa-tip {
            position: absolute;
            right: 68px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 8px 14px;
            font-size: .8rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s;
            color: var(--text)
        }

        .wa-btn:hover .wa-tip {
            opacity: 1
        }

        /* ══ REVEAL ══ */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity .7s ease, transform .7s ease
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0)
        }

        /* ══ RESPONSIVE ══ */
        @media(max-width:900px) {
            .nav-links {
                display: none
            }

            .hero-code {
                display: none
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr
            }

            .hero-stats {
                gap: 24px
            }

            .tabs-nav {
                flex-direction: column;
                width: 100%;
                border-radius: 12px
            }

            .tab-btn {
                border-right: none;
                border-bottom: 1px solid var(--border)
            }

            .tab-btn:last-child {
                border-bottom: none
            }
        }

        /* ══ Active tab ══ */
        .active_tab {
            color: #4f8cff !important;
            font-weight: bold !important;
        }