:root {
    --mainColor: #00142E;
    --secondaryColor: #32012F;
    --acsentColor: #DD7900;
    --cardLight: rgba(255, 255, 255, 0.08);
    /* dipakai utk kartu gelap */

    /* === GLOBAL SPACING VARIABLES === */
    --spacing-desktop: 100px;
    --spacing-mobile: 60px;
}

/* === Reset warna global === */
* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    /* Ubah ke 100vh agar full screen */
    font-family: 'Poppins', sans-serif;
    background: #FAFAFA;
    /* semua background utama */
    color: #00142E;
    /* semua teks default putih */
    overflow-x: hidden;
    /* Mencegah scroll samping di HP */
}


/* Link default putih, hover aksen */
a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: var(--acsentColor);
}

/* Utility */
.color-acsent {
    color: var(--acsentColor) !important;
}

/* === NAVBAR GLASS WHITE PREMIUM === */
.nav-glass {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.65);
    /* Sedikit lebih solid */
    /* putih glass soft */
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 55px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);

    width: 90%;
    max-width: 1150px;
    height: 78px;
    padding: 0 36px;
    z-index: 1050;

    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

/* BRAND */
.navbar-brand {
    background: linear-gradient(90deg, #0066ff, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.45rem;
    font-weight: 800;
}

/* MENU */
.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: #003366 !important;
    padding: 10px 18px;
    border-radius: 12px;
    transition: .25s;
}

.navbar-nav .nav-link:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #000 !important;
}

.navbar-nav .nav-link.active {
    background: rgba(0, 102, 255, 0.12);
    color: #0066ff !important;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.25);
}

/* BUTTON MASUK */
.btn-masuk {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.25);
    transition: all .25s;
}

.btn-masuk:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.35);
}

/* =============================
   HERO SECTION (FIX MELEBAR)
============================= */
.hero {
    margin-top: 80px;
    padding: 80px 24px;

    /* FIX UTAMA ─ agar tidak melebar */
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;

    background: radial-gradient(circle at top right, #f8faff, #ffffff);
    position: relative;
    overflow: hidden;
}

/* Container grid */
.hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Badge */
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #f0f2ff;
    color: #3b82f6;
    /* BIRU */
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #e0e7ff;
}

/* Heading */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    /* TEKS UTAMA */
    letter-spacing: -1.5px;
}

.text-gradient {
    background: linear-gradient(90deg, #4F46E5, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-subtitle {
    margin-top: 24px;
    font-size: 18px;
    color: #64748b;
    /* TEKS MUTED */
    line-height: 1.7;
    max-width: 520px;
}

/* Buttons */
.hero-buttons {
    margin-top: 36px;
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: #3b82f6;
    /* BIRU */
    color: white;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2563eb;
    /* BIRU GELAP */
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

.btn-outline {
    background: transparent;
    color: #0f172a;
    /* TEKS */
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #d1d5db;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #f9fafb;
}

/* Trust badge */
.trust-badge-simple {
    margin-top: 40px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.star-row {
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
}

.trust-badge-simple p {
    font-size: 14px;
    color: #64748b;
    /* muted */
    margin: 0;
}

/* Image side */
.hero-img-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 0;           /* No card shape */
    box-shadow: none;           /* Hilang shadow-nya */
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.1)); /* Glow halus */
}

.soft-mask {
    -webkit-mask-image: radial-gradient(circle at center,
            rgba(0, 0, 0, 1) 60%,
            rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(circle at center,
            rgba(0, 0, 0, 1) 60%,
            rgba(0, 0, 0, 0) 100%);
}

/* Blob background */
.blob-decoration {
    position: absolute;
    top: -5%;
    right: -5%;
    width: 110%;
    height: 110%;
    background: #eff6ff;
    z-index: -1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(50px);
}


/* =============================
   ABOUT SECTION (REWORKED)
============================= */

/* Background + Padding */
.about-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at 20% 30%,
            rgba(255, 230, 200, 0.4) 0%,
            #ffffff 40%,
            rgba(173, 206, 255, 0.4) 100%);
    overflow: hidden;
}

