

/* ==========================================================================
   NOTE: Semua custom styles dimuat via functions.php wp_enqueue_style()
   dari file terpisah: css/imbalankerja-styles.css (copy dari styles.css)
   ========================================================================== */


/* ==========================================================================
   IMBALANKERJA.ID — UNIFIED PREMIUM DESIGN SYSTEM
   Merged: User's Hero/Services/FAQ Design + Claude Content Styles
   Theme: Light Cream (NO dark theme)
   Animations: Salient-Style Multi-Directional Entrance
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,600;1,700;1,800&family=Roboto+Slab:wght@300;400;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES — LIGHT CREAM THEME
   ============================================================ */
:root {
  /* — Surface Colors — */
  --primary-forest: #476149;
  --primary-forest-dark: #3E5940;
  --primary-forest-light: #506E53;
  --primary-forest-gradient: #476149;

  --accent-gold: #A88A54;
  --accent-gold-mid: #9E8047;
  --accent-gold-light: #C5A059;
  --accent-gold-dark: #8E7340;
  --accent-gold-gradient: linear-gradient(135deg, #C5A059 0%, #A88A54 100%);

  --bg-canvas: #FFFFFF;
  --bg-cream: #F9F8F3;
  --bg-cream-deep: #EDE3CD;
  --bg-surface-subtle: #F4F6F4;
  --bg-card: #FFFFFF;
  --paper: #FCFAF4;

  --text-dark: #14130C;
  --text-body: #3B3B2C;
  --text-muted: #767660;
  --text-light: #FFFFFF;
  --ink: #16180F;
  --ink-soft: #4A4B3F;
  --ink-faint: #8B8B78;

  --border-light: #E5E2D8;
  --border-subtle: rgba(71, 97, 73, 0.15);
  --border-gold: rgba(168, 138, 84, 0.35);
  --line: rgba(22,24,15,0.12);

  /* — Radius — */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  /* — Typography — */
  --font-headline: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Roboto Slab', Georgia, serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  /* — Transitions — */
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-smooth: cubic-bezier(0.22, 0.68, 0, 1);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.55s cubic-bezier(0.16, 1, 0.3, 1);

  /* — Shadows — */
  --shadow-card: 0 12px 36px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 30px 60px rgba(31, 49, 35, 0.14), 0 8px 20px rgba(168, 138, 84, 0.1);
  --shadow-gold: 0 10px 25px rgba(168, 138, 84, 0.3);
  --shadow-emerald: 0 12px 30px rgba(71, 97, 73, 0.28);
}

/* ============================================================
   SALIENT-STYLE PAGE ENTRANCE & SCROLL REVEAL ANIMATIONS
   ============================================================ */

/* Page Load: Body Fade-in */
body {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out-quart) 0.1s;
}
body.loaded {
  opacity: 1;
}

/* Multi-directional Reveal Base States */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out-quart), transform 0.9s var(--ease-out-quart);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out-quart), transform 0.9s var(--ease-out-quart);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out-quart), transform 0.9s var(--ease-out-quart);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out-quart), transform 0.9s var(--ease-out-quart);
}

/* Visible State */
.reveal.is-visible, .reveal-left.is-visible,
.reveal-right.is-visible, .reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered Delays */
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }
.reveal-d7 { transition-delay: 0.56s; }
.reveal-d8 { transition-delay: 0.64s; }

