/* =====================================================
   WBS LANDING PAGE - style.css
   Whistleblowing System
   Stasiun Pemantau Atmosfer Global Lore Lindu Bariri
===================================================== */

/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {
  --primary: #00529b;
  --primary-dark: #082e63;
  --primary-soft: #e8f3ff;

  --green: #0fa76b;
  --green-dark: #087f52;
  --green-soft: #e9fff5;

  --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-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;
}

/* =====================================================
   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);
}

/* =====================================================
   PAGE
===================================================== */

.wbs-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(15, 167, 107, 0.11), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(0, 82, 155, 0.12), transparent 32%),
    linear-gradient(180deg, #f3f8ff 0%, #ffffff 52%, #f7fbff 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.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wbs-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(16, 38, 78, 0.08);
}

.wbs-header-container {
  width: min(var(--container), calc(100% - 40px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* Brand */
.wbs-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  flex: 0 0 380px;
}

.wbs-brand-logo {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  max-height: 46px !important;
  object-fit: contain !important;
  flex: 0 0 46px !important;
}

.wbs-brand-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wbs-brand-text strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.002em;
  white-space: nowrap;
}

.wbs-brand-text span {
  display: block;
  max-width: 320px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.32;
  font-weight: 650;
  white-space: normal;
}

/* Navigation */
.wbs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 auto;
}

.wbs-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.wbs-nav-link:hover {
  color: var(--primary);
  background: rgba(0, 82, 155, 0.08);
  transform: translateY(-1px);
}

.wbs-nav-link.active {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

/* Header Actions */
.wbs-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex: 0 0 auto;
}

.wbs-header-back,
.wbs-header-home,
.wbs-header-cta,
.wbs-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  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);
}

/* Kembali ke Website */
.wbs-header-back,
.wbs-header-home {
  gap: 8px;
  padding: 10px 15px;
  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-header-back:hover,
.wbs-header-home:hover {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(0, 82, 155, 0.28);
  transform: translateY(-1px);
}

.wbs-back-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

/* Buat Pengaduan Header */
.wbs-header-cta {
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  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);
}

/* Theme Button Icon-Only */
.wbs-theme-icon-button,
.wbs-theme-toggle {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  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-theme-toggle {
  position: relative;
  overflow: hidden;
}

.wbs-theme-toggle:hover {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(0, 82, 155, 0.28);
  transform: translateY(-1px);
}

.wbs-theme-svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px;
  color: currentColor;
  stroke: currentColor;
}

.wbs-theme-moon {
  display: none !important;
}

[data-theme="dark"] .wbs-theme-sun,
body.dark-theme .wbs-theme-sun {
  display: none !important;
}

[data-theme="dark"] .wbs-theme-moon,
body.dark-theme .wbs-theme-moon {
  display: block !important;
}

/* Mobile Menu */
.wbs-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.wbs-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
  transition: var(--transition);
}

.wbs-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.wbs-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.wbs-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =====================================================
   HERO
===================================================== */

.wbs-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 78px 20px 92px;
  overflow: hidden;
  isolation: isolate;
}

.wbs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--wbs-hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(5px) saturate(1.04) contrast(1.04) brightness(0.88);
  transform: scale(1.035);
  opacity: 1;
}

.wbs-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.28) 56%,
      rgba(236, 244, 255, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(235, 244, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.22) 48%,
      rgba(238, 245, 255, 0.38) 100%
    );
}

.wbs-hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  padding: clamp(34px, 5vw, 56px) clamp(22px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.48)
    );
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  overflow: hidden;
}

.wbs-hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.44), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
}

.wbs-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  padding: 7px 13px;
  margin-bottom: 26px;
  border: 1px solid rgba(15, 167, 107, 0.24);
  border-radius: 999px;
  background: rgba(233, 255, 245, 0.86);
  color: var(--green-dark);
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.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-content h1 {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(2.3rem, 5.2vw, 4.55rem);
  line-height: 1.12;
  font-weight: 920;
  letter-spacing: 0.003em;
  text-wrap: balance;
}

.wbs-hero-content h1 strong {
  display: block;
  color: var(--primary);
  font-weight: 920;
  letter-spacing: 0.003em;
}