/* Max width FIX agar tidak melebar */
.about-container {
    max-width: 1200px;
    width: 100%;
}

/* Grid */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =============================
   Left Image
============================= */
.about-left {
    position: relative;
}

.about-img-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.05);
}

/* =============================
   Right Content
============================= */
.about-tag {
    color: #0d6efd;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #00142E;
    line-height: 1.15;
    margin-bottom: 22px;
}

.accent {
    color: #0d6efd;
}

.fm {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 32px;
    max-width: 520px;
}

/* =============================
   Benefit List
============================= */
.simple-benefits {
    display: grid;
    gap: 20px;
}

.b-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.b-item i {
    color: #0d6efd;
    font-size: 1.45rem;
    padding: 8px;
    background: rgba(13, 110, 253, 0.12);
    border-radius: 10px;
}

.b-item span {
    color: #444;
    font-size: 1rem;
    line-height: 1.55;
}

.b-item strong {
    display: block;
    color: #00142E;
    margin-bottom: 2px;
}




/* =============================
   FEATURE SECTION (REWORKED)
============================= */

/* Perbaikan utama: batasi width section */
.feature-section {
    padding: var(--spacing-desktop) 20px;
    display: flex;
    justify-content: center;
}

.feature-container {
    max-width: 1200px;
    /* FIX utama agar tidak melebar */
    width: 100%;
}

/* Header */
.section-header-feature {
    text-align: left;
    /* bisa ganti center jika mau */
    margin-bottom: 40px;
}

.section-header-feature h2 {
    font-size: 30px;
    font-weight: 800;
    color: #00142E;
}

.section-header-feature p {
    font-size: 15px;
    color: #6c757d;
    margin-top: 6px;
}

/* GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    /* FIX lebih rapi */
    gap: 26px;
}

/* CARD */
.feature-card {
    position: relative;
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

/* ICON WRAPPER */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.icon-purple {
    background: #f3e7ff;
    color: #a259ff;
}

.icon-blue {
    background: #e6f0ff;
    color: #3b82f6;
}

.icon-green {
    background: #e6f9ef;
    color: #22c55e;
}

.icon-yellow {
    background: #fff7e6;
    color: #f59e0b;
}

.icon-pink {
    background: #ffe6ef;
    color: #ff4d8c;
}

.icon-orange {
    background: #fff2e6;
    color: #ff922b;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.55;
}

/* BADGES */
.badge-premium,
.badge-soon {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
}

.badge-premium {
    background: #ffebc2;
    color: #d38200;
}

.badge-soon {
    background: #e9ecef;
    color: #6c757d;
}


/* === Footer Marquee === */
.footer {
    background: #0A1A33;
    /* NAVY */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

/* Marquee */
.marquee {
    display: flex;
    animation: marquee 40s linear infinite;
    width: fit-content;
}

.footer ul {
    display: flex;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    display: inline-block;
}

/* Separator Icon */
.separator i {
    font-size: 1rem;
    margin: 0 12px;
    color: #ffffff;
    /* Putih */
    opacity: 0.75;
    /* Biar soft */
}

/* Text link */
.footer a {
    text-decoration: none;
    color: #ffffff;
    /* Putih */
    font-weight: bold;
    font-size: 20px;
    white-space: nowrap;
}

/* Fallback separator text (if used) */
.separator {
    font-size: 20px;
    color: #ffffff;
    /* Putih */
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.jt-invite {
    padding: var(--spacing-desktop) 20px;
    /* Use Variable */
    background: radial-gradient(circle at 50% 10%,
            rgba(147, 197, 253, 0.28) 0%,
            rgba(255, 255, 255, 1) 55%),
        radial-gradient(circle at 85% 80%,
            rgba(187, 247, 208, 0.32) 0%,
            rgba(255, 255, 255, 1) 60%);
}

/* Card */
.jt-box {
    text-align: center;
    max-width: 750px;
    margin: auto;
    padding: 55px 42px;
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* Headline */
.jt-box h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0f172a;
}

/* Description */
.jt-box p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.55;
}

/* Main CTA Button */
.jt-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #3b82f6, #22d3ee);
    color: white;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.25);
}

