/* =====================================================
   WBS LANDING PAGE - style.css v35
   Whistleblowing System
   Stasiun Pemantau Atmosfer Global Lore Lindu Bariri
===================================================== */

/* =====================================================
   FONT
===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

/* =====================================================
   ROOT VARIABLES - LIGHT DEFAULT
===================================================== */

:root {
  --primary: #00529b;
  --primary-dark: #082e63;
  --primary-soft: #e8f3ff;

  --green: #0fa76b;
  --green-dark: #087f52;
  --green-soft: #e9fff5;

  --red: #d92d20;
  --red-soft: #fff1ef;

  --yellow: #f2a900;
  --yellow-soft: #fff8e6;

  --bg: #f4f8ff;
  --bg-soft: #eef5ff;
  --white: #ffffff;

  --text: #0d1b35;
  --muted: #53627a;
  --soft: #76869c;

  --border: rgba(13, 27, 53, 0.1);
  --border-strong: rgba(13, 27, 53, 0.16);

  --shadow-xs: 0 4px 12px rgba(16, 38, 78, 0.05);
  --shadow-sm: 0 8px 20px rgba(16, 38, 78, 0.07);
  --shadow-md: 0 16px 38px rgba(16, 38, 78, 0.1);
  --shadow-lg: 0 24px 70px rgba(16, 38, 78, 0.16);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --container: 1180px;
  --header-height: 76px;

  --transition: 220ms ease;
}

/* =====================================================
   DARK VARIABLES
===================================================== */

html[data-theme="dark"],
body.dark-theme {
  --primary: #6fb6ff;
  --primary-dark: #d7eaff;
  --primary-soft: rgba(111, 182, 255, 0.12);

  --green: #35d68f;
  --green-dark: #7df0bd;
  --green-soft: rgba(53, 214, 143, 0.12);

  --red: #ff7b72;
  --red-soft: rgba(255, 123, 114, 0.1);

  --yellow: #f6c96b;
  --yellow-soft: rgba(246, 201, 107, 0.11);

  --bg: #07111f;
  --bg-soft: #0b1628;
  --white: #0e1b31;

  --text: #ecf5ff;
  --muted: #b8c7de;
  --soft: #8ea3bf;

  --border: rgba(137, 163, 200, 0.18);
  --border-strong: rgba(137, 163, 200, 0.28);
}

/* =====================================================
   RESET
===================================================== */

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  color: #ffffff;
  background: var(--primary);
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(0, 82, 155, 0.28);
  outline-offset: 3px;
}

.wbs-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =====================================================
   PAGE
===================================================== */

.wbs-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 167, 107, 0.1), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(0, 82, 155, 0.1), transparent 32%),
    linear-gradient(180deg, #f3f8ff 0%, #ffffff 52%, #f7fbff 100%);
}

html[data-theme="dark"] .wbs-page,
body.dark-theme .wbs-page {
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.1), transparent 30%),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 24%),
    linear-gradient(180deg, #03101f 0%, #041427 55%, #06182d 100%);
}

/* =====================================================
   HEADER
===================================================== */

.wbs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(13, 27, 53, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wbs-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(16, 38, 78, 0.08);
}

html[data-theme="dark"] .wbs-header,
body.dark-theme .wbs-header {
  background: rgba(7, 17, 31, 0.9);
  border-color: rgba(255, 255, 255, 0.09);
}

