*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            user-select: none;
        }
        body::before {
            content: "";
            position: fixed;
            top: 40%;
            left: 20%;
            font-size: 48px;
            color: rgba(0,0,0,0.08);
            transform: rotate(-30deg);
            pointer-events: none;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            background: #f8f9fa;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .navbar {
            background: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0 20px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
        }

        .nav-logo {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a2e;
            white-space: nowrap;
        }

        .nav-logo img {
            height: 40px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 13px;
            font-weight: 500;
        }

        .nav-links a {
            color: #555;
            transition: color .2s;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #e8533f;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: auto;
        }

        .nav-lang {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: #555;
            cursor: pointer;
        }

        .nav-lang i {
            font-size: 13px;
            color: #4a9eff;
        }

        .btn-masuk {
            font-size: 12px;
            font-weight: 600;
            color: #555;
            padding: 6px 14px;
            border-radius: 6px;
            border: 1.5px solid #dde4ec;
            background: #fff;
            cursor: pointer;
            font-family: inherit;
            transition: all .2s;
            white-space: nowrap;
        }

        .btn-masuk:hover {
            border-color: #e8533f;
            color: #e8533f;
        }

        .btn-daftar {
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            padding: 7px 16px;
            border-radius: 6px;
            border: none;
            background: #076acd;
            cursor: pointer;
            font-family: inherit;
            transition: background .2s;
            white-space: nowrap;
        }

        .btn-daftar:hover {
            background: #0556a3;
        }

        .hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e88e5 50%, #42d5f5 100%);
            padding: 80px 20px 50px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .06);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -60px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .05);
            pointer-events: none;
        }

        .hero h1 {
            color: #fff;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 6px;
            position: relative;
        }

        .hero p {
            color: rgba(255, 255, 255, .8);
            font-size: 13px;
            margin-bottom: 26px;
            position: relative;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-image {
            max-width: 100%;
            height: auto;
            margin-bottom: 30px;
        }

        .hero-title {
            font-size: 28px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 25px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 30px;
        }

        .badge-item {
            background: #fff;
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 20px;
            color: #4c718a;
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-search {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border-radius: 10px;
            padding: 8px 8px 8px 18px;
            max-width: 680px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
        }

        .hero-search .input-wrap {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .hero-search .input-wrap i {
            color: #bbb;
            font-size: 14px;
            flex-shrink: 0;
        }

        .hero-search input {
            border: none;
            outline: none;
            font-family: inherit;
            font-size: 12.5px;
            color: #444;
            flex: 1;
            min-width: 0;
            background: transparent;
        }

        .hero-search input::placeholder {
            color: #aab;
        }

        .hero-search .divider {
            width: 1px;
            height: 30px;
            background: #e8ecf0;
            flex-shrink: 0;
        }

        .select-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 0 0 160px;
            cursor: pointer;
            position: relative;
        }

        .select-wrap i.icon-briefcase {
            color: #bbb;
            font-size: 14px;
        }

        .select-wrap select {
            appearance: none;
            -webkit-appearance: none;
            border: none;
            outline: none;
            font-family: inherit;
            font-size: 12.5px;
            color: #555;
            flex: 1;
            background: transparent;
            cursor: pointer;
            padding-right: 16px;
        }

        .select-wrap .chevron {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 10px;
            color: #999;
            pointer-events: none;
        }

        .btn-cari {
            background: #076acd;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 9px 24px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: background .2s;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-cari:hover {
            background: #0556a3;
        }

        .main-content {
            flex: 1;
            padding: 28px 20px 44px;
            width: 100%;
            max-width: 100%;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 100%;
        }

        .company-card {
            background: #fff;
            border: 1px solid #e4e5e7;
            border-radius: 8px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            transition: box-shadow .2s, transform .2s;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            width: 100%;
            min-width: 0;
        }

        .company-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
            transform: translateY(-2px);
        }

        .card-header {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .card-logo {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 6px;
            border: solid 1px #e4e5e7;
            overflow: hidden;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .card-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 4px;
        }

        .card-info {
            min-width: 0;
            flex: 1;
        }

        .card-name-row {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
        }

        .card-name {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            margin-top: 15px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
            min-width: 0;
        }

        .card-name i.badge-verified {
            color: #00a5a5;
            font-size: 13px;
            flex-shrink: 0;
        }

        .card-Penempatan {
            font-size: 11px;
            color: #6b7177;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .card-Penempatan i {
            font-size: 10px;
        }

        .card-industry {
            font-size: 11px;
            color: #6b7177;
            margin-bottom: 3px;
            display: flex;
            align-items: center;
            gap: 4px;
            line-height: 1.4;
        }

        .card-industry i {
            font-size: 10px;
            color: #999;
        }

        .card-karyawan {
            font-size: 11px;
            color: #6b7177;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .card-karyawan i {
            font-size: 10px;
            color: #999;
        }

        .card-divider {
            border: 0;
            border-top: 1px solid #e4e5e7;
            margin: 12px 0;
        }

        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .card-jobs {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: #2eb46b;
            font-weight: 400;
        }

        .card-jobs i {
            color: #2eb46b;
            font-size: 11px;
        }

        .card-status {
            font-size: 10px;
            color: #00a5a5;
            font-weight: 500;
            background: #e6f7f7;
            padding: 3px 8px;
            border-radius: 4px;
        }

        .link-detail {
            font-size: 12px;
            font-weight: 500;
            padding: 4px 15px;
            background-color: #3db2ff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            border-radius: 5px;
            color: #fff;
            transition: color .2s;
            white-space: nowrap;
        }
        .link-detail i{
            font-size: 12px;
            font-weight: 500;
            color: #000;
            transition: color .2s;
            white-space: nowrap;
        }

        .link-detail:hover {
            color: #fff;
            background-color: #136eaa;
            text-decoration: underline;
        }

        .pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 32px;
        }

        .pg-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1.5px solid #dde4ec;
            background: #fff;
            font-size: 13px;
            font-weight: 600;
            color: #555;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: inherit;
            transition: all .2s;
        }

        .pg-btn:hover {
            border-color: #4a9eff;
            color: #4a9eff;
        }

        .pg-btn.active {
            background: #4a9eff;
            border-color: #4a9eff;
            color: #fff;
        }

        .pg-btn:disabled {
            opacity: .35;
            cursor: default;
        }

        .scroll-top {
            position: fixed;
            bottom: 80px;
            right: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            border: 1.5px solid #dde4ec;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s, transform .2s;
            z-index: 50;
        }

        .scroll-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .scroll-top:hover {
            transform: translateY(-2px);
        }

        .scroll-top i {
            color: #555;
            font-size: 14px;
        }

        /* ✅ SEO: Hidden keyword-rich content block untuk mesin pencari */
        .seo-text-block {
            max-width: 100%;
            padding: 20px;
            margin-top: 10px;
            background: #fff;
            border-radius: 8px;
            border: 1px solid #e8ecf0;
        }

        .seo-text-block h2 {
            font-size: 15px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 8px;
        }

        .seo-text-block p {
            font-size: 12px;
            color: #888;
            line-height: 1.7;
        }

        footer {
            background: #4c535a;
            border-top: 1px solid #e8ecf0;
            padding: 44px 20px 20px;
            margin-top: auto;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 32px;
            max-width: 100%;
        }

        .footer-brand p {
            font-size: 11.5px;
            color: #fff;
            line-height: 1.7;
            margin-top: 12px;
            text-align: justify;
        }

        .footer-brand .brand-note {
            font-size: 11px;
            color: #aaa;
            margin-top: 14px;
        }

        .footer-col h4 {
            font-size: 12.5px;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 12px;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 11.5px;
            color: #888;
            transition: color .2s;
        }

        .footer-col ul li a:hover {
            color: #e8533f;
        }

        .social-row {
            display: flex;
            gap: 8px;
            margin-top: 4px;
        }

        .social-row a {
            width: 30px;
            height: 30px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            transition: transform .2s;
        }

        .social-row a:hover {
            transform: scale(1.1);
        }

        .social-linkedin { background: #0077b5; }
        .social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .social-tiktok { background: #010101; }
        .social-youtube { background: #ff0000; }
        .social-x { background: #1a1a2e; }

        .footer-col .unduh-title {
            font-size: 12.5px;
            font-weight: 600;
            color: #fff;
            margin-top: 16px;
            margin-bottom: 8px;
        }

        .footer-bottom {
            margin: 28px 0 0;
            background-color: #4c535a;
            padding-top: 18px;
            border-top: 1px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom span,
        .footer-bottom a {
            font-size: 11px;
            color: #aaa;
        }

        .footer-bottom a:hover {
            color: #e8533f;
        }

        .footer-bottom .right-links {
            display: flex;
            gap: 18px;
        }

        .btn-login {
            font-size: 18px;
            font-weight: 700;
            background-color: #128FB2;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background-color: #2FB0D3;
            transform: scale(1.08);
        }

        @media (min-width: 1200px) {
            .card-grid { grid-template-columns: repeat(3, 1fr); max-width: 1320px; margin: 0 auto; }
            .main-content { max-width: 1320px; margin: 0 auto; }
            .footer-inner { max-width: 1320px; margin: 0 auto; }
            .footer-bottom { max-width: 1320px; margin-left: auto; margin-right: auto; }
        }

        @media (min-width: 768px) and (max-width: 1199px) {
            .card-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .main-content { padding: 24px 16px 40px; }
            .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
            .navbar { padding: 0 16px; }
        }

        @media (max-width: 767px) {
            .navbar { padding: 0 12px; height: 52px; }
            .nav-logo { font-size: 18px; }
            .nav-logo img { height: 25px; }
            .nav-links { display: none; }
            .nav-right { gap: 8px; }
            .btn-masuk { font-size: 11px; padding: 5px 10px; }
            .btn-daftar { font-size: 11px; padding: 6px 12px; }
            .hero { padding: 32px 12px 40px; }
            .hero h1 { font-size: 19px; line-height: 1.3; }
            .hero p { font-size: 12px; margin-bottom: 22px; }
            .hero-search { flex-direction: column; padding: 12px; gap: 10px; max-width: 100%; width: calc(100% - 24px); margin: 0 12px; }
            .hero-search .divider { width: 100%; height: 1px; }
            .badge-item { font-size: 12px; padding: 8px 15px; }
            .hero-title { font-size: 20px; }
            .hero-image { max-width: 280px; margin-bottom: 10px; }
            .hero-search .input-wrap { width: 100%; }
            .select-wrap { flex: 1; width: 100%; min-width: 100%; }
            .btn-cari { width: 100%; padding: 9px; }
            .card-grid { grid-template-columns: 1fr; gap: 16px; }
            .main-content { padding: 20px 12px 36px; }
            .company-card { padding: 14px; }
            .card-logo { width: 54px; height: 54px; min-width: 44px; }
            .card-name { font-size: 15px; margin-top: 15px; font-weight: 700; }
            .card-industry, .card-karyawan { font-size: 10px; }
            .card-jobs { font-size: 10px; }
            .link-detail { font-size: 11px; }
            .pagination { margin-top: 24px; }
            .pg-btn { width: 32px; height: 32px; font-size: 12px; }
            footer { padding: 32px 12px 18px; }
            .footer-inner { grid-template-columns: 1fr; gap: 22px; }
            .footer-brand p { font-size: 11px; }
            .footer-col h4 { font-size: 12px; margin-bottom: 10px; }
            .footer-col ul li { margin-bottom: 7px; }
            .footer-col ul li a { font-size: 11px; }
            .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 22px; padding-top: 14px; }
            .footer-bottom span, .footer-bottom a { font-size: 10px; }
            .footer-bottom .right-links { flex-direction: column; gap: 6px; }
            .scroll-top { bottom: 60px; right: 16px; width: 36px; height: 36px; }
        }