/* ==========================================================================
   KERJAKU — Landing Page Stylesheet
   Design language: warm off-white light sections + deep navy dark sections,
   teal/blue accent pulled from the Kerjaku "K" mark.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Navy scale (dark sections) */
  --navy-950: #060b17;
  --navy-900: #0a1330;
  --navy-850: #0d1838;
  --navy-800: #101c3d;
  --navy-700: #16244a;
  --navy-600: #1f3163;

  /* Brand ink (headline text on light bg) */
  --ink: #0b1e33;

  /* Accent: teal (primary CTA / highlights) */
  --teal-600: #0a746b;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-300: #5eead4;
  --teal-tint: #e4f9f4;

  /* Accent: blue (secondary, icons/links) */
  --blue-600: #0d6fd6;
  --blue-500: #1483f0;
  --blue-400: #4da3ff;
  --blue-tint: #e8f3ff;

  /* Neutrals (warm, per brand direction) */
  --bg: #fbf9f4;
  --surface: #ffffff;
  --surface-alt: #f4f1ea;
  --border: #e9e4d9;
  --border-strong: #dcd5c6;

  --gray-900: #14181f;
  --gray-700: #444b57;
  --gray-600: #5b6472;
  --gray-500: #626b78;
  --gray-400: #a2a9b5;

  /* Dark-section text */
  --on-dark: #f4f6fa;
  --on-dark-muted: #aab2c5;
  --on-dark-border: rgba(255, 255, 255, 0.09);
  --on-dark-card: rgba(255, 255, 255, 0.04);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 19, 48, 0.06), 0 1px 1px rgba(10, 19, 48, 0.04);
  --shadow-md: 0 12px 28px -8px rgba(10, 19, 48, 0.16);
  --shadow-lg: 0 30px 70px -20px rgba(10, 19, 48, 0.35);
  --shadow-teal: 0 14px 30px -10px rgba(20, 184, 166, 0.45);

  --container: 1240px;
  --container-narrow: 860px;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, sans-serif;

  --header-h: 76px;
}