.wbs-hero-content h1 b {
  display: block;
  max-width: 740px;
  margin: 24px auto 0;
  color: var(--text);
  font-size: clamp(1.06rem, 1.8vw, 1.42rem);
  line-height: 1.42;
  font-weight: 850;
  letter-spacing: 0.002em;
}

.wbs-hero-content p {
  max-width: 710px;
  margin: 20px auto 0;
  color: #263a5c;
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.84;
  font-weight: 650;
  text-wrap: pretty;
}

.wbs-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.wbs-hero-buttons .wbs-btn {
  min-width: 188px;
}

/* Buttons */
.wbs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 19px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  user-select: none;
}

.wbs-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
  color: currentColor;
  stroke: currentColor;
}

.wbs-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 26px rgba(15, 167, 107, 0.25);
}

.wbs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 167, 107, 0.3);
}

.wbs-btn-outline {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 82, 155, 0.16);
  box-shadow: 0 10px 24px rgba(16, 38, 78, 0.1);
}

.wbs-btn-outline:hover {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(0, 82, 155, 0.28);
  transform: translateY(-2px);
}

/* Hero Info */
.wbs-hero-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.wbs-info-item {
  min-height: 138px;
  padding: 24px 22px;
  border: 1px solid rgba(13, 27, 53, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 26px rgba(16, 38, 78, 0.08);
  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.22);
  box-shadow: 0 18px 36px rgba(16, 38, 78, 0.13);
}

.wbs-info-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border-radius: 14px;
  color: var(--green-dark);
  background: var(--green-soft);
}

.wbs-info-item strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.38;
  font-weight: 900;
  letter-spacing: 0.002em;
}

.wbs-info-item span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.64;
  font-weight: 650;
}

/* =====================================================
   SECTIONS
===================================================== */

.wbs-section {
  padding: 92px 0;
}

.wbs-soft-section {
  background:
    linear-gradient(
      180deg,
      rgba(238, 245, 255, 0.68),
      rgba(255, 255, 255, 0.88)
    );
}

.wbs-process-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 167, 107, 0.08), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(0, 82, 155, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.92);
}

.wbs-section-container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.wbs-section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.wbs-section-kicker,
.wbs-footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 7px 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(15, 167, 107, 0.17);
  border-radius: 999px;
  background: rgba(233, 255, 245, 0.9);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.wbs-footer-kicker {
  min-height: auto;
  padding: 0;
  margin-bottom: 12px;
  border: 0;
  background: transparent;
}

.wbs-section-heading h2,
.wbs-about-text h2,
.wbs-cta-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  font-weight: 920;
  letter-spacing: 0.004em;
  text-wrap: balance;
}

.wbs-section-heading p,
.wbs-about-text p,
.wbs-cta-card p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

/* =====================================================
   ABOUT
===================================================== */

.wbs-about-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wbs-about-text p {
  margin-left: 0;
  margin-right: 0;
}

.wbs-security-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(15, 167, 107, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      180deg,
      rgba(233, 255, 245, 0.82),
      rgba(255, 255, 255, 0.86)
    );
}

.wbs-security-icon,
.wbs-contact-icon,
.wbs-criteria-icon,
.wbs-process-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 17px;
  color: var(--green-dark);
  background: var(--green-soft);
}

.wbs-security-icon {
  margin-bottom: 22px;
}

.wbs-security-box h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1.25;
  font-weight: 920;
  letter-spacing: 0.004em;
}

.wbs-security-box p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.74;
}

.wbs-security-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.wbs-security-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 850;
}

/* Kill-switch jika masih ada list lama */
.wbs-security-list {
  display: none !important;
}

/* =====================================================
   CRITERIA / STEPS / PROCESS
===================================================== */

.wbs-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wbs-steps,
.wbs-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.wbs-criteria-card,
.wbs-step-card,
.wbs-process-item {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.wbs-criteria-card:hover,
.wbs-step-card:hover,
.wbs-process-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 82, 155, 0.18);
  box-shadow: var(--shadow-lg);
}

.wbs-criteria-icon,
.wbs-process-icon {
  margin-bottom: 18px;
  font-size: 1.08rem;
  font-weight: 900;
}

.wbs-step-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 24px rgba(0, 82, 155, 0.18);
  font-size: 1rem;
  font-weight: 920;
}

.wbs-criteria-card h3,
.wbs-step-card h3,
.wbs-process-item h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 920;
  letter-spacing: 0.002em;
}