/* Hero Entrance Keyframes (fire on page load, not scroll) */
@keyframes heroSlideLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes heroBadgeIn {
  0% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Hero stagger classes (page-load animations, fill-mode:both prevents flash) */
.hero-anim-badge { animation: heroBadgeIn 0.8s var(--ease-out-quart) 0.2s both; }
.hero-anim-title { animation: heroSlideLeft 1s var(--ease-out-quart) 0.35s both; }
.hero-anim-subtitle { animation: heroFadeUp 0.9s var(--ease-out-quart) 0.5s both; }
.hero-anim-actions { animation: heroFadeUp 0.9s var(--ease-out-quart) 0.65s both; }
.hero-anim-license { animation: heroFadeUp 0.8s var(--ease-out-quart) 0.8s both; }
.hero-anim-visual { animation: heroFadeUp 0.6s var(--ease-out-quart) 0.3s both; }
.hero-anim-bg-container { animation: heroBgBoxIn 1s var(--ease-out-quart) 0.35s both; }
.hero-anim-person { animation: heroPersonSlideUp 1.1s var(--ease-out-quart) 0.6s both; }
.hero-anim-ai-card { animation: heroFadeUp 0.9s var(--ease-out-quart) 0.9s both; }
.hero-anim-float-top {
  animation: cardFloatEntry 0.9s var(--ease-out-quart) 0.85s both,
             floatSlow 5s ease-in-out 1.75s infinite;
}
.hero-anim-float-bottom {
  animation: cardFloatEntry 0.9s var(--ease-out-quart) 1.1s both,
             floatSlow 5s ease-in-out 2.0s infinite;
}

@keyframes heroBgBoxIn {
  0% { opacity: 0; transform: scale(0.86) translateY(24px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes heroPersonSlideUp {
  0% { opacity: 0; transform: translateY(70px) scale(0.93); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cardFloatEntry {
  0% { opacity: 0; transform: translateY(35px) scale(0.92); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Layered Image Scroll Reveal (Background first, Person second) */
.layered-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.layered-img-wrap .hero-illustration-container {
  opacity: 0;
  transform: scale(0.88) translateY(24px);
  transition: transform 1s var(--ease-out-quart), opacity 0.8s ease;
}

.layered-img-wrap .hero-illustration-main {
  opacity: 0;
  transform: translateY(65px) scale(0.93);
  transition: transform 1.15s var(--ease-out-quart) 0.25s, opacity 0.85s ease 0.25s;
}

.layered-img-wrap.is-visible .hero-illustration-container {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.layered-img-wrap.is-visible .hero-illustration-main {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Header entrance */
@keyframes headerEntrance {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.site-header { animation: headerEntrance 0.8s var(--ease-out-quart) 0.05s both; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  body { opacity: 1; }
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-canvas);
  color: var(--text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  line-height: 1.68;
  overflow-x: hidden;
  background-color: var(--bg-canvas);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-headline); margin: 0; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(168,138,84,0.3); color: var(--ink); }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: rgba(71,97,73,0.4); border-radius: 5px; border: 2px solid var(--bg-cream); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-forest); }

/* Global SVG Size Constraints */
svg { max-width: 100%; max-height: 100%; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-wrapper {
  padding-top: 115px;
}

/* ============================================================
   SITE HEADER — Fixed, Frosted Glass
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.brand-logo img:hover {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-headline);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 0;
  background: transparent !important;
  border-radius: 0 !important;
  transition: color 0.25s var(--ease-out-quart);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  text-decoration: none;
}

/* Luxury Animated Gold Underline for Hover and Active state */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--accent-gold-gradient);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.nav-link:hover {
  color: var(--primary-forest) !important;
  background: transparent !important;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  opacity: 1;
}

.nav-link.active {
  color: var(--primary-forest) !important;
  font-weight: 700;
  background: transparent !important;
}

.nav-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Dropdown Caret / Chevron rotation */
.nav-link svg,
.nav-link .caret {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item:hover .nav-link svg,
.nav-item:hover .nav-link .caret {
  transform: rotate(180deg);
}

/* Luxury Dropdown Menu (Glassmorphism & Gold Top Accent) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  width: 260px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 138, 84, 0.25);
  border-top: 3px solid var(--accent-gold);
  border-radius: 12px;
  padding: 12px 0;
  box-shadow: 0 16px 36px rgba(30, 48, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  list-style: none;
  z-index: 1000;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px) scale(1);
}

.dropdown-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.25s var(--ease-out-quart);
  position: relative;
}

.dropdown-item a:hover {
  background: rgba(71, 97, 73, 0.06);
  color: var(--primary-forest);
  padding-left: 38px !important;
  font-weight: 600;
}

.dropdown-item a::before {
  content: '→';
  position: absolute;
  left: 14px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s var(--ease-out-quart);
  color: var(--accent-gold-dark);
  font-weight: 700;
}

.dropdown-item a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Header Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-gold {
  background: var(--accent-gold-gradient);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s ease;
}

.btn-gold:hover::after { left: 100%; }
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(168, 138, 84, 0.38);
  filter: brightness(1.05);
}

/* ============================================================
   BUTTONS — Primary, Outline, Ghost
   ============================================================ */
.btn-primary,
#contactForm button[type="submit"].btn-primary,
.ik-btn-submit {
  background: var(--primary-forest) !important;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-emerald);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.6s ease;
}

.btn-primary:hover::after,
#contactForm button[type="submit"].btn-primary:hover::after,
.ik-btn-submit:hover::after { left: 100%; }
.btn-primary:hover,
#contactForm button[type="submit"].btn-primary:hover,
.ik-btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(71, 97, 73, 0.35);
  background: var(--primary-forest-dark) !important;
}

.btn-outline {
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  border-color: var(--primary-forest);
  color: var(--primary-forest);
  background: rgba(71, 97, 73, 0.04);
  transform: translateY(-2px);
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-dark);
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(71,97,73,0.06);
  border-color: var(--primary-forest);
  color: var(--primary-forest);
}

@media (max-width: 992px) {
  .mobile-toggle { display: flex; }
}

.mobile-menu-drawer {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 24px;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  animation: drawerSlide 0.3s var(--ease-out-quart);
}

@keyframes drawerSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-drawer.active { display: block; }

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================================
   HERO SECTION (User's Design — Verbatim)
   ============================================================ */
.hero-section {
  padding: 40px 0 80px;
  position: relative;
}

.hero-grid { display: grid !important; grid-template-columns: 1.15fr 0.85fr !important; gap: 56px !important; align-items: center !important; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(71, 97, 73, 0.08);
  border: 1px solid rgba(71, 97, 73, 0.2);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--primary-forest);
  margin-bottom: 24px;
}

.hero-badge .status-dot {
  width: 8px; height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title em { 
  font-family: var(--font-serif); 
  font-style: italic; 
  font-weight: 700; 
  color: var(--accent-gold-dark); 
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  z-index: 2;
}
.hero-title em::after, .hero-title em::before {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: transparent !important;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 620px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.license-pill {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-body);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
}

.license-pill strong { color: var(--primary-forest); }

/* Hero Illustration Container */
.hero-illustration-container {
  position: relative;
  background: #9E8047;
  border-radius: var(--radius-lg);
  padding: 40px 36px 0 36px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 460px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  transition: transform 0.6s var(--ease-out-quart), box-shadow 0.6s var(--ease-out-quart);
}

.hero-illustration-container::after {
  content: '';
  position: absolute;
  top: -25%; right: -30%;
  width: 78%; height: 150%;
  background: var(--primary-forest);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-illustration-main {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0;
  align-self: flex-end;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
  transition: transform 0.6s var(--ease-out-quart);
}

/* Floating Cards in Hero Section */
.floating-card-top {
  position: absolute;
  top: 18%;
  left: -28px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 4px;
  box-shadow: 0 18px 40px -8px rgba(15, 23, 42, 0.18), 0 6px 16px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 226, 216, 0.85);
  z-index: 10;
  width: clamp(150px, 14vw, 195px);
  max-width: 85vw;
  transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart);
}

.floating-card-top:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 50px -8px rgba(15, 23, 42, 0.24), 0 8px 20px -4px rgba(0, 0, 0, 0.14);
}

.floating-card-top img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 11px;
  object-fit: contain;
}

.floating-card-bottom {
  position: absolute;
  bottom: 6%;
  right: -18px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 4px;
  box-shadow: 0 18px 40px -8px rgba(15, 23, 42, 0.16), 0 6px 16px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 226, 216, 0.85);
  z-index: 10;
  width: clamp(140px, 13vw, 175px);
  max-width: 80vw;
  transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart);
}

.floating-card-bottom:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 50px -8px rgba(15, 23, 42, 0.22), 0 8px 20px -4px rgba(0, 0, 0, 0.13);
}

.floating-card-bottom img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 11px;
  object-fit: contain;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 992px) {
  .floating-card-top {
    left: -8px;
    top: 8%;
    width: clamp(130px, 22vw, 165px);
  }
  .floating-card-bottom {
    right: -8px;
    bottom: 4%;
    width: clamp(120px, 20vw, 150px);
  }
}