/* Hover */
.jt-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(34, 211, 238, 0.35);
}

/* =============================
   JOB SECTION — FIXED
============================= */

.job-section {
    padding: 100px 20px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.job-section .job-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Kiri */
.job-left {
    flex: 1;
}

.job-tag {
    display: inline-block;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Judul khusus job section — biar ga konflik */
.job-section .title-job {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 20px;
}

.job-section .title-job .accent {
    color: #0d6efd;
}

.job-description {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 25px;
}

.job-details {
    border-left: 4px solid #0d6efd;
    padding-left: 20px;
    margin-bottom: 35px;
    color: #6c757d;
    font-size: 1rem;
}

/* Tombol */
.btn-job {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background-color: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

.btn-job:hover {
    background-color: #0a58ca;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.35);
}

.btn-job i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.btn-job:hover i {
    transform: translateX(8px);
}

/* Kanan */
.job-right {
    flex: 1;
}

.job-img-wrapper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.job-img {
    width: 100%;
    transition: transform 0.5s ease;
}

.job-img-wrapper:hover .job-img {
    transform: scale(1.05);
}

/* =========================================================
   PRODUCT SECTION (RAPIH & FIX MELEBAR)
========================================================= */

.product-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.product-section .container {
    max-width: 1200px;
    margin: auto;
}

/* Section Header */
.section-header-product {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.section-header-product h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1e23;
    margin-bottom: 10px;
}

.section-header-product p {
    color: #6c757d;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Card */
.product-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 40px;
    transition: .4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border-color: #0d6efd;
}

/* Premium Card */
.product-card.premium {
    background: #1a1e23;
    color: #fff;
    border: none;
}

.product-card.premium h3,
.product-card.premium .amount,
.product-card.premium .currency {
    color: #fff;
}

.product-card.premium .product-desc,
.product-card.premium .fitur-list li {
    color: #a0aab4;
}

/* Best Value Badge */
.best-value-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0d6efd;
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Typography */
.tag-plan {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.12);
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-wrapper {
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 0.9rem;
    display: block;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1e23;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 4px;
}

/* Fitur List */
.fitur-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
}

.fitur-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
}

.fitur-list li i {
    color: #22c55e;
    font-size: 1.2rem;
}

.fitur-list li.disabled {
    color: #cbd5e0;
}

.fitur-list li.disabled i {
    color: #cbd5e0 !important;
}

/* Stars icon */
.bi-stars {
    color: #fbbf24 !important;
}

/* Buttons */
.btn-product {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

/* Outline button */
.btn-product.outline {
    border: 2px solid #e2e8f0;
    color: #1a1e23;
}

.btn-product.outline:hover {
    background: #f8fafc;
    border-color: #1a1e23;
}

/* Secondary button */
.btn-product.secondary {
    background: #eef2f6;
    color: #0d6efd;
}

.btn-product.secondary:hover {
    background: #0d6efd;
    color: #fff;
}

/* Primary button */
.btn-product.primary {
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.btn-product.primary:hover {
    background: #0b5ed7;
    transform: scale(1.02);
}



/* =========================
   HOW IT WORKS SECTION
========================= */
.how-section {
    padding: 80px 20px;
    background: #f8fafc;
    text-align: center;
    position: relative; /* penting untuk garis */
}

.how-header-container {
    max-width: 700px;
    margin: 0 auto 60px;
}

.how-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.how-desc {
    color: #64748b;
    font-size: 1.1rem;
}

/* Grid */
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* === GARIS PENGHUBUNG UTAMA === */
.how-line {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82%;
    height: 4px;
    background: #d5dce3;
    border-radius: 8px;
    z-index: 0;
    overflow: hidden;
}

/* === GARIS ANIMASI YANG BERGERAK === */
.how-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #0066ff, #3b82f6, #6366f1, #8b5cf6);
    border-radius: 8px;
    animation: progressFlow 4s ease-in-out infinite;
}

/* ANIMASI GERAK BERTAHAP */
@keyframes progressFlow {
    0% {
        width: 0%;
        opacity: 0;
    }

    10% {
        width: 10%;
        opacity: 1;
    }

    25% {
        width: 35%;
        /* sampai card 2 */
    }

    40% {
        width: 52%;
        /* sampai card 3 */
    }

    55% {
        width: 70%;
        /* hampir card 4 */
    }

    70% {
        width: 100%;
        /* ke step terakhir */
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        width: 0%;
        /* reset ulang */
    }
}

/* Card */
.how-card {
    position: relative;
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: .4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

/* TITIK NODE PENGHUBUNG */
.how-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #1e293b;
    border-radius: 50%;
    z-index: 5;
}
.how-card:last-child::after {
    display: none;
}

/* Card Hover */
.how-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Background Number */
.how-number-back {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: #f1f5f9;
    z-index: -1;
    transition: .4s ease;
}

.how-card:hover .how-number-back {
    transform: scale(1.2);
    color: rgba(0, 102, 255, 0.05);
}

/* Icon Box */
.how-icon-box {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: .4s ease;
}

/* Icon Hover (4 warna hardcode sesuai card) */
.how-card:nth-child(1):hover .how-icon-box {
    background: #0066ff;
    color: #fff;
    transform: rotateY(180deg);
}

.how-card:nth-child(2):hover .how-icon-box {
    background: #3b82f6;
    color: #fff;
    transform: rotateY(180deg);
}

.how-card:nth-child(3):hover .how-icon-box {
    background: #6366f1;
    color: #fff;
    transform: rotateY(180deg);
}

.how-card:nth-child(4):hover .how-icon-box {
    background: #8b5cf6;
    color: #fff;
    transform: rotateY(180deg);
}

/* Title & Text */
.how-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.how-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Glow effect */
.card-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    filter: blur(30px);
    opacity: 0;
    transition: .4s ease;
}

/* Glow warna */
.how-card:nth-child(1) .card-glow {
    background: #0066ff;
}

.how-card:nth-child(2) .card-glow {
    background: #3b82f6;
}

.how-card:nth-child(3) .card-glow {
    background: #6366f1;
}

.how-card:nth-child(4) .card-glow {
    background: #8b5cf6;
}

.how-card:hover .card-glow {
    opacity: 0.3;
}



/* ================================
   LOWONGAN KERJA (PROMO RECRUITER)
================================ */

.job-promo-section {
    padding: 100px 20px;
    background: #ffffff;
}

.job-promo-section .container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.promo-wrapper {
    text-align: center;
}

.promo-tag {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    display: inline-block;
}

.promo-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1e23;
    margin-bottom: 14px;
}