/* ---------- Font faces (self-hosted, Latin subset) ---------- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/pjs-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/pjs-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/pjs-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/pjs-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/pjs-800.woff2') format('woff2');
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

html, body { height: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
}

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--navy-900);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s ease;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 3px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 1.55rem + 3vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.75rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; }

.lede {
  font-size: clamp(1.05rem, 0.98rem + 0.3vw, 1.2rem);
  color: var(--gray-600);
  line-height: 1.65;
}

.on-dark, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--on-dark); }
.on-dark p, .on-dark .lede { color: var(--on-dark-muted); }

strong { font-weight: 700; color: inherit; }

.accent-teal { color: var(--teal-600); }
.on-dark .accent-teal { color: var(--teal-400); }
.accent-underline {
  position: relative;
  white-space: nowrap;
}
.accent-underline::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0.06em;
  height: 0.16em;
  background: var(--teal-400);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.55;
}
.on-dark .accent-underline::after { background: var(--teal-400); opacity: 0.7; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(64px, 6vw, 108px); }
.section-tight { padding-block: clamp(40px, 4vw, 64px); }
.section-dark { background: var(--navy-900); position: relative; overflow: hidden; }
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }

.section-head { max-width: 700px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lede { margin-top: 14px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: var(--radius-full);
  background: var(--teal-tint);
  color: var(--teal-600);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
  flex-shrink: 0;
}
.on-dark .eyebrow {
  background: rgba(94, 234, 212, 0.12);
  color: var(--teal-300);
}

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--teal-500); color: #04231f; box-shadow: var(--shadow-teal); }
.btn-primary:hover { background: var(--teal-400); }

.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-800); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--ink); background: rgba(11, 30, 51, 0.04); }

.btn-white { background: #fff; color: var(--navy-900); }
.btn-white:hover { background: var(--teal-tint); }

.btn-ghost-dark { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: var(--on-dark-border); }
.btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.12); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-wa { background: #25d366; color: #04230f; }
.btn-wa:hover { background: #2ee578; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 249, 244, 0.82);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(10, 19, 48, 0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; display: block; flex-shrink: 0; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-desktop a {
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav-desktop a:hover { background: rgba(11, 30, 51, 0.05); color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { padding: 11px 20px; font-size: 0.92rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
}
.lang-switch a { padding: 6px 11px; border-radius: var(--radius-full); color: var(--gray-500); }
.lang-switch a:hover { color: var(--ink); }
.lang-switch a[aria-current="page"] { background: var(--ink); color: #fff; }
.lang-switch-mobile {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
}
.lang-switch-mobile a { flex: 1; text-align: center; padding: 12px; }
@media (min-width: 981px) {
  .lang-switch-mobile { display: none; }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  background: #fff;
  flex-shrink: 0;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.nav-toggle svg { width: 20px; height: 20px; overflow: visible; }
.nav-toggle svg line {
  transform-origin: 12px 12px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] { background: var(--surface-alt); border-color: var(--ink); }
.nav-toggle[aria-expanded="true"] svg line:nth-of-type(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] svg line:nth-of-type(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] svg line:nth-of-type(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 20px 20px 28px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow: var(--shadow-sm);
}
.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 14px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  transition: background-color 0.15s ease;
}
.mobile-menu nav a:hover,
.mobile-menu nav a:active { background: var(--surface-alt); }
.mobile-menu nav a::after {
  content: '';
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-right: 2px solid var(--gray-400);
  border-bottom: 2px solid var(--gray-400);
  transform: rotate(-45deg);
}
.mobile-menu .header-actions { flex-direction: column; align-items: stretch; }
.mobile-menu .header-actions .btn { width: 100%; }

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .header-actions .btn-outline { display: none; }
  .header-actions > .lang-switch { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 981px) {
  .mobile-menu { display: none; }
}
@media (max-width: 480px) {
  .site-header .container { padding-inline: 16px; gap: 8px; }
  .brand img { height: 34px; }
  .header-actions { gap: 6px; }
  .header-actions .btn { padding: 9px 14px; font-size: 0.85rem; }
  .lang-switch { font-size: 0.78rem; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(36px, 5vw, 64px) clamp(56px, 6vw, 90px); position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-left { display: flex; flex-direction: column; gap: 18px; }

.hero-card {
  background: radial-gradient(120% 140% at 100% 0%, var(--navy-700) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.4vw, 48px);
  color: #fff;
  position: relative;
  overflow: hidden;
  flex: 1;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 60% at 20% 10%, #000 30%, transparent 100%);
}
.hero-card > * { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(94, 234, 212, 0.14);
  color: var(--teal-300);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400); }

.hero-card h1 { color: #fff; margin-bottom: 18px; }
.hero-card .lede { color: var(--on-dark-muted); max-width: 46ch; margin-bottom: 28px; font-size: 1.08rem; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-right { display: flex; align-items: center; }

.hero-photo-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  display: block;
}
.hero-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 23, 0) 45%, rgba(6, 11, 23, 0.62) 100%);
  pointer-events: none;
}

.hero-photo-badges {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-photo-badges .hero-badge-float { position: static; }

.hero-badge-float {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge-float svg { width: 16px; height: 16px; color: var(--teal-500); flex-shrink: 0; }
@media (max-width: 480px) {
  .hero-photo-badges { left: 12px; right: 12px; bottom: 12px; gap: 6px; }
  .hero-photo-badges .hero-badge-float { font-size: 0.72rem; padding: 8px 11px; }
}

/* Industry strip below hero */
.industry-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 22px;
}
.industry-strip-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.industry-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
}
.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.industry-chip svg { width: 18px; height: 18px; color: var(--teal-500); }

/* ---------- Problem cards ---------- */
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.problem-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gray-500);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.problem-card h3 { margin-bottom: 10px; }
.problem-card p { color: var(--gray-600); font-size: 0.96rem; }