html[data-theme="dark"] .wbs-header.is-scrolled,
body.dark-theme .wbs-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.wbs-header-container {
  width: min(1240px, calc(100% - 40px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(360px, 1fr) auto;
  align-items: center;
  gap: 18px;
}

/* =====================================================
   HEADER BRAND
===================================================== */

.wbs-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
  flex: 0 0 auto;
}

.wbs-brand-logo {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  object-fit: contain !important;
  flex: 0 0 44px !important;
}

.wbs-brand-text {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wbs-brand-text strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.wbs-brand-text span {
  display: -webkit-box;
  max-width: 300px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.28;
  font-weight: 700;
  -webkit-line-clamp: 2;
  /* Standard property for compatibility */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =====================================================
   NAVIGATION
===================================================== */

.wbs-nav {
  justify-self: center;
  width: auto;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(0, 82, 155, 0.08);
  border-radius: 999px;
  background: rgba(232, 243, 255, 0.7);
  box-shadow: 0 8px 22px rgba(16, 38, 78, 0.05);
}

html[data-theme="dark"] .wbs-nav,
body.dark-theme .wbs-nav {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(137, 163, 200, 0.16);
  box-shadow: none;
}

.wbs-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
  transition:
    color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.wbs-nav-link:hover,
.wbs-nav-link.active {
  color: var(--primary-dark);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(16, 38, 78, 0.08);
}

html[data-theme="dark"] .wbs-nav-link:hover,
html[data-theme="dark"] .wbs-nav-link.active,
body.dark-theme .wbs-nav-link:hover,
body.dark-theme .wbs-nav-link.active {
  color: #d7eaff;
  background: rgba(111, 182, 255, 0.14);
  box-shadow: none;
}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.wbs-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.wbs-header-back,
.wbs-header-cta,
.wbs-theme-toggle,
.wbs-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.wbs-header-back {
  gap: 8px;
  padding: 10px 14px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 82, 155, 0.14);
  box-shadow: var(--shadow-sm);
}

.wbs-header-back:hover {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(0, 82, 155, 0.28);
  transform: translateY(-1px);
}

.wbs-header-cta {
  gap: 8px;
  padding: 10px 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #0fa76b, #087f52);
  border: 1px solid rgba(15, 167, 107, 0.24);
  box-shadow: 0 10px 22px rgba(15, 167, 107, 0.24);
}

.wbs-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 167, 107, 0.3);
}

.wbs-header-back span,
.wbs-header-cta span {
  font-size: 0.8rem;
}

.wbs-header-back svg,
.wbs-header-cta svg {
  width: 17px !important;
  height: 17px !important;
  color: currentColor;
  stroke: currentColor;
  flex: 0 0 17px;
}

.wbs-theme-toggle,
.wbs-menu-toggle {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 82, 155, 0.14);
  box-shadow: var(--shadow-sm);
}

.wbs-theme-toggle:hover,
.wbs-menu-toggle:hover {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(0, 82, 155, 0.28);
  transform: translateY(-1px);
}

html[data-theme="dark"] .wbs-header-back,
html[data-theme="dark"] .wbs-theme-toggle,
html[data-theme="dark"] .wbs-menu-toggle,
body.dark-theme .wbs-header-back,
body.dark-theme .wbs-theme-toggle,
body.dark-theme .wbs-menu-toggle {
  color: #eaf2ff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(137, 163, 200, 0.18);
}

html[data-theme="dark"] .wbs-header-back:hover,
html[data-theme="dark"] .wbs-theme-toggle:hover,
html[data-theme="dark"] .wbs-menu-toggle:hover,
body.dark-theme .wbs-header-back:hover,
body.dark-theme .wbs-theme-toggle:hover,
body.dark-theme .wbs-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(137, 163, 200, 0.3);
}

.wbs-theme-svg {
  width: 18px !important;
  height: 18px !important;
  color: currentColor;
}

.wbs-theme-moon {
  display: none !important;
}

html[data-theme="dark"] .wbs-theme-sun,
body.dark-theme .wbs-theme-sun {
  display: none !important;
}

html[data-theme="dark"] .wbs-theme-moon,
body.dark-theme .wbs-theme-moon {
  display: block !important;
}

/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.wbs-menu-toggle {
  display: none;
}

.wbs-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.wbs-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.wbs-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.wbs-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* =====================================================
   BUTTONS
===================================================== */

.wbs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 880;
  line-height: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.wbs-btn svg {
  width: 18px !important;
  height: 18px !important;
  color: currentColor;
  stroke: currentColor;
  flex: 0 0 18px;
}

