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

:root {
  --teal:       #2C6E7A;
  --teal-dark:  #1e4f59;
  --teal-light: #3d8a98;
  --alice:      #D8E7EC;
  --alice-soft: #eef6f9;
  --steel:      #79A1AD;
  --ink:        #1A2B30;
  --ink-soft:   #3d5a62;
  --cream:      #faf8f3;
  --gold:       #c9963a;
  --radius:     14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─────────── HEADER / NAVBAR ─────────── */
.site-header {
  background: white;
  border-bottom: 1.5px solid var(--alice);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(44,110,122,0.07);
}
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 3px 10px rgba(44,110,122,0.3);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.logo-text .tagline {
  font-size: 10px;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 9px;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  background: rgba(44,110,122,0.08);
}
.nav-links .btn-hub {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white !important;
  border-radius: 9px;
  padding: 9px 18px;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(44,110,122,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-links .btn-hub:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(44,110,122,0.35);
  background: rgba(44,110,122,0.08) !important;
  background: linear-gradient(135deg, var(--teal-light), var(--teal)) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--alice);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid #f0f6f8;
}
.mobile-menu a:last-child { border: none; }
.mobile-menu .btn-hub-m {
  margin-top: 10px;
  display: block;
  text-align: center;
  padding: 13px;
  background: var(--teal);
  color: white !important;
  border-radius: var(--radius);
  font-weight: 700;
  border: none;
}


/* ─────────── HERO ─────────── */
.hero {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 55%, #3d8a98 100%);
  padding: 48px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  color: white;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: #a8dde6;
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: white;
  color: var(--teal-dark);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.55);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.btn-direktori {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.45);
  color: white;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.btn-direktori:hover {
  background: white;
  color: var(--teal-dark);
  border-color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ─────────── SECTIONS COMMON ─────────── */
.section {
  padding: 72px 32px;
}
.section-alt { background: white; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 40px;
}
.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 10px;
  max-width: 580px;
  line-height: 1.7;
}


/* ─────────── TENTANG / FITUR ─────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--alice-soft);
  border: 1.5px solid var(--alice);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,110,122,0.12);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(44,110,122,0.2);
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 7px;
}
.feature-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}


/* ─────────── BERITA ─────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.news-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #e8f0f3;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(44,110,122,0.13);
}
.news-img {
  height: 180px;
  background: linear-gradient(135deg, var(--alice), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-body { padding: 20px; }
.news-meta {
  font-size: 11px;
  color: var(--steel);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 8px;
}
.news-excerpt {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.news-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--alice-soft);
  border-radius: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  grid-column: 1/-1;
}

/* See all link */
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.see-all:hover {
  background: var(--teal);
  color: white;
}


/* ─────────── INFOGRAFIS GRID ─────────── */
.infografis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.infografis-card {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: flex-end;
  position: relative;
  text-decoration: none;
  transition: transform 0.25s;
}
.infografis-card:hover { transform: scale(1.02); }
.infografis-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.infografis-label {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  width: 100%;
  padding: 20px 14px 14px;
  color: white;
  font-size: 13px;
  font-weight: 700;
}
.infografis-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: absolute;
  inset: 0;
}


/* ─────────── HUB CTA SECTION ─────────── */
.hub-cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 100%);
  color: white;
  text-align: center;
}
.hub-cta .section-label { color: var(--alice); }
.hub-cta .section-title { color: white; }
.hub-cta .section-desc { color: rgba(255,255,255,0.7); max-width: 600px; margin: 10px auto 0; }
.hub-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 36px 0;
}
.hub-feat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hub-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: white;
  color: var(--teal-dark);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,0.1); }


/* ─────────── LOWONGAN PREVIEW ─────────── */
.low-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.low-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #e8f0f3;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.low-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(44,110,122,0.13);
}
.low-cover {
  height: 160px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  flex-shrink: 0;
}
.low-cover img { width: 100%; height: 100%; object-fit: cover; }
.low-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.low-badges { display: flex; flex-wrap: wrap; gap: 5px; }
.low-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.low-badge.kerja  { background: #e8f4fd; color: #2980b9; }
.low-badge.magang { background: #fef9e7; color: #e67e22; }
.low-badge.mode   { background: #f0f6f8; color: var(--ink-soft); }
.low-badge.tp     { background: #f0faf4; color: #27ae60; }
.low-title { font-size: 15px; font-weight: 800; color: var(--ink); line-height: 1.4; }
.low-inst  { font-size: 12px; color: var(--ink-soft); }
.low-gaji  { font-size: 12px; font-weight: 700; color: var(--teal); }
.low-deadline {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
}
.low-deadline.ok     { background: #f0faf4; color: #27ae60; }
.low-deadline.soon   { background: #fff3cd; color: #d4851a; }
.low-deadline.today  { background: #fdecea; color: #e74c3c; }
.low-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--alice-soft);
  border-radius: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  grid-column: 1/-1;
}

/* ─────────── TENTANG SECTION ─────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  border-radius: 24px;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(44,110,122,0.25);
  position: relative;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-text .section-title { margin-bottom: 16px; }
.about-text p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.78;
  margin-bottom: 14px;
}
.about-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.about-tag {
  padding: 6px 14px;
  background: rgba(44,110,122,0.1);
  color: var(--teal);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
}


/* ─────────── FOOTER ─────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 56px 32px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand .logo-text .brand { color: white; }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.45); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-brand .socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.18); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--alice); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--alice); }


/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 48px 20px; }
  .hero { padding: 64px 20px 56px; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner > * {
  animation: fadeUp 0.7s ease both;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.3s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.4s; }
.hero-stats { animation: fadeUp 0.7s 0.5s ease both; }