.closing-bar {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 30px;
}
.closing-bar .icon-badge { background: var(--teal-500); color: #04231f; }
.closing-bar p { font-size: 1.15rem; font-weight: 700; color: #fff; }

/* ---------- Icon badge (generic) ---------- */
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-tint);
  color: var(--teal-600);
  flex-shrink: 0;
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-badge-outline {
  background: transparent;
  border: 1.5px solid rgba(94, 234, 212, 0.4);
  color: var(--teal-300);
}

/* ---------- How it works (dark, 6-step grid) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--on-dark-card);
  border: 1px solid var(--on-dark-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  position: relative;
}
.step-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.step-num { font-size: 0.8rem; font-weight: 800; color: var(--on-dark-muted); letter-spacing: 0.03em; }
.step-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.1rem; }
.step-card p { color: var(--on-dark-muted); font-size: 0.92rem; }

.how-closing {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--on-dark-border);
}
.how-closing p { color: #fff; font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; }

/* ---------- Services / Pricing cards ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 980px) { .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.plan-card.is-featured {
  background: radial-gradient(120% 140% at 100% 0%, var(--navy-700) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
@media (max-width: 980px) { .plan-card.is-featured { transform: none; } }

.plan-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--teal-tint);
  color: var(--teal-600);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.plan-card.is-featured .plan-badge { background: rgba(94, 234, 212, 0.16); color: var(--teal-300); }

.plan-card h3 { margin-bottom: 6px; }
.plan-card.is-featured h3 { color: #fff; }
.plan-audience { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 20px; min-height: 42px; }
.plan-card.is-featured .plan-audience { color: var(--on-dark-muted); }

.plan-workflow { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 22px; }
.plan-workflow .chip {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.plan-card.is-featured .plan-workflow .chip { background: rgba(255, 255, 255, 0.07); border-color: var(--on-dark-border); color: var(--on-dark-muted); }
.plan-workflow .arrow { color: var(--gray-400); font-size: 0.8rem; }

.plan-model {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.plan-card.is-featured .plan-model { color: var(--on-dark-muted); }
.plan-price { font-size: 1.7rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.02em; }
.plan-card.is-featured .plan-price { color: #fff; }
.plan-price-note { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 22px; }
.plan-card.is-featured .plan-price-note { color: var(--on-dark-muted); }

.plan-values { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan-values li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--gray-700); }
.plan-card.is-featured .plan-values li { color: #e6e9f0; }
.plan-values svg { width: 18px; height: 18px; color: var(--teal-500); flex-shrink: 0; margin-top: 2px; }

.plan-foot-note { text-align: center; font-size: 0.8rem; color: var(--gray-500); margin-top: 14px; }
.plan-card.is-featured .plan-foot-note { color: var(--on-dark-muted); }

/* ---------- Hiring request form ---------- */
.form-section-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px; align-items: start; }
@media (max-width: 980px) { .form-section-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px 20px; }
.form-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: minmax(0, 1fr); }
}
.form-field label { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.form-field .opt { font-weight: 500; color: var(--gray-500); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--gray-400); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}
.form-field textarea { resize: vertical; min-height: 92px; }
.form-submit-row { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.form-note { font-size: 0.8rem; color: var(--gray-500); text-align: center; }
.form-note a { color: var(--teal-600); font-weight: 700; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px 12px;
}
.form-success.is-visible { display: block; }
.form-card.is-success .form-content { display: none; }
.form-success .icon-badge { margin-inline: auto; width: 64px; height: 64px; border-radius: 20px; margin-bottom: 20px; }
.form-success .icon-badge svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 10px; }
.form-success p { color: var(--gray-600); max-width: 42ch; margin-inline: auto; margin-bottom: 22px; }