.wbs-btn-primary {
  color: #062e22;
  background: linear-gradient(135deg, #42e6a4, #73f2bd);
  box-shadow: 0 14px 30px rgba(15, 167, 107, 0.28);
}

.wbs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 167, 107, 0.34);
}

.wbs-btn-outline {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 82, 155, 0.16);
  box-shadow: var(--shadow-sm);
}

.wbs-btn-outline:hover {
  color: var(--primary);
  background: #ffffff;
  transform: translateY(-2px);
}

.wbs-btn-light {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 82, 155, 0.14);
  box-shadow: var(--shadow-sm);
}

.wbs-btn-light:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

/* =====================================================
   HERO - LIGHT DEFAULT
===================================================== */

.wbs-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  padding: 84px 20px 86px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at top left, rgba(0, 82, 155, 0.12), transparent 35%),
    radial-gradient(circle at top right, rgba(15, 167, 107, 0.1), transparent 32%),
    linear-gradient(180deg, #eaf5ff 0%, #f7fbff 100%);
}

.wbs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.7;
  filter: blur(3px) saturate(1.08) contrast(1.05) brightness(0.88);
  transform: scale(1.04);
}

.wbs-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 50% 36%,
      rgba(255, 255, 255, 0.18),
      rgba(235, 246, 255, 0.4) 48%,
      rgba(226, 240, 255, 0.68) 100%
    ),
    linear-gradient(
      180deg,
      rgba(238, 248, 255, 0.44) 0%,
      rgba(255, 255, 255, 0.62) 100%
    );
}

.wbs-hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  padding: clamp(34px, 5vw, 58px) clamp(22px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.52)
    );
  box-shadow: 0 24px 70px rgba(16, 38, 78, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.wbs-hero-content::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(var(--radius-xl) - 1px);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.5), transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.wbs-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  padding: 8px 15px;
  margin-bottom: 24px;
  border: 1px solid rgba(15, 167, 107, 0.22);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(233, 255, 245, 0.9);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 860;
}

.wbs-hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(15, 167, 107, 0.14);
}

.wbs-hero h1 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--primary-dark);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.wbs-hero h1 b {
  display: block;
  margin-top: 22px;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.wbs-hero p {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.2vw, 1.05rem);
  line-height: 1.9;
  font-weight: 650;
}

.wbs-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.wbs-hero-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.wbs-info-item {
  min-height: 146px;
  padding: 24px 22px;
  border: 1px solid rgba(13, 27, 53, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 26px rgba(16, 38, 78, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.wbs-info-item:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 167, 107, 0.2);
  box-shadow: 0 18px 36px rgba(16, 38, 78, 0.12);
}

.wbs-info-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 15px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(15, 167, 107, 0.16);
}

.wbs-info-icon svg {
  width: 22px;
  height: 22px;
}

.wbs-info-item strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.38;
  font-weight: 900;
}

.wbs-info-item span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.64;
  font-weight: 650;
}

/* =====================================================
   HERO DARK MODE
===================================================== */

html[data-theme="dark"] .wbs-hero,
body.dark-theme .wbs-hero {
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.1), transparent 30%),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 24%),
    #06182d;
}

html[data-theme="dark"] .wbs-hero-bg,
body.dark-theme .wbs-hero-bg {
  opacity: 1;
  filter: blur(5px) saturate(1.04) contrast(1.04) brightness(0.62);
}

html[data-theme="dark"] .wbs-hero-overlay,
body.dark-theme .wbs-hero-overlay {
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(19, 41, 68, 0.44),
      rgba(13, 27, 53, 0.7) 56%,
      rgba(7, 17, 31, 0.84) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 17, 31, 0.36) 0%,
      rgba(7, 17, 31, 0.62) 100%
    );
}