.accent-text {
    color: #0d6efd;
}

.promo-lead {
    color: #6c757d;
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Grid Cards */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-bottom: 50px;
}

.promo-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #ededed;
    transition: .3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: #0d6efd;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.10);
}

.promo-card.highlight {
    background: #f8fbff;
    border-color: #dbe7ff;
}

.card-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 18px;
}

.promo-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1e23;
    margin-bottom: 12px;
}

.promo-card p {
    font-size: 0.92rem;
    color: #7a828a;
    line-height: 1.6;
}

/* Buttons */
.promo-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main-promo {
    background: #1a1e23;
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.btn-main-promo:hover {
    background: #0d6efd;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.btn-sub-promo {
    background: #fff;
    color: #1a1e23;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    transition: .3s ease;
}

.btn-sub-promo:hover {
    background: #f8f9fa;
    border-color: #1a1e23;
}



/* === COLLABORATION SECTION (Enhanced Modern Look) === */
.collab-section {
    padding: var(--spacing-desktop) 16px;
    /* Use Variable */
    position: relative;
    overflow: hidden;
}

/* Background Decorative Glow */
.collab-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%,
            rgba(120, 162, 255, 0.25),
            rgba(255, 255, 255, 0)),
        radial-gradient(circle at 80% 70%,
            rgba(255, 182, 240, 0.25),
            rgba(255, 255, 255, 0));
    z-index: 1;
    pointer-events: none;
}