.wbs-criteria-card h3 span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.wbs-criteria-card p,
.wbs-step-card p,
.wbs-process-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.76;
}

/* =====================================================
   5W1H / UNSUR LAPORAN
===================================================== */

.wbs-5w1h-grid,
.wbs-report-guide-grid,
.wbs-question-grid,
.wbs-report-grid,
.wbs-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.wbs-5w1h-card,
.wbs-report-guide-card,
.wbs-question-card,
.wbs-report-card,
.wbs-guide-card {
  min-height: 205px;
  padding: 34px 30px;
  border: 1px solid rgba(13, 27, 53, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(16, 38, 78, 0.1);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.wbs-5w1h-card:hover,
.wbs-report-guide-card:hover,
.wbs-question-card:hover,
.wbs-report-card:hover,
.wbs-guide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 167, 107, 0.24);
  box-shadow: 0 24px 52px rgba(16, 38, 78, 0.14);
  background: #ffffff;
}

.wbs-5w1h-icon,
.wbs-report-guide-icon,
.wbs-question-icon,
.wbs-report-card-icon,
.wbs-guide-icon,
.wbs-card-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 17px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(15, 167, 107, 0.1);
  font-size: 1.25rem;
  line-height: 1;
}

.wbs-5w1h-icon svg,
.wbs-report-guide-icon svg,
.wbs-question-icon svg,
.wbs-report-card-icon svg,
.wbs-guide-icon svg,
.wbs-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.wbs-5w1h-card h3,
.wbs-report-guide-card h3,
.wbs-question-card h3,
.wbs-report-card h3,
.wbs-guide-card h3,
.wbs-5w1h-card strong,
.wbs-report-guide-card strong,
.wbs-question-card strong,
.wbs-report-card strong,
.wbs-guide-card strong {
  display: block;
  margin: 0;
  color: #061633;
  font-size: 1.28rem;
  line-height: 1.32;
  font-weight: 920;
  letter-spacing: 0.002em;
}

.wbs-5w1h-card h3 span,
.wbs-report-guide-card h3 span,
.wbs-question-card h3 span,
.wbs-report-card h3 span,
.wbs-guide-card h3 span,
.wbs-5w1h-card small,
.wbs-report-guide-card small,
.wbs-question-card small,
.wbs-report-card small,
.wbs-guide-card small {
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 850;
}

.wbs-5w1h-card p,
.wbs-report-guide-card p,
.wbs-question-card p,
.wbs-report-card p,
.wbs-guide-card p {
  display: block;
  margin-top: 16px;
  color: #415477;
  font-size: 1.02rem;
  line-height: 1.78;
  font-weight: 570;
}

/* =====================================================
   FAQ
===================================================== */

.wbs-faq-list {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

.wbs-faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.wbs-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 24px;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-weight: 880;
  line-height: 1.45;
}

.wbs-faq-question i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-style: normal;
  font-size: 1.1rem;
  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 24px 23px;
}

.wbs-faq-item.active .wbs-faq-answer {
  display: block;
}

.wbs-faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.78;
}

/* =====================================================
   CTA
===================================================== */

.wbs-cta-section {
  padding: 42px 0 92px;
}

.wbs-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(234, 244, 255, 0.86)
    );
  box-shadow: var(--shadow-md);
}

.wbs-cta-card p {
  margin-left: 0;
  margin-right: 0;
}

.wbs-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  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)
    );
}

.wbs-footer-container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.wbs-footer-top {
  margin-bottom: 28px;
}

.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;
  letter-spacing: 0.004em;
}

.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-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 64px;
  align-items: start;
}

.wbs-footer-about h2 {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.32;
  font-weight: 920;
  letter-spacing: 0.004em;
}

.wbs-footer-about p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

.wbs-footer-site-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 22px;
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 0.86rem;
  font-weight: 850;
  transition:
    transform var(--transition),
    background var(--transition);
}

.wbs-footer-site-link:hover {
  transform: translateY(-2px);
  background: #dcecff;
}

.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: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(16, 38, 78, 0.08);
  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 {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 15px;
  color: var(--green-dark);
  background: var(--green-soft);
}

.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;
}

/* =====================================================
   UTILITIES / JS EFFECTS
===================================================== */