html[data-theme="dark"] .wbs-hero-content,
body.dark-theme .wbs-hero-content {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(17, 32, 51, 0.58),
      rgba(14, 29, 49, 0.5)
    );
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .wbs-hero-content::before,
body.dark-theme .wbs-hero-content::before {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

html[data-theme="dark"] .wbs-hero-badge,
body.dark-theme .wbs-hero-badge {
  color: #8af5c1;
  background: rgba(15, 167, 107, 0.18);
  border-color: rgba(110, 231, 183, 0.28);
}

html[data-theme="dark"] .wbs-hero h1,
body.dark-theme .wbs-hero h1 {
  color: #7fc3ff;
}

html[data-theme="dark"] .wbs-hero h1 b,
body.dark-theme .wbs-hero h1 b {
  color: #ffffff;
}

html[data-theme="dark"] .wbs-hero p,
body.dark-theme .wbs-hero p {
  color: #d6e3f3;
}

html[data-theme="dark"] .wbs-hero .wbs-btn-outline,
body.dark-theme .wbs-hero .wbs-btn-outline {
  color: #f3f8ff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

html[data-theme="dark"] .wbs-info-item,
body.dark-theme .wbs-info-item {
  border-color: rgba(110, 231, 183, 0.18);
  background: rgba(2, 21, 38, 0.52);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

html[data-theme="dark"] .wbs-info-icon,
body.dark-theme .wbs-info-icon {
  color: #7df0bd;
  background: rgba(53, 214, 143, 0.12);
  border-color: rgba(110, 231, 183, 0.18);
}

html[data-theme="dark"] .wbs-info-item strong,
body.dark-theme .wbs-info-item strong {
  color: #ffffff;
}

html[data-theme="dark"] .wbs-info-item span,
body.dark-theme .wbs-info-item span {
  color: #c4d3e6;
}

/* =====================================================
   SECTIONS
===================================================== */

.wbs-section {
  padding: 84px 0 90px;
}

.wbs-soft-section {
  background:
    radial-gradient(circle at top left, rgba(0, 82, 155, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(245, 249, 255, 0.96), rgba(255, 255, 255, 0.98));
}

html[data-theme="dark"] .wbs-soft-section,
body.dark-theme .wbs-soft-section {
  background:
    radial-gradient(circle at top left, rgba(111, 182, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(4, 17, 34, 0.96), rgba(5, 20, 40, 0.96));
}

.wbs-section-container,
.wbs-footer-container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.wbs-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.wbs-section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 13px;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 167, 107, 0.2);
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 850;
}

.wbs-section-heading h2,
.wbs-about-text h2,
.wbs-cta-card h2,
.wbs-footer-about h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  line-height: 1.18;
  font-weight: 930;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.wbs-section-heading p,
.wbs-about-text p,
.wbs-cta-card p,
.wbs-footer-about p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.82;
  font-weight: 560;
}

/* =====================================================
   CARD BASE
===================================================== */

.wbs-about-text,
.wbs-security-box,
.wbs-criteria-card,
.wbs-step-card,
.wbs-guide-card,
.wbs-faq-item,
.wbs-cta-card,
.wbs-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

html[data-theme="dark"] .wbs-about-text,
html[data-theme="dark"] .wbs-security-box,
html[data-theme="dark"] .wbs-criteria-card,
html[data-theme="dark"] .wbs-step-card,
html[data-theme="dark"] .wbs-guide-card,
html[data-theme="dark"] .wbs-faq-item,
html[data-theme="dark"] .wbs-cta-card,
html[data-theme="dark"] .wbs-contact-card,
body.dark-theme .wbs-about-text,
body.dark-theme .wbs-security-box,
body.dark-theme .wbs-criteria-card,
body.dark-theme .wbs-step-card,
body.dark-theme .wbs-guide-card,
body.dark-theme .wbs-faq-item,
body.dark-theme .wbs-cta-card,
body.dark-theme .wbs-contact-card {
  background:
    linear-gradient(
      180deg,
      rgba(5, 20, 39, 0.94),
      rgba(6, 22, 41, 0.9)
    );
  border-color: rgba(137, 163, 200, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

/* =====================================================
   ABOUT
===================================================== */

.wbs-about-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.wbs-about-text,
.wbs-security-box {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-xl);
}

.wbs-security-box {
  background:
    radial-gradient(circle at top right, rgba(15, 167, 107, 0.09), transparent 38%),
    rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 167, 107, 0.16);
}

.wbs-security-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 22px;
  color: var(--green-dark);
  background: var(--green-soft);
}

.wbs-security-icon svg {
  width: 26px;
  height: 26px;
}

.wbs-security-box h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.32;
  font-weight: 920;
}