.collab-container {
    position: relative;
    z-index: 2;

    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;

    padding: 40px 36px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;

    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.06);
}

.collab-text h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #001a33;
    line-height: 1.2;
}

.collab-text p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.72);
    margin: 0;
    max-width: 480px;
    line-height: 1.5;
}

/* Button */
.btn-contact {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 26px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    text-decoration: none;
    transition: .3s ease;
    border: none;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}

/* ======================================
   CONTACT SECTION — PREMIUM ELEVATED
====================================== */

.contact-section {
    width: 100%;
    padding: 120px 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #f3f7ff 100%);
    position: relative;
    overflow: hidden;
}

/* Soft vignette lighting */
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.12), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.12), transparent 55%);
    pointer-events: none;
}

/* Main container */
.contact-container {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
}

/* LEFT SIDE ========================================== */
.contact-left {
    flex: 1;
    animation: fadeUp 0.7s ease;
}

.contact-title {
    font-size: 50px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-title span {
    color: #3b82f6;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    max-width: 480px;
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Info Card */
.contact-info-box {
    background: rgba(255, 255, 255, 0.7);
    padding: 26px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(14px);
    margin-bottom: 35px;
}

.contact-info-box p {
    margin: 12px 0;
    font-size: 17px;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.contact-info-box i {
    font-size: 18px;
    color: #3b82f6;
    margin-right: 10px;
}

/* Social Icons */
.contact-social a {
    width: 48px;
    height: 48px;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    font-size: 22px;
    color: #1e293b;
    margin-right: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.contact-social a:hover {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* RIGHT SIDE ========================================== */
.contact-right {
    flex: 1;
}

/* Form Card Upgrade */
.form-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 26px;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: fadeUp 0.9s ease;
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0f172a;
}

/* Inputs Modern */
.modern-input {
    padding: 15px 18px !important;
    border-radius: 14px !important;
    border: 1px solid #dfe3e8 !important;
    background: #f9fafb !important;
    font-size: 16px !important;
    transition: 0.25s ease !important;
}

.modern-input:focus {
    background: #fff !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.45) !important;
}

/* Send Button */
.btn-send {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}

.btn-send:hover {
    transform: translateY(-3px);
    opacity: 0.93;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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



/* ================================
   FOOTER — PREMIUM CLEAN VERSION
================================ */

.footer-main {
    background: radial-gradient(circle at top left, #ffffff, #f0f0f0);
    color: #222;
    padding: 4rem 0 2.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* GRID 3 KOLOM */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.3rem;
}

/* BRAND */
.footer-brand .brand-name {
    font-weight: 700;
    font-size: 1.4rem;
    color: #0077ff;
    margin-bottom: 0.8rem;
}

.footer-brand .brand-desc {
    color: rgba(0, 0, 0, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* SOCIAL ICONS */
.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-right: 10px;
    font-size: 1.1rem;
    color: #444;
    transition: .3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.footer-social a:hover {
    background: #0077ff;
    color: #fff;
    border-color: #0077ff;
    transform: translateY(-3px);
}

/* TITLES */
.footer-main h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

/* LIST */
.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main ul li {
    margin-bottom: 0.5rem;
}

.footer-main ul li a {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
    font-size: 0.93rem;
    transition: .3s;
}

.footer-main ul li a:hover {
    color: #0077ff;
}

/* FOOTER BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.7rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.6);
}

.footer-bottom p {
    margin: 0;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.55);
    margin-left: 1rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #0077ff;
}

/* ==========================================================
   RESPONSIVE DESIGN TAMBAHAN
   ========================================================== */

/* === SMARTPHONE (max-width: 576px) === */
@media (max-width: 576px) {

    /* 1. Umum */
    body {
        font-size: 14px;
        padding: 0;
        /* Reset padding body */
    }

    /* Ubah bentuk Container Nav di HP */
    .nav-glass {
        top: 15px;
        width: 92%;
        height: auto;
        /* Tinggi otomatis mengikuti isi */
        min-height: 60px;
        padding: 12px 20px 20px;
        /* Padding bawah lebih besar utk tombol */
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.98);
        /* Hampir solid putih */
        flex-direction: column;
        /* Stack vertikal */
        align-items: stretch;
        /* Lebar penuh */
    }

    /* Logo di Mobile */
    .navbar-brand {
        font-size: 1.3rem;
        margin-bottom: 0;
        display: block;
        width: 100%;
        /* Beri jarak agar tidak nabrak tombol hamburger */
        padding-right: 40px;
    }

    /* === PERBAIKAN TOMBOL HAMBURGER === */
    .navbar-toggler {
        border: none;
        background: transparent;
        padding: 4px;
        outline: none;
        box-shadow: none !important;
        position: absolute;
        /* Kunci posisi di pojok kanan atas */
        right: 20px;
        top: 12px;
        z-index: 1060;
    }

    /* Paksa Icon Menjadi Hitam Pekat (Solusi Masalah 'Nyaru') */
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        filter: brightness(0) saturate(100%);
    }

    /* Menu Container (Dropdown) */
    .navbar-collapse {
        width: 100%;
        margin-top: 15px;
    }

    /* Styling Menu Items */
    .navbar-nav {
        flex-direction: row;
        /* Grid style */
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 15px;
        /* Jarak sebelum tombol masuk */
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link {
        width: auto;
        font-size: 13px;
        padding: 8px 14px;
        background: rgba(0, 20, 46, 0.04);
        color: #00142E !important;
        border-radius: 20px;
        text-align: center;
    }

    /* === TOMBOL MASUK TETAP ADA (Mobile Style) === */
    .btn-masuk {
        display: flex !important;
        /* Paksa muncul */
        width: 100%;
        /* Lebar penuh */
        padding: 12px 0;
        /* Lebih tebal */
        font-size: 1rem;
        margin-top: 5px;
        /* Jarak dari menu link */
        order: 10;
        /* Pastikan di urutan paling bawah */
    }

    /* Sembunyikan elemen helper bootstrap jika ada */
    .nav-glass .ms-lg-3 {
        display: none !important;
    }

    /* Tampilkan tombol khusus mobile (jika pakai struktur class ms-lg-3 untuk tombol) */
    .ms-lg-3 {
        display: block !important;
        width: 100%;
        margin-top: 5px;
    }

    .ms-lg-3 .btn {
        width: 100%;
        justify-content: center;
        display: flex !important;
    }


 /* ===== HERO ===== */
 /* Hero container jadi 1 kolom */
 .hero-container {
     grid-template-columns: 1fr;
     text-align: center;
     gap: 35px;
 }

 /* Hilangkan gambar */
 .hero-right {
     display: none;
 }

 /* Perkecil heading */
 .hero-title {
     font-size: 30px;
     line-height: 1.25;
 }

 .hero-subtitle {
     font-size: 15px;
     max-width: 90%;
     margin: 0 auto;
 }

 /* Tombol jadi full width */
 .hero-buttons {
     flex-direction: column;
     align-items: center;
 }

 .hero-buttons a {
     width: 100%;
     max-width: 320px;
 }

 /* Trust badge dirapikan */
 .trust-badge-simple {
     margin-top: 30px;
 }

 /* ===== FEATURE ===== */
 .section-header-feature h2 {
     font-size: 22px;
 }

 .feature-grid {
     grid-template-columns: 1fr;
 }

 /* ===== ABOUT ===== */
 .about-wrapper {
     grid-template-columns: 1fr;
     text-align: center;
     gap: 40px;
 }

 .about-img-wrapper {
     max-width: 320px;
     margin: auto;
 }

 .section-title {
     font-size: 28px !important;
 }

 .simple-benefits {
     text-align: left;
     margin: auto;
     max-width: 330px;
 }

 /* ===== JOB SECTION ===== */
 .job-wrapper {
     flex-direction: column-reverse;
     text-align: center;
     gap: 40px;
 }

 .title-job {
     font-size: 26px !important;
     line-height: 1.3;
 }

 .job-img-wrapper {
     max-width: 320px;
     margin: auto;
 }

 .btn-job {
     width: 100%;
     justify-content: center;
     padding: 14px;
     font-size: 1rem;
 }

 /* ===== PRODUCT SECTION ===== */
 .product-grid {
     grid-template-columns: 1fr;
 }

 .product-card {
     padding: 32px;
 }

 .section-header-product h2 {
     font-size: 26px;
 }

 /* ===== HIW ===== */
  .how-title {
      font-size: 26px;
  }

  .how-grid {
      grid-template-columns: 1fr;
      gap: 45px;
      position: relative;
  }

  .how-card {
      padding: 30px 22px;
  }

  /* === GARIS TIMELINE VERTICAL === */
  .how-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      /* otomatis ngikut tinggi semua card */
      width: 4px;
      transform: translateX(-50%);
      background: #d5dce3;
      border-radius: 8px;
      z-index: 0;
  }

  /* === ANIMASI GARIS === */
  .how-line::after {
      content: "";
      position: absolute;
      left: 0;
      width: 4px;
      height: 0;
      background: linear-gradient(#0066ff, #3b82f6, #6366f1, #8b5cf6);
      border-radius: 8px;
      animation: verticalRun 4s ease-in-out infinite;
  }

  @keyframes verticalRun {
      0% {
          height: 0%;
          opacity: 0;
      }

      25% {
          height: 30%;
          opacity: 1;
      }

      50% {
          height: 55%;
      }

      75% {
          height: 85%;
      }

      100% {
          height: 0%;
          opacity: 0;
      }
  }

  /* === NODE TITIK === */
  .how-card::after {
      right: 50%;
      top: auto;
      bottom: -23px;
      transform: translateX(50%);
      width: 16px;
      height: 16px;
      background: #1e293b;
      border-radius: 50%;
      z-index: 2;
  }

 /* ===== PROMO LOWONGAN ===== */
 .promo-title {
     font-size: 26px;
 }

 .promo-grid {
     grid-template-columns: 1fr;
     gap: 22px;
 }

 .promo-footer {
     flex-direction: column;
 }

 .btn-main-promo,
 .btn-sub-promo {
     width: 100%;
     text-align: center;
 }

 /* ===== CONTACT SECTION ===== */
 .contact-container {
     flex-direction: column;
     gap: 50px;
     text-align: center;
 }

 .contact-title {
     font-size: 32px;
 }

 .contact-info-box {
     margin-left: auto;
     margin-right: auto;
 }

 .form-card {
     padding: 30px;
 }

 /* ===== FOOTER ===== */
 .footer-main {
     text-align: center;
     padding: 3rem 0 2rem;
 }

 .footer-grid {
     grid-template-columns: 1fr;
     gap: 2rem;
 }

 .footer-bottom {
     flex-direction: column;
     gap: 12px;
 }

 .footer-links a {
     margin: 0 10px;
     display: inline-block;
 }

 .footer-social a {
     width: 42px;
     height: 42px;
     margin-right: 6px;
 }
    
    
}