@media (max-width: 576px) {
  .floating-card-top {
    left: -4px;
    top: 2%;
    width: 125px;
  }
  .floating-card-bottom {
    right: -4px;
    bottom: 2%;
    width: 115px;
  }
}

/* ============================================================
   AGENTIC AI SPECS BOX (User's Design)
   ============================================================ */
.agentic-ai-box {
  margin-top: 56px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.ai-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.ai-spec-item {
  background: var(--bg-cream);
  border: 1px solid rgba(168, 138, 84, 0.25);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.ai-spec-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.ai-spec-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.ai-spec-value {
  font-family: var(--font-headline);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--primary-forest);
}

/* ============================================================
   INTRO STATEMENT SECTION (User's Design)
   ============================================================ */
.intro-section {
  padding: 80px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.intro-title {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  max-width: 860px;
  margin: 0 auto 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.intro-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary-forest);
}

.intro-desc {
  font-size: 1.12rem;
  color: var(--text-body);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   SECTION HEADERS & TAGS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

/* .section-tag is styled in the Unified Section Badge system below */

.section-title {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ============================================================
   UNIFIED PREMIUM SECTION BADGE / EYEBROW SYSTEM
   ============================================================ */
.eyebrow,
.section-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 16px !important;
  background: rgba(71, 97, 73, 0.07) !important;
  border: 1px solid rgba(71, 97, 73, 0.18) !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-headline) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--primary-forest) !important;
  margin-bottom: 18px !important;
  box-shadow: 0 2px 6px rgba(71, 97, 73, 0.04) !important;
  transition: all 0.3s var(--ease-smooth) !important;
}