.wbs-security-box p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.78;
}

.wbs-security-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.wbs-security-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 850;
}

/* =====================================================
   CRITERIA
===================================================== */

.wbs-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wbs-criteria-card,
.wbs-step-card,
.wbs-guide-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.wbs-criteria-card:hover,
.wbs-step-card:hover,
.wbs-guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 82, 155, 0.18);
  box-shadow: var(--shadow-md);
}

.wbs-criteria-icon,
.wbs-step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 0.9rem;
  font-weight: 920;
}

.wbs-criteria-card h3,
.wbs-step-card h3,
.wbs-guide-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.wbs-criteria-card p,
.wbs-step-card p,
.wbs-guide-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
  font-weight: 560;
}

/* =====================================================
   GUIDE / PANDUAN
===================================================== */

.wbs-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.wbs-guide-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 18px;
  color: var(--green-dark);
}

.wbs-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* =====================================================
   FAQ
===================================================== */

.wbs-faq-list {
  width: min(860px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.wbs-faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.wbs-faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 880;
}

.wbs-faq-question i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-style: normal;
  font-weight: 900;
  transition: transform var(--transition);
}

.wbs-faq-item.active .wbs-faq-question i {
  transform: rotate(45deg);
}

.wbs-faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.wbs-faq-item.active .wbs-faq-answer {
  display: block;
}

.wbs-faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.76;
}

/* =====================================================
   CTA
===================================================== */

.wbs-cta-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at top right, rgba(15, 167, 107, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

html[data-theme="dark"] .wbs-cta-section,
body.dark-theme .wbs-cta-section {
  background:
    radial-gradient(circle at top right, rgba(53, 214, 143, 0.08), transparent 34%),
    linear-gradient(180deg, #041122, #06182d);
}

.wbs-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
}

.wbs-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
===================================================== */

.wbs-footer {
  padding: 54px 0 30px;
  border-top: 1px solid rgba(13, 27, 53, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(247, 251, 255, 0.98)
    );
}

html[data-theme="dark"] .wbs-footer,
body.dark-theme .wbs-footer {
  background:
    linear-gradient(
      180deg,
      rgba(4, 17, 34, 0.96),
      rgba(5, 20, 40, 0.96)
    );
  border-color: rgba(137, 163, 200, 0.14);
}

.wbs-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.wbs-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 560px;
}

.wbs-footer-brand img {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  flex: 0 0 48px !important;
}

.wbs-footer-brand strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 920;
}

.wbs-footer-brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
  font-weight: 650;
}

.wbs-footer-about p {
  max-width: 680px;
}

.wbs-footer-contact-list {
  display: grid;
  gap: 14px;
}

.wbs-contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 76px;
  padding: 16px 18px;
  border-radius: 20px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.wbs-contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 82, 155, 0.2);
  box-shadow: 0 16px 34px rgba(16, 38, 78, 0.12);
}

.wbs-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 15px;
  color: var(--green-dark);
  background: var(--green-soft);
}

.wbs-contact-icon svg {
  width: 22px;
  height: 22px;
}

.wbs-contact-content {
  min-width: 0;
}

.wbs-contact-content small {
  display: block;
  color: var(--soft);
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 820;
}

.wbs-contact-content strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.4;
  font-weight: 880;
  word-break: break-word;
}

.wbs-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(13, 27, 53, 0.09);
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.wbs-footer-bottom p {
  margin: 0;
}