.wbs-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.wbs-btn.is-pressed,
.wbs-header-back.is-pressed,
.wbs-header-home.is-pressed,
.wbs-theme-toggle.is-pressed,
.wbs-header-cta.is-pressed,
.wbs-contact-card.is-pressed,
.wbs-footer-site-link.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);
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

:focus-visible {
  outline: 3px solid rgba(0, 82, 155, 0.28);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* =====================================================
   DARK MODE VARIABLES
===================================================== */

[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);

  --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);
}

/* =====================================================
   DARK MODE
===================================================== */

[data-theme="dark"] body,
body.dark-theme,
[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%);
  color: #e8f1ff;
}

[data-theme="dark"] .wbs-header,
body.dark-theme .wbs-header {
  background: rgba(7, 17, 31, 0.86);
  border-color: rgba(255, 255, 255, 0.09);
}

[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);
}

[data-theme="dark"] .wbs-brand-text strong,
body.dark-theme .wbs-brand-text strong {
  color: #f8fbff;
}

[data-theme="dark"] .wbs-brand-text span,
body.dark-theme .wbs-brand-text span {
  color: #b8c7de;
}

[data-theme="dark"] .wbs-nav-link,
body.dark-theme .wbs-nav-link {
  color: #b8c7de;
}

[data-theme="dark"] .wbs-nav-link:hover,
body.dark-theme .wbs-nav-link:hover,
[data-theme="dark"] .wbs-nav-link.active,
body.dark-theme .wbs-nav-link.active {
  color: #ffffff;
  background: rgba(111, 182, 255, 0.14);
}

[data-theme="dark"] .wbs-header-back,
[data-theme="dark"] .wbs-header-home,
[data-theme="dark"] .wbs-theme-toggle,
body.dark-theme .wbs-header-back,
body.dark-theme .wbs-header-home,
body.dark-theme .wbs-theme-toggle {
  color: #eaf2ff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(137, 163, 200, 0.18);
}

[data-theme="dark"] .wbs-header-back:hover,
[data-theme="dark"] .wbs-header-home:hover,
[data-theme="dark"] .wbs-theme-toggle:hover,
body.dark-theme .wbs-header-back:hover,
body.dark-theme .wbs-header-home:hover,
body.dark-theme .wbs-theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(137, 163, 200, 0.3);
}

[data-theme="dark"] .wbs-header-cta,
[data-theme="dark"] .wbs-btn-primary,
body.dark-theme .wbs-header-cta,
body.dark-theme .wbs-btn-primary {
  color: #062e22;
}

[data-theme="dark"] .wbs-menu-toggle,
body.dark-theme .wbs-menu-toggle {
  background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .wbs-menu-toggle span,
body.dark-theme .wbs-menu-toggle span {
  background: #e8f1ff;
}

/* Dark Hero */
[data-theme="dark"] .wbs-hero-bg,
body.dark-theme .wbs-hero-bg {
  opacity: 0.88;
  filter: blur(5px) saturate(0.9) brightness(0.62) contrast(1.05);
  transform: scale(1.035);
}

[data-theme="dark"] .wbs-hero-overlay,
body.dark-theme .wbs-hero-overlay {
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(3, 16, 31, 0.24),
      rgba(3, 16, 31, 0.42) 56%,
      rgba(3, 16, 31, 0.58) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 17, 31, 0.28) 0%,
      rgba(7, 17, 31, 0.42) 48%,
      rgba(7, 17, 31, 0.58) 100%
    );
}