.eyebrow::before,
.section-tag::before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: var(--accent-gold) !important;
  box-shadow: 0 0 6px rgba(168, 138, 84, 0.6) !important;
  flex-shrink: 0 !important;
}

/* Light variant for dark backgrounds */
.eyebrow-light,
.section-tag-light,
[style*="background: var(--primary-forest)"] .eyebrow,
[style*="background: var(--primary-forest)"] .section-tag,
.bg-dark .eyebrow,
.bg-dark .section-tag {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
}

[style*="background: var(--primary-forest)"] .eyebrow::before,
[style*="background: var(--primary-forest)"] .section-tag::before,
.bg-dark .eyebrow::before,
.bg-dark .section-tag::before {
  background: var(--accent-gold-light) !important;
  box-shadow: 0 0 8px var(--accent-gold-light) !important;
}

/* ============================================================
   FEATURE / SERVICE CARDS (User's Design)
   ============================================================ */
.icon-box {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  border-radius: 14px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, rgba(71, 97, 73, 0.08), rgba(168, 138, 84, 0.12));
  border: 1px solid rgba(168, 138, 84, 0.3);
  color: var(--primary-forest);
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.icon-box svg {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  stroke-width: 2;
  flex-shrink: 0 !important;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.grid-4-cols,
.feature-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-4-cols,
  .feature-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .grid-4-cols,
  .feature-grid-4 {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart);
}