/* =====================================================
   STATES
===================================================== */

.wbs-btn.is-pressed,
.wbs-header-back.is-pressed,
.wbs-header-cta.is-pressed,
.wbs-theme-toggle.is-pressed,
.wbs-contact-card.is-pressed,
.wbs-menu-toggle.is-pressed {
  transform: translateY(0) scale(0.98);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1160px) {
  .wbs-header-container {
    grid-template-columns: minmax(240px, 320px) minmax(300px, 1fr) auto;
    gap: 14px;
  }

  .wbs-brand-text span {
    max-width: 245px;
    font-size: 0.64rem;
  }

  .wbs-nav-link {
    padding-inline: 10px;
    font-size: 0.74rem;
  }

  .wbs-header-back span {
    display: none;
  }

  .wbs-header-back {
    width: 42px;
    padding: 0;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .wbs-header {
    min-height: var(--header-height);
  }

  .wbs-header-container {
    width: min(100% - 30px, var(--container));
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .wbs-brand {
    flex: 1 1 auto;
  }

  .wbs-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .wbs-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 80px;
    z-index: 99;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    padding: 14px;
    border: 1px solid rgba(0, 82, 155, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(16, 38, 78, 0.16);
  }

  html[data-theme="dark"] .wbs-nav,
  body.dark-theme .wbs-nav {
    background: rgba(7, 17, 31, 0.98);
    border-color: rgba(137, 163, 200, 0.18);
  }

  .wbs-nav.is-open,
  .wbs-nav.active {
    display: flex;
  }

  .wbs-nav-link {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    padding: 12px 14px;
    font-size: 0.84rem;
  }

  .wbs-about-card {
    grid-template-columns: 1fr;
  }

  .wbs-criteria-grid,
  .wbs-guide-grid,
  .wbs-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wbs-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .wbs-header-container,
  .wbs-section-container,
  .wbs-footer-container {
    width: min(100% - 30px, var(--container));
  }

  .wbs-brand-logo {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    flex-basis: 40px !important;
  }

  .wbs-brand-text strong {
    font-size: 0.9rem;
  }

  .wbs-brand-text span {
    max-width: 190px;
    font-size: 0.62rem;
    line-height: 1.22;
  }

  .wbs-header-cta span {
    display: none;
  }

  .wbs-header-cta {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .wbs-hero {
    min-height: auto;
    padding: 42px 15px 58px;
  }

  .wbs-hero-bg {
    opacity: 0.58;
    filter: blur(3px) saturate(1.05) contrast(1.02) brightness(0.92);
  }

  .wbs-hero-content {
    padding: 30px 20px;
    border-radius: 26px;
  }

  .wbs-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.5rem);
    line-height: 1.06;
  }

  .wbs-hero h1 b {
    margin-top: 18px;
  }

  .wbs-hero p {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.78;
  }

  .wbs-hero-buttons,
  .wbs-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wbs-btn {
    width: 100%;
  }

  .wbs-hero-info,
  .wbs-criteria-grid,
  .wbs-guide-grid,
  .wbs-steps {
    grid-template-columns: 1fr;
  }

  .wbs-section {
    padding: 58px 0 68px;
  }

  .wbs-cta-card {
    grid-template-columns: 1fr;
  }

  .wbs-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .wbs-header-container,
  .wbs-section-container,
  .wbs-footer-container {
    width: min(100% - 24px, var(--container));
  }

  .wbs-brand-text span {
    display: none;
  }

  .wbs-brand-text strong {
    font-size: 0.88rem;
  }

  .wbs-hero-content {
    padding: 26px 16px;
    border-radius: 22px;
  }

  .wbs-about-text,
  .wbs-security-box,
  .wbs-criteria-card,
  .wbs-step-card,
  .wbs-guide-card,
  .wbs-cta-card {
    padding: 22px;
    border-radius: 24px;
  }

  .wbs-footer-brand {
    align-items: flex-start;
  }

  .wbs-contact-card {
    align-items: flex-start;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}