/* ===== Design tokens ===== */
:root {
    --teal-900: #370857;
    --teal-800: #0B4B47;
    --teal-600: #0F8A80;
    --teal-400: #2FBFAF;
    --teal-tint: #E4F5F2;
    --ink: #12211F;
    --ink-soft: #5C716E;
    --cream: #FBF9F4;
    --paper: #FFFFFF;
    --coral: #FF6B45;
    --coral-dark: #C74A28;
    --amber: #E8A33D;
    --line: #E4E0D6;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow: 0 8px 30px rgba(8, 46, 43, 0.08);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--teal-900);
    margin: 0;
    letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand img { height: 38px; width: auto; }

.brand-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--teal-900);
    line-height: 1.1;
}

.brand-text span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: 1.4px;
    color: var(--teal-600);
    text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

nav a:hover, nav a:focus-visible { color: var(--teal-800); background: var(--teal-tint); outline: none; }

.nav-cta {
    background: var(--teal-900);
    color: white !important;
    padding: 10px 20px !important;
    margin-left: 8px;
}

.nav-cta:hover { background: var(--teal-800) !important; }

/* ===== Hero ===== */
.hero {
    position: relative;
    background: var(--teal-900);
    overflow: hidden;
    padding: 68px 24px 110px;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 191, 175, 0.16);
    color: var(--teal-400);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal-400);
}

.hero h1 {
    font-size: clamp(32px, 4.4vw, 48px);
    line-height: 1.14;
    color: white;
    margin-bottom: 18px;
}

.hero h1 em {
    font-style: normal;
    color: var(--teal-400);
}

.hero p {
    color: #B9CFCB;
    font-size: 16px;
    max-width: 460px;
    margin-bottom: 30px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:focus-visible { outline: 2px solid var(--teal-400); outline-offset: 3px; }

.btn-primary {
    background: var(--coral);
    color: white;
    box-shadow: 0 10px 24px rgba(255, 107, 69, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--coral-dark); }

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover { border-color: white; transform: translateY(-2px); }

.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; }

.hero-meta div strong {
    display: block;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 22px;
}
.hero-meta div span { color: #91ACA7; font-size: 12.5px; }

.book-illustration { position: relative; width: 100%; max-width: 400px; margin: 0 auto; }

.hero-curve { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 1; }

/* ===== Lowongan section ===== */
.section { padding: 72px 24px; position: relative; }

.section-head {
    max-width: 1140px;
    margin: 0 auto 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 8px;
    display: block;
}

.section-head h2 { font-size: clamp(24px, 3vw, 32px); }
.section-head p { color: var(--ink-soft); font-size: 14.5px; margin: 8px 0 0; max-width: 420px; }

.job-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 22px;
}

.job-card {
    position: relative;
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 26px 24px 24px 26px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--teal-400);
    transition: transform 0.18s, box-shadow 0.18s;
}

.job-card.kategori-sales { border-left-color: var(--coral); }
.job-card.kategori-tutup { border-left-color: var(--line); }

.job-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(8, 46, 43, 0.14); }

.job-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 16px; }

.job-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: var(--teal-tint);
    flex-shrink: 0;
}
.kategori-sales .job-icon { background: #FFEAE2; }
.kategori-tutup .job-icon { background: #F1F0EB; }

.job-status {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 999px;
    white-space: nowrap;
}
.status-buka { background: #FDF1DD; color: #8A5A0E; }
.status-tutup { background: #F1F0EB; color: #8A9490; }

.job-card h3 { font-size: 18.5px; margin-bottom: 4px; }

.job-meta { font-size: 12.5px; color: var(--teal-600); font-weight: 600; margin-bottom: 12px; }

.job-card p.desc { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }

.job-card .btn { width: 100%; }

.btn-card { background: var(--teal-tint); color: var(--teal-800); }
.btn-card:hover { background: var(--teal-400); color: white; }

.btn-disabled { background: #F1F0EB; color: #A4ADA9; pointer-events: none; }

/* ===== Kenapa gabung ===== */
.why { background: var(--paper); }

.why-inner { max-width: 1140px; margin: 0 auto; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.why-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: var(--teal-tint);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}

.why-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* ===== Footer ===== */
footer { background: var(--teal-900); color: #9FBAB6; padding: 48px 24px 24px; }

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    display: flex; align-items: center; gap: 10px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin-bottom: 12px;
}
.footer-brand img { height: 32px; }

.footer-col h4 {
    color: white;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-col p, .footer-col a { font-size: 13.5px; display: block; margin-bottom: 8px; color: #9FBAB6; }
.footer-col a:hover { color: white; }

.footer-bottom {
    max-width: 1140px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    text-align: center;
    color: #6E8985;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
    .hero-inner { grid-template-columns: 1fr; }
    .book-illustration { max-width: 260px; }
    nav a:not(.nav-cta) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .job-card, .btn { transition: none; }
}

/* ===== Job card poster image ===== */
.job-poster {
    margin: -26px -24px 18px -26px;
    aspect-ratio: 4 / 5;
    border-radius: 14px 14px 8px 8px;
    overflow: hidden;
    background: var(--teal-tint);
}

.job-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.25s ease;
}

.job-card:hover .job-poster img {
    transform: scale(1.04);
}