.feature-card:hover {
  border-color: rgba(71, 97, 73, 0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.feature-card:hover .icon-box {
  background: var(--primary-forest);
  color: var(--accent-gold);
  transform: scale(1.06) rotate(3deg);
  box-shadow: 0 10px 20px rgba(71, 97, 73, 0.2);
}

.feature-title {
  font-family: var(--font-headline);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.68;
}

/* ============================================================
   STAT STRIP (Claude content section)
   ============================================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--primary-forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-headline);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

/* ============================================================
   GLASS CARD (User's Design)
   ============================================================ */
.glass-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

/* ============================================================
   CTA BAND (Claude section)
   ============================================================ */
.cta-band {
  background: var(--primary-forest);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: #ffffff;
}

.cta-band h2 {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-cta {
  background: var(--accent-gold);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-band .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(168, 138, 84, 0.4);
  background: var(--accent-gold-dark);
}

/* ============================================================
   FAQ ACCORDION (User's Design — Exact)
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: var(--transition-normal);
}

.faq-item:hover { border-color: rgba(71, 97, 73, 0.3); }

.faq-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  transition: color 0.2s ease;
}

.faq-header:hover { color: var(--primary-forest); }

.faq-icon-badge {
  width: 32px; height: 32px;
  min-width: 32px; min-height: 32px;
  border-radius: 50%;
  background: rgba(71, 97, 73, 0.08);
  border: 1px solid rgba(71, 97, 73, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-forest);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  pointer-events: none;
}

.faq-icon-badge * { pointer-events: none; }

.faq-item.faq-open .faq-icon-badge {
  transform: rotate(45deg);
  background: var(--primary-forest);
  color: #FFFFFF;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

.faq-item.faq-open .faq-content {
  max-height: 500px !important;
  padding: 0 24px 22px 24px !important;
  opacity: 1 !important;
}

/* FAQ Category Tabs (for faq-imbalan-kerja.html) */
.faq-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.faq-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-tab:hover { border-color: var(--primary-forest); color: var(--primary-forest); }

.faq-tab.active {
  background: var(--primary-forest);
  color: #ffffff;
  border-color: var(--primary-forest);
}

.faq-category { display: none; }
.faq-category.active { display: block; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  padding: 48px 0 36px;
  text-align: center;
}

.breadcrumb {
  display: none !important;
}

.breadcrumb a { color: var(--primary-forest); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.12rem;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   CONTENT CARDS & PANELS (Claude Content Sections)
   ============================================================ */
.content-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.content-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* Fact Card (tentang-kami) */
.fact-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.fact-card .fact-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.96rem;
}

.fact-card .fact-row:last-child { border-bottom: none; }
.fact-card .fact-label {
  font-weight: 700;
  color: var(--primary-forest);
  font-family: var(--font-headline);
}

/* Value Cards Grid (tentang-kami) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.value-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(71, 97, 73, 0.3);
}

.value-card .value-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(71, 97, 73, 0.08), rgba(168, 138, 84, 0.12));
  border: 1px solid rgba(168, 138, 84, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-forest);
  transition: var(--transition-normal);
}

.value-card:hover .value-icon {
  background: var(--primary-forest);
  color: var(--accent-gold);
}

.value-card .value-icon svg {
  width: 26px; height: 26px;
}

.value-card h3 {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ============================================================
   KALKULATOR STYLES
   ============================================================ */
.calc-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
  max-width: 780px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.result-box {
  background: var(--bg-cream);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-top: 36px;
  display: none;
}

.result-box.visible { display: block; }

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.96rem;
}

.result-item:last-child { border-bottom: none; }

.result-label { color: var(--text-body); font-weight: 500; }
.result-value { font-weight: 800; color: var(--primary-forest); font-family: var(--font-headline); }

/* ============================================================
   FORM CONTROLS (kontak.html)
   ============================================================ */
.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-label .req { color: #E11D48; margin-left: 4px; }

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon-wrapper svg {
  position: absolute;
  left: 16px;
  width: 20px !important;
  height: 20px !important;
  color: var(--text-muted);
  pointer-events: none;
}

.form-input,
#contactForm .form-input,
.ik-calc-grid .ik-input {
  width: 100%;
  padding: 14px 18px 14px 48px !important;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
  outline: none;
}

.form-input-noicon { padding-left: 18px !important; }

.form-input:focus {
  border-color: var(--primary-forest);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(71, 97, 73, 0.15);
}

textarea.form-input { min-height: 120px; resize: vertical; }

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--primary-forest);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #ffffff;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #ffffff;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-item svg {
  width: 22px; height: 22px;
  color: var(--accent-gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .info-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}

.contact-info-item .info-value {
  font-weight: 600;
  font-size: 1rem;
}

/* ============================================================
   CHAPTER / BUKU PANDUAN STYLES
   ============================================================ */
.chapter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.chapter-pill {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  font-family: var(--font-headline);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition-fast);
}

.chapter-pill:hover { border-color: var(--primary-forest); color: var(--primary-forest); }
.chapter-pill.active {
  background: var(--primary-forest);
  color: #ffffff;
  border-color: var(--primary-forest);
}

.chapter-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.chapter-section:last-child { border-bottom: none; }

.chapter-section h3 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.chapter-section p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Steps / Timeline (apa-itu-imbalan-kerja) */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  counter-reset: step;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  counter-increment: step;
}

.step-number {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--primary-forest);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.2rem;
}

.step-content h3 {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   BERITA / ARTICLE CARDS (Text-based card design)
   ============================================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

/* Text-based article cards (used in berita.html) */
.article-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(71,97,73,0.3);
}

.article-category {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  background: rgba(168,138,84,0.1);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.article-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.article-title {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1;
}

.article-excerpt {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.article-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-forest);
  margin-top: 8px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-link:hover {
  color: var(--accent-gold-dark);
}

/* Image overlay style (legacy, keep for reference) */
.article-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.45) 55%, rgba(0, 0, 0, 0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  color: #FFFFFF;
}

/* Content Block (apa-itu-imbalan-kerja.html) */
.content-block {
  margin-bottom: 0;
}

/* ============================================================
   FOOTER (User's Design)
   ============================================================ */
.site-footer {
  margin-top: 120px;
  background: var(--primary-forest);
  color: #ffffff;
  padding: 90px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  margin-top: 18px;
  line-height: 1.65;
}

.footer-heading {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-links li::before {
  display: none !important;
  content: none !important;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-fast);
  text-decoration: none !important;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 992px) {
  .hero-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 40px !important; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu, .header-actions { display: none; }
  .mobile-toggle { display: flex !important; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .floating-card-top, .floating-card-bottom { display: none; }
  .page-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .intro-title { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .fact-card .fact-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.8rem; }
}



/* --- AGGRESSIVE NAV MENU RESETS --- */
.site-header .nav-menu,
.site-header .nav-menu li,
.site-header .nav-menu ul,
.nav-menu li, 
.nav-menu ul {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
}
.site-header .nav-menu li::before,
.site-header .nav-menu li::after,
.nav-menu li::before,
.nav-menu li::after {
  display: none !important;
  content: none !important;
}










/* ============================================================
   KALKULATOR PAGE SPECIFIC (Recovered)
   ============================================================ */
    /* ── Override SweetAlert2 font to match brand ── */
    .swal2-popup {
      font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
      border-radius: 18px !important;
    }
    .swal2-styled.swal2-confirm {
      background-color: #476149 !important;
      border-radius: 8px !important;
      font-weight: 700 !important;
    }

    /* ── Kalkulator Page Specific ── */
    .calc-page-wrapper {
      max-width: 1160px;
      margin: 0 auto;
    }

    /* Alert Banner */
    .ik-alert-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      background: var(--primary-forest);
      border-radius: var(--radius-md);
      padding: 24px 30px;
      margin-bottom: 36px;
      box-shadow: var(--shadow-emerald);
    }

    @media (max-width: 768px) {
      .ik-alert-banner { flex-direction: column; text-align: center; }
    }

    .ik-alert-text {
      font-size: 0.98rem;
      color: rgba(255,255,255,0.9);
      line-height: 1.6;
      flex: 1;
      font-weight: 500;
    }

    .ik-alert-btn {
      background: var(--accent-gold-gradient);
      color: #fff;
      text-decoration: none;
      padding: 12px 26px;
      border-radius: var(--radius-sm);
      font-size: 0.92rem;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: var(--shadow-gold);
      transition: var(--transition-normal);
    }

    .ik-alert-btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.1);
    }

    /* 2-Column Grid */
    .ik-calc-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 32px;
      align-items: start;
    }

    @media (max-width: 992px) {
      .ik-calc-grid { grid-template-columns: 1fr; }
    }

    /* Form Container */
    .ik-form-container {
      background: #FFFFFF;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-card);
    }

    .ik-form-title {
      font-family: var(--font-headline);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-light);
    }

    .ik-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    @media (max-width: 640px) {
      .ik-form-row { grid-template-columns: 1fr; }
    }

    .ik-form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 20px;
    }

    .ik-label {
      font-family: var(--font-headline);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .ik-label .req { color: #E11D48; }

    .ik-input {
      width: 100%;
      padding: 13px 16px;
      background: var(--bg-cream);
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--text-dark);
      transition: var(--transition-fast);
      outline: none;
    }

    .ik-input:focus {
      border-color: var(--primary-forest);
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(71, 97, 73, 0.14);
    }

    .ik-input::placeholder { color: var(--text-muted); }

    /* Input with suffix (Tahun) */
    .ik-input-wrapper {
      display: flex;
      align-items: stretch;
    }

    .ik-input-wrapper .ik-input {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      flex: 1;
    }

    .ik-suffix {
      background: var(--bg-cream);
      border: 1.5px solid var(--border-light);
      border-left: none;
      padding: 13px 18px;
      border-top-right-radius: var(--radius-sm);
      border-bottom-right-radius: var(--radius-sm);
      color: var(--text-muted);
      font-weight: 600;
      font-size: 0.88rem;
      display: flex;
      align-items: center;
      white-space: nowrap;
    }

    /* Submit Button */
    .ik-btn-submit {
      width: 100%;
      background: var(--primary-forest);
      color: #ffffff;
      border: none;
      padding: 16px 28px;
      font-family: var(--font-headline);
      font-size: 1rem;
      font-weight: 700;
      border-radius: var(--radius-sm);
      cursor: pointer;
      box-shadow: var(--shadow-emerald);
      transition: var(--transition-normal);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 8px;
      position: relative;
      overflow: hidden;
    }

    .ik-btn-submit::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
      transition: 0.6s ease;
    }

    .ik-btn-submit:hover::after { left: 100%; }

    .ik-btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(71, 97, 73, 0.32);
      background: var(--primary-forest-dark);
    }

    .ik-btn-submit:disabled {
      opacity: 0.72;
      cursor: not-allowed;
      transform: none;
    }

    /* Results Column */
    .ik-results-container {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* Result Card */
    .ik-result-card {
      background: #FFFFFF;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--shadow-card);
    }

    .ik-result-card-title {
      font-family: var(--font-headline);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 20px;
      line-height: 1.4;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border-light);
    }

    /* Gold Result Box */
    .ik-result-box {
      background: var(--primary-forest);
      border-radius: var(--radius-md);
      padding: 22px 24px;
      box-shadow: var(--shadow-emerald);
    }

    .ik-result-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 11px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      gap: 12px;
    }

    .ik-result-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .ik-result-item:first-child { padding-top: 0; }

    .ik-result-label {
      font-size: 0.88rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.88);
      flex: 1;
    }

    .ik-result-value {
      font-family: var(--font-headline);
      font-weight: 800;
      font-size: 1.05rem;
      color: var(--accent-gold-light);
      white-space: nowrap;
    }

    /* Info badge below results */
    .ik-calc-status {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 16px;
      padding: 12px 16px;
      background: var(--bg-cream);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-light);
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .ik-calc-status svg {
      width: 14px; height: 14px; flex-shrink: 0;
      color: var(--primary-forest);
    }

    /* Methodology mini card */
    .ik-method-card {
      background: var(--bg-cream);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 20px 22px;
    }

    .ik-method-title {
      font-family: var(--font-headline);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 14px;
    }

    .ik-method-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      padding: 6px 0;
      border-bottom: 1px dashed var(--border-light);
      color: var(--text-body);
    }

    .ik-method-row:last-child { border-bottom: none; }
    .ik-method-row span:last-child { font-weight: 700; color: var(--primary-forest); }

    /* Disclaimer Penting (Redesigned) */
    .ik-disclaimer {
      margin-top: 36px;
      background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F3 100%);
      border: 1px solid var(--border-gold);
      border-left: 4px solid var(--accent-gold);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.03), 0 2px 8px rgba(168, 138, 84, 0.08);
      transition: var(--transition-normal);
    }

    .ik-disclaimer:hover {
      box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(168, 138, 84, 0.12);
      transform: translateY(-2px);
    }

    .ik-disclaimer-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .ik-disclaimer-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(168, 138, 84, 0.14);
      color: var(--accent-gold-dark);
      flex-shrink: 0;
    }

    .ik-disclaimer-title {
      font-family: var(--font-headline);
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.01em;
      margin: 0;
    }

    .ik-disclaimer-text {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--text-body);
      line-height: 1.68;
      margin: 0;
    }

    .ik-disclaimer-text strong {
      color: var(--text-dark);
      font-weight: 700;
      display: inline !important;
      margin: 0 !important;
    }

    .ik-disclaimer-link {
      color: var(--primary-forest);
      font-weight: 700;
      text-decoration: none;
      border-bottom: 1.5px solid rgba(71, 97, 73, 0.35);
      padding-bottom: 1px;
      transition: var(--transition-fast);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }

    .ik-disclaimer-link:hover {
      color: var(--accent-gold-dark);
      border-bottom-color: var(--accent-gold-dark);
    }

    /* Inline row group (for form) */
    .ik-form-row-inline {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    @media (max-width: 560px) {
      .ik-form-row-inline { grid-template-columns: 1fr; }
      .ik-form-container { padding: 24px 20px; }
    }

/* ============================================================
   GLOBAL MOBILE OVERRIDE (Fix Inline Grid Issues)
   ============================================================ */
@media (max-width: 768px) {
  /* Override any inline grid template columns to stack vertically on mobile */
  div[style*="display:grid"][style*="grid-template-columns"],
  div[style*="display: grid"][style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Reduce large inline gaps on mobile */
  div[style*="gap: 56px"],
  div[style*="gap:56px"],
  div[style*="gap: 48px"],
  div[style*="gap:48px"],
  div[style*="gap: 40px"],
  div[style*="gap:40px"] {
    gap: 24px !important;
  }
  
  /* Ensure container padding prevents edge touching */
  .container {
    padding: 0 16px !important;
  }
}