[data-theme="dark"] .wbs-hero-content,
body.dark-theme .wbs-hero-content {
  background:
    linear-gradient(
      180deg,
      rgba(8, 24, 46, 0.62),
      rgba(7, 22, 42, 0.52)
    );
  border-color: rgba(180, 205, 235, 0.22);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .wbs-hero-content h1,
[data-theme="dark"] .wbs-hero-content h1 b,
body.dark-theme .wbs-hero-content h1,
body.dark-theme .wbs-hero-content h1 b {
  color: #f8fbff;
}

[data-theme="dark"] .wbs-hero-content h1 strong,
body.dark-theme .wbs-hero-content h1 strong {
  color: #79bfff;
}

[data-theme="dark"] .wbs-hero-content p,
body.dark-theme .wbs-hero-content p {
  color: #c4d3e6;
}

[data-theme="dark"] .wbs-hero-badge,
[data-theme="dark"] .wbs-section-kicker,
body.dark-theme .wbs-hero-badge,
body.dark-theme .wbs-section-kicker {
  background: rgba(110, 231, 183, 0.14);
  color: #86efac;
  border-color: rgba(110, 231, 183, 0.22);
}

/* Dark Cards */
[data-theme="dark"] .wbs-info-item,
[data-theme="dark"] .wbs-about-card,
[data-theme="dark"] .wbs-security-box,
[data-theme="dark"] .wbs-criteria-card,
[data-theme="dark"] .wbs-step-card,
[data-theme="dark"] .wbs-process-item,
[data-theme="dark"] .wbs-faq-item,
[data-theme="dark"] .wbs-cta-card,
[data-theme="dark"] .wbs-contact-card,
[data-theme="dark"] .wbs-5w1h-card,
[data-theme="dark"] .wbs-report-guide-card,
[data-theme="dark"] .wbs-question-card,
[data-theme="dark"] .wbs-report-card,
[data-theme="dark"] .wbs-guide-card,
body.dark-theme .wbs-info-item,
body.dark-theme .wbs-about-card,
body.dark-theme .wbs-security-box,
body.dark-theme .wbs-criteria-card,
body.dark-theme .wbs-step-card,
body.dark-theme .wbs-process-item,
body.dark-theme .wbs-faq-item,
body.dark-theme .wbs-cta-card,
body.dark-theme .wbs-contact-card,
body.dark-theme .wbs-5w1h-card,
body.dark-theme .wbs-report-guide-card,
body.dark-theme .wbs-question-card,
body.dark-theme .wbs-report-card,
body.dark-theme .wbs-guide-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);
}

[data-theme="dark"] .wbs-section,
[data-theme="dark"] .wbs-soft-section,
[data-theme="dark"] .wbs-process-section,
[data-theme="dark"] .wbs-cta-section,
body.dark-theme .wbs-section,
body.dark-theme .wbs-soft-section,
body.dark-theme .wbs-process-section,
body.dark-theme .wbs-cta-section {
  background: transparent;
}

[data-theme="dark"] .wbs-section-heading h2,
[data-theme="dark"] .wbs-about-text h2,
[data-theme="dark"] .wbs-cta-card h2,
[data-theme="dark"] .wbs-step-card h3,
[data-theme="dark"] .wbs-process-item h3,
[data-theme="dark"] .wbs-criteria-card h3,
[data-theme="dark"] .wbs-security-box h3,
[data-theme="dark"] .wbs-faq-question span,
[data-theme="dark"] .wbs-5w1h-card h3,
[data-theme="dark"] .wbs-report-guide-card h3,
[data-theme="dark"] .wbs-question-card h3,
[data-theme="dark"] .wbs-report-card h3,
[data-theme="dark"] .wbs-guide-card h3,
[data-theme="dark"] .wbs-info-item strong,
[data-theme="dark"] .wbs-footer-brand strong,
[data-theme="dark"] .wbs-footer-about h2,
[data-theme="dark"] .wbs-contact-content strong,
body.dark-theme .wbs-section-heading h2,
body.dark-theme .wbs-about-text h2,
body.dark-theme .wbs-cta-card h2,
body.dark-theme .wbs-step-card h3,
body.dark-theme .wbs-process-item h3,
body.dark-theme .wbs-criteria-card h3,
body.dark-theme .wbs-security-box h3,
body.dark-theme .wbs-faq-question span,
body.dark-theme .wbs-5w1h-card h3,
body.dark-theme .wbs-report-guide-card h3,
body.dark-theme .wbs-question-card h3,
body.dark-theme .wbs-report-card h3,
body.dark-theme .wbs-guide-card h3,
body.dark-theme .wbs-info-item strong,
body.dark-theme .wbs-footer-brand strong,
body.dark-theme .wbs-footer-about h2,
body.dark-theme .wbs-contact-content strong {
  color: #f8fbff;
}