.form-side { display: flex; flex-direction: column; gap: 22px; }
.side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.side-card h3 { margin-bottom: 18px; font-size: 1.05rem; }
.mini-steps { display: flex; flex-direction: column; gap: 16px; }
.mini-step { display: flex; gap: 14px; align-items: flex-start; }
.mini-step .dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.mini-step p { font-size: 0.9rem; color: var(--gray-700); font-weight: 600; }
.mini-step span.d { display: block; font-weight: 400; color: var(--gray-500); font-size: 0.84rem; margin-top: 2px; }

.trust-list { display: flex; flex-direction: column; gap: 12px; }
.trust-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--gray-700); font-weight: 600; }
.trust-list svg { width: 18px; height: 18px; color: var(--teal-500); flex-shrink: 0; margin-top: 2px; }

/* ---------- Transparency tracker ---------- */
.tracker-panel {
  background: var(--on-dark-card);
  border: 1px solid var(--on-dark-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 44px);
}
.tracker-top { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.tracker-role { color: #fff; font-weight: 800; font-size: 1.2rem; }
.tracker-role span { display: block; font-weight: 500; font-size: 0.85rem; color: var(--on-dark-muted); margin-top: 3px; }
.tracker-live {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(94, 234, 212, 0.12); color: var(--teal-300);
  font-size: 0.78rem; font-weight: 700; padding: 8px 14px; border-radius: var(--radius-full);
}
.tracker-live .blip { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-400); animation: blip 1.6s ease-in-out infinite; }
@keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.tracker-track { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.tracker-track::before {
  content: '';
  position: absolute;
  top: 17px; left: 8%; right: 8%;
  height: 2px;
  background: var(--on-dark-border);
  z-index: 0;
}
.tracker-node { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.tracker-node .circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-800); border: 2px solid var(--on-dark-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--on-dark-muted); font-weight: 800; font-size: 0.82rem;
}
.tracker-node.is-done .circle { background: var(--teal-500); border-color: var(--teal-500); color: #04231f; }
.tracker-node.is-current .circle { border-color: var(--teal-400); color: #fff; box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.16); }
.tracker-node .lbl { font-size: 0.82rem; font-weight: 700; color: #fff; }
.tracker-node .val { font-size: 0.78rem; color: var(--on-dark-muted); font-weight: 600; }

@media (max-width: 720px) {
  .tracker-track { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .tracker-track::before { display: none; }
}

.tracker-foot { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--on-dark-border); text-align: center; }
.tracker-foot p { color: var(--on-dark-muted); font-size: 0.95rem; }
.tracker-foot .quote { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.tracker-asterisk { font-size: 0.76rem; color: var(--gray-500); margin-top: 14px; }

/* ---------- Industries ---------- */
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.industry-card.is-focus { border-color: var(--teal-400); box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12); }
.industry-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.industry-status {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-full); white-space: nowrap;
}
.industry-status.focus { background: var(--teal-tint); color: var(--teal-600); }
.industry-status.soon { background: var(--surface-alt); color: var(--gray-500); }
.industry-card h3 { font-size: 1.1rem; }
.industry-roles { display: flex; flex-wrap: wrap; gap: 6px; }
.industry-roles span {
  font-size: 0.76rem; font-weight: 600; color: var(--gray-600);
  background: var(--surface-alt); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: var(--radius-full);
}

/* ---------- Advantage / Trust grid ---------- */
.adv-card, .trust-card {
  padding: 8px 4px;
}
.adv-card .icon-badge, .trust-card .icon-badge { margin-bottom: 16px; }
.adv-card h3, .trust-card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.adv-card p, .trust-card p { font-size: 0.92rem; color: var(--gray-600); }

.trust-band {
  background: var(--surface-alt);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 52px);
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: var(--container-narrow); margin-inline: auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 8px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 14px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 0.2s ease;
}
.faq-item summary .plus::before { width: 11px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 11px; }
.faq-item[open] summary .plus::after { transform: rotate(90deg) scaleY(0); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-item .faq-answer { padding: 4px 14px 18px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.65; }

/* ---------- About / vision-mission ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-copy p + p { margin-top: 14px; }
.vm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.vm-card + .vm-card { margin-top: 16px; }
.vm-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 10px; }
.vm-card p { font-weight: 700; color: var(--ink); font-size: 1.1rem; line-height: 1.4; }

/* ---------- Legal / long-form content ---------- */
.legal-content h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; line-height: 1.7; }
.legal-content ul { margin-bottom: 16px; }
.legal-content li { position: relative; padding-left: 22px; margin-bottom: 8px; line-height: 1.65; }
.legal-content li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); }
.legal-content a { color: var(--teal-600); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--ink); }