[data-theme="dark"] .wbs-section-heading p,
[data-theme="dark"] .wbs-about-text p,
[data-theme="dark"] .wbs-cta-card p,
[data-theme="dark"] .wbs-step-card p,
[data-theme="dark"] .wbs-process-item p,
[data-theme="dark"] .wbs-criteria-card p,
[data-theme="dark"] .wbs-security-box p,
[data-theme="dark"] .wbs-faq-answer p,
[data-theme="dark"] .wbs-5w1h-card p,
[data-theme="dark"] .wbs-report-guide-card p,
[data-theme="dark"] .wbs-question-card p,
[data-theme="dark"] .wbs-report-card p,
[data-theme="dark"] .wbs-guide-card p,
[data-theme="dark"] .wbs-info-item span,
[data-theme="dark"] .wbs-footer-brand span,
[data-theme="dark"] .wbs-footer-about p,
[data-theme="dark"] .wbs-contact-content small,
[data-theme="dark"] .wbs-footer-bottom,
body.dark-theme .wbs-section-heading p,
body.dark-theme .wbs-about-text p,
body.dark-theme .wbs-cta-card p,
body.dark-theme .wbs-step-card p,
body.dark-theme .wbs-process-item p,
body.dark-theme .wbs-criteria-card p,
body.dark-theme .wbs-security-box p,
body.dark-theme .wbs-faq-answer p,
body.dark-theme .wbs-5w1h-card p,
body.dark-theme .wbs-report-guide-card p,
body.dark-theme .wbs-question-card p,
body.dark-theme .wbs-report-card p,
body.dark-theme .wbs-guide-card p,
body.dark-theme .wbs-info-item span,
body.dark-theme .wbs-footer-brand span,
body.dark-theme .wbs-footer-about p,
body.dark-theme .wbs-contact-content small,
body.dark-theme .wbs-footer-bottom {
  color: #b8c7de;
}

[data-theme="dark"] .wbs-5w1h-icon,
[data-theme="dark"] .wbs-report-guide-icon,
[data-theme="dark"] .wbs-question-icon,
[data-theme="dark"] .wbs-report-card-icon,
[data-theme="dark"] .wbs-guide-icon,
[data-theme="dark"] .wbs-card-icon,
[data-theme="dark"] .wbs-info-icon,
[data-theme="dark"] .wbs-security-icon,
[data-theme="dark"] .wbs-criteria-icon,
[data-theme="dark"] .wbs-process-icon,
[data-theme="dark"] .wbs-contact-icon,
body.dark-theme .wbs-5w1h-icon,
body.dark-theme .wbs-report-guide-icon,
body.dark-theme .wbs-question-icon,
body.dark-theme .wbs-report-card-icon,
body.dark-theme .wbs-guide-icon,
body.dark-theme .wbs-card-icon,
body.dark-theme .wbs-info-icon,
body.dark-theme .wbs-security-icon,
body.dark-theme .wbs-criteria-icon,
body.dark-theme .wbs-process-icon,
body.dark-theme .wbs-contact-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  border: 1px solid rgba(110, 231, 183, 0.14);
}

[data-theme="dark"] .wbs-security-meta span,
body.dark-theme .wbs-security-meta span {
  background: rgba(255, 255, 255, 0.06);
  color: #bdebd4;
  border: 1px solid rgba(110, 231, 183, 0.12);
}

[data-theme="dark"] .wbs-btn-outline,
body.dark-theme .wbs-btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #eaf2ff;
  border: 1px solid rgba(137, 163, 200, 0.18);
}

[data-theme="dark"] .wbs-btn-outline:hover,
body.dark-theme .wbs-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(137, 163, 200, 0.3);
}

[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);
}

[data-theme="dark"] .wbs-footer-site-link,
body.dark-theme .wbs-footer-site-link {
  color: #d7eaff;
  background: rgba(111, 182, 255, 0.12);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1180px) {
  .wbs-brand {
    flex-basis: 330px;
  }

  .wbs-brand-text span {
    max-width: 270px;
    font-size: 0.7rem;
  }

  .wbs-header-back span,
  .wbs-header-home span {
    display: none;
  }

  .wbs-header-back,
  .wbs-header-home {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .wbs-nav {
    gap: 4px;
  }

  .wbs-nav-link {
    padding-inline: 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 72px;
  }

  .wbs-brand {
    flex-basis: auto;
  }

  .wbs-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .wbs-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: calc(var(--header-height) + 12px);
    z-index: 120;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(13, 27, 53, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .wbs-nav.is-open,
  .wbs-nav.active {
    display: flex;
  }

  .wbs-nav-link {
    justify-content: flex-start;
    min-height: 46px;
    padding-inline: 16px;
    font-size: 0.88rem;
  }

  .wbs-about-card,
  .wbs-footer-grid,
  .wbs-cta-card {
    grid-template-columns: 1fr;
  }

  .wbs-footer-grid {
    gap: 36px;
  }

  .wbs-criteria-grid,
  .wbs-steps,
  .wbs-process,
  .wbs-5w1h-grid,
  .wbs-report-guide-grid,
  .wbs-question-grid,
  .wbs-report-grid,
  .wbs-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-theme="dark"] .wbs-nav,
  body.dark-theme .wbs-nav {
    background: rgba(7, 17, 31, 0.96);
    border-color: rgba(137, 163, 200, 0.18);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .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.88rem;
  }

  .wbs-brand-text span {
    max-width: 240px;
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .wbs-header-back,
  .wbs-header-home,
  .wbs-theme-toggle {
    height: 42px;
    min-height: 42px;
  }

  .wbs-header-cta {
    display: none;
  }

  .wbs-hero {
    min-height: auto;
    padding: 42px 15px 58px;
  }

  .wbs-hero-bg {
    filter: blur(4px) saturate(1.02) brightness(0.88);
    transform: scale(1.035);
  }

  .wbs-hero-content {
    padding: 30px 20px;
    border-radius: 26px;
  }

  .wbs-hero-content h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.1rem);
    line-height: 1.14;
    letter-spacing: 0.002em;
  }

  .wbs-hero-content h1 b {
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .wbs-hero-content p {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.78;
  }

  .wbs-hero-buttons {
    flex-direction: column;
    align-items: stretch;
    margin-top: 30px;
  }

  .wbs-hero-buttons .wbs-btn,
  .wbs-btn {
    width: 100%;
    min-height: 52px;
  }

  .wbs-hero-info,
  .wbs-criteria-grid,
  .wbs-steps,
  .wbs-process,
  .wbs-5w1h-grid,
  .wbs-report-guide-grid,
  .wbs-question-grid,
  .wbs-report-grid,
  .wbs-guide-grid {
    grid-template-columns: 1fr;
  }

  .wbs-hero-info {
    margin-top: 30px;
  }

  .wbs-section {
    padding: 64px 0;
  }

  .wbs-about-card {
    padding: 24px;
    border-radius: 26px;
  }

  .wbs-security-box,
  .wbs-criteria-card,
  .wbs-step-card,
  .wbs-process-item,
  .wbs-5w1h-card,
  .wbs-report-guide-card,
  .wbs-question-card,
  .wbs-report-card,
  .wbs-guide-card {
    padding: 26px 22px;
  }

  .wbs-5w1h-card,
  .wbs-report-guide-card,
  .wbs-question-card,
  .wbs-report-card,
  .wbs-guide-card {
    min-height: auto;
  }

  .wbs-5w1h-icon,
  .wbs-report-guide-icon,
  .wbs-question-icon,
  .wbs-report-card-icon,
  .wbs-guide-icon,
  .wbs-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }

  .wbs-section-heading {
    margin-bottom: 34px;
  }

  .wbs-section-heading h2,
  .wbs-about-text h2,
  .wbs-cta-card h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.16;
  }

  .wbs-cta-section {
    padding-bottom: 64px;
  }

  .wbs-cta-card {
    padding: 26px;
  }

  .wbs-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wbs-footer {
    padding-top: 44px;
  }

  .wbs-footer-grid {
    gap: 30px;
  }

  .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 {
    max-width: 160px;
    font-size: 0.64rem;
    line-height: 1.25;
  }

  .wbs-hero-content {
    padding: 26px 16px;
    border-radius: 22px;
  }

  .wbs-hero-content h1 {
    font-size: 2.05rem;
  }

  .wbs-info-item,
  .wbs-criteria-card,
  .wbs-step-card,
  .wbs-process-item,
  .wbs-5w1h-card,
  .wbs-report-guide-card,
  .wbs-question-card,
  .wbs-report-card,
  .wbs-guide-card {
    padding: 22px 18px;
  }

  .wbs-footer-brand {
    align-items: flex-start;
  }

  .wbs-footer-brand img {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    flex-basis: 44px !important;
  }

  .wbs-contact-card {
    align-items: flex-start;
  }
}