/* ---------- Final CTA ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: var(--on-dark-muted); }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Contact page ---------- */
.contact-card { display: flex; flex-direction: column; align-items: flex-start; }
.contact-card .icon-badge { margin-bottom: 16px; }
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { color: var(--gray-600); font-size: 0.96rem; margin-bottom: 18px; }
.contact-link { font-weight: 700; color: var(--teal-600); }
.contact-link:hover { color: var(--teal-500); }
.contact-social-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: 95; background: var(--navy-950); color: var(--on-dark-muted); padding-top: 64px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; padding-bottom: 48px; }
@media (max-width: 980px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 20px;
}
.footer-brand img { height: 34px; width: auto; display: block; }
.footer-desc { font-size: 0.92rem; line-height: 1.65; max-width: 34ch; margin-bottom: 22px; }

.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--on-dark-border);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }
.footer-social svg { width: 17px; height: 17px; }
.footer-social .social-threads span { font-size: 17px; font-weight: 800; line-height: 1; }

.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; }
.footer-contact a { font-weight: 600; }
.footer-contact a:hover { color: #fff; }

.footer-col h3 { color: #fff; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--on-dark-border);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #04230f;
  padding: 14px 20px 14px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.55);
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); }
.wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.wa-float .wa-text { display: none; }
@media (min-width: 640px) { .wa-float .wa-text { display: inline; } }

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   PRICING — compact 4-up cards, pricing-page hero, estimator, compare table
   Shared between index.html (#layanan summary) and pricing.html (full detail)
   ========================================================================== */

/* ---------- Compact pricing cards ---------- */
.pricing-block + .pricing-block { margin-top: 52px; }
.pricing-block-head { margin-bottom: 22px; }
.pricing-block-head h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pricing-block-head p { font-size: 0.92rem; color: var(--gray-500); }

.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 980px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.price-card.is-featured {
  background: radial-gradient(120% 140% at 100% 0%, var(--navy-700) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.price-card.is-highlight { border-color: var(--teal-400); box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12); }

.price-badge {
  align-self: flex-start;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--teal-tint);
  color: var(--teal-600);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.price-card.is-featured .price-badge { background: rgba(94, 234, 212, 0.16); color: var(--teal-300); }

.price-card h3, .price-card h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.price-card.is-featured h4 { color: #fff; }
.price-tagline { font-size: 0.83rem; color: var(--gray-500); margin-bottom: 16px; min-height: 34px; }
.price-card.is-featured .price-tagline { color: var(--on-dark-muted); }

.price-amount { font-size: 1.45rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.2; }
.price-card.is-featured .price-amount { color: #fff; }
.price-unit { font-size: 0.76rem; color: var(--gray-500); font-weight: 600; margin-bottom: 4px; }
.price-card.is-featured .price-unit { color: var(--on-dark-muted); }
.price-capacity { display: inline-block; font-size: 0.76rem; font-weight: 700; color: var(--teal-600); background: var(--teal-tint); padding: 3px 9px; border-radius: var(--radius-full); margin-bottom: 16px; }
.price-card.is-featured .price-capacity { color: var(--teal-300); background: rgba(94, 234, 212, 0.14); }

.price-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.84rem; color: var(--gray-700); }
.price-card.is-featured .price-features li { color: #e6e9f0; }
.price-features svg { width: 15px; height: 15px; color: var(--teal-500); flex-shrink: 0; margin-top: 3px; }

.price-card .btn { font-size: 0.85rem; padding: 11px 18px; }
.price-foot { text-align: center; font-size: 0.73rem; color: var(--gray-500); margin-top: 10px; }
.price-card.is-featured .price-foot { color: var(--on-dark-muted); }

.pricing-link-cta { text-align: center; margin-top: 44px; }
.pricing-link-cta p { margin-top: 12px; font-size: 0.85rem; color: var(--gray-500); }

/* Product ladder chip row (reused on pricing.html) */
.chip-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; }
.chip-row .chip {
  font-size: 0.72rem; font-weight: 700; color: var(--gray-600);
  background: var(--surface-alt); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: var(--radius-full); white-space: nowrap;
}
.chip-row .arrow { color: var(--gray-400); font-size: 0.8rem; }

/* ---------- Pricing page hero ---------- */
.pricing-hero {
  background: radial-gradient(120% 140% at 50% 0%, var(--navy-700) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 7vw, 96px);
}
.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.pricing-hero > .container { position: relative; z-index: 1; }
.pricing-hero-head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: 36px; }
.pricing-hero-head .eyebrow { background: rgba(94, 234, 212, 0.12); color: var(--teal-300); }
.pricing-hero-head h1 { color: #fff; margin-bottom: 14px; }
.pricing-hero-head .lede { color: var(--on-dark-muted); margin-inline: auto; }

.pricing-toggle {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  padding: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--on-dark-border);
  border-radius: var(--radius-full);
  gap: 4px;
  margin-bottom: 28px;
}
.pricing-toggle button {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--on-dark-muted);
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.pricing-toggle button.is-active { background: var(--teal-500); color: #04231f; }

.pricing-hero-panel {
  max-width: 620px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--on-dark-border);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 3vw, 42px);
  text-align: center;
}
.pricing-hero-figure { font-size: clamp(2.1rem, 1.7rem + 1.4vw, 2.9rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.pricing-hero-figure .unit { font-size: 1rem; font-weight: 600; color: var(--on-dark-muted); }
.pricing-hero-figure-note { font-size: 0.88rem; color: var(--on-dark-muted); margin-top: 8px; margin-bottom: 22px; }
.pricing-hero-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin-bottom: 26px; }
.pricing-hero-points li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: #e6e9f0; }
.pricing-hero-points svg { width: 16px; height: 16px; color: var(--teal-400); flex-shrink: 0; }
.pricing-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ---------- Budget estimator ---------- */
.estimate-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); gap: 28px; align-items: start; }
@media (max-width: 900px) { .estimate-grid { grid-template-columns: minmax(0, 1fr); } }

.calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-md);
}
.calc-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; min-width: 0; }
.calc-field label { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.calc-field .hint { font-weight: 500; color: var(--gray-500); font-size: 0.8rem; }
.calc-field input, .calc-field select {
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.95rem;
  width: 100%;
  min-width: 0;
  background: var(--surface);
  color: var(--ink);
}
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14); }

.calc-addon { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding: 13px 14px; background: var(--surface-alt); border-radius: var(--radius-sm); cursor: pointer; }
.calc-addon input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--teal-500); flex-shrink: 0; }
.calc-addon span { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.calc-addon-fields { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr); gap: 14px; margin-bottom: 4px; }
@media (max-width: 480px) { .calc-addon-fields { grid-template-columns: minmax(0, 1fr); } }

.calc-summary {
  background: radial-gradient(120% 140% at 100% 0%, var(--navy-700) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 34px);
  color: #fff;
}
.calc-summary h3 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.calc-summary .d { font-size: 0.84rem; color: var(--on-dark-muted); margin-bottom: 22px; }
.calc-line { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--on-dark-border); font-size: 0.87rem; }
.calc-line .calc-line-label { color: var(--on-dark-muted); }
.calc-line .calc-line-value { font-weight: 700; color: #fff; white-space: nowrap; }
.calc-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 18px; margin-top: 4px; }
.calc-total span:first-child { font-weight: 700; color: #fff; }
.calc-total span:last-child { font-size: 1.4rem; font-weight: 800; color: var(--teal-300); }
.calc-summary-note { font-size: 0.76rem; color: var(--on-dark-muted); margin-top: 14px; }
.calc-summary .btn { margin-top: 20px; }

/* ---------- Recruitment add-on example ---------- */
.example-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.example-card h3, .example-card h4 { margin-bottom: 4px; font-size: 1.05rem; }
.example-card .d { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 18px; }
.example-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 0.9rem; color: var(--gray-700); }
.example-row.total { font-weight: 800; color: var(--ink); padding-top: 14px; margin-top: 4px; border-top: 1px solid var(--border); border-bottom: none; font-size: 0.98rem; }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 660px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: center; font-size: 0.86rem; color: var(--gray-700); border-bottom: 1px solid var(--border); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 700; color: var(--ink); white-space: normal; min-width: 190px; }
.compare-table thead th { font-weight: 800; color: var(--ink); background: var(--surface-alt); padding-top: 16px; padding-bottom: 16px; white-space: nowrap; }
.compare-table thead th.is-featured-col { background: var(--teal-tint); color: var(--teal-600); }
.compare-table thead th .col-badge { display: block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 4px; }
.compare-table td.is-featured-col { background: rgba(20, 184, 166, 0.05); }
.compare-table .yes { color: var(--teal-500); font-weight: 800; }
.compare-table .no { color: var(--gray-400); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .compare-price-row td { font-weight: 800; color: var(--ink); font-size: 0.92rem; }

/* ---------- Pricing exclusion / legal note ---------- */
.pricing-note-box { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 26px; margin-top: 28px; }
.pricing-note-box h4 { font-size: 0.95rem; margin-bottom: 12px; }
.pricing-note-box ul { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 0; }
.pricing-note-box li { font-size: 0.85rem; color: var(--gray-600); position: relative; padding-left: 15px; }
.pricing-note-box li::before { content: '\2013'; position: absolute; left: 0; color: var(--gray-400); }
.pricing-note-box p { font-size: 0.85rem; color: var(--gray-600); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }

/* ---------- Pricing toggle: light-background variant (used on #layanan) ---------- */
.pricing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 32px; }
.pricing-toggle.is-light {
  background: var(--surface-alt);
  border-color: var(--border-strong);
}
.pricing-toggle.is-light button { color: var(--gray-600); }
.pricing-toggle.is-light button.is-active { background: var(--teal-500); color: #04231f; }

/* ---------- Calculator: number stepper ---------- */
.calc-stepper { display: flex; align-items: stretch; border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm); overflow: hidden; }
.calc-stepper button {
  width: 46px;
  flex-shrink: 0;
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.15s ease;
}
.calc-stepper button:hover { background: var(--teal-tint); color: var(--teal-600); }
.calc-stepper button:active { background: var(--teal-500); color: #04231f; }
.calc-stepper input {
  border: none;
  border-left: 1.5px solid var(--border-strong);
  border-right: 1.5px solid var(--border-strong);
  border-radius: 0;
  text-align: center;
  font-weight: 800;
  -moz-appearance: textfield;
}
.calc-stepper input::-webkit-outer-spin-button,
.calc-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-stepper input:focus { box-shadow: none; }

/* ---------- Calculator: "just updated" pulse feedback ---------- */
@keyframes calcPulse {
  0% { background-color: rgba(94, 234, 212, 0.35); }
  100% { background-color: transparent; }
}
.is-calc-updated { animation: calcPulse 0.6s ease-out; border-radius: 6px; }
.calc-live-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-300);
  margin-bottom: 4px;
}
.calc-live-flag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400); animation: blip 1.6s ease-in-out infinite; }
