/* =========================================================
   BIDANARA — Main Stylesheet
   Ekosistem Digital Praktik Kebidanan
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand colors */
  --teal-deep: #006B68;
  --teal-dark: #00575B;
  --green-emerald: #2FA36B;
  --green-fresh: #65B65B;
  --gold-soft: #D6A84B;
  --gold-light: #E8C778;
  --bg: #F8FBFA;
  --white: #FFFFFF;
  --text-dark: #173B3B;
  --text-muted: #4B6764;

  /* Gradients (used sparingly — hero + ecosystem core only) */
  --gradient-brand: linear-gradient(135deg, var(--teal-deep) 0%, var(--green-emerald) 100%);

  /* Elevation */
  --shadow-sm: 0 2px 10px rgba(0, 43, 41, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 43, 41, 0.10);
  --shadow-lg: 0 20px 50px rgba(0, 43, 41, 0.14);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Spacing rhythm */
  --section-y: 6.5rem;
  --section-y-sm: 4rem;

  /* Type scale */
  --fs-h1: clamp(2.2rem, 4vw, 3.4rem);
  --fs-h2: clamp(1.7rem, 2.6vw, 2.4rem);
  --fs-h3: 1.35rem;
  --fs-body: 1.05rem;
  --fs-small: 0.9rem;

  /* Motion */
  --ease-brand: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. RESET & BASE ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0;
}

h1 { font-size: var(--fs-h1); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: var(--fs-h3); font-weight: 600; }

p { margin: 0; color: var(--text-muted); }

.container-xl { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: var(--section-y) 0; }

@media (max-width: 768px) {
  section { padding: var(--section-y-sm) 0; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 3. SECTION HEADERS ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { margin-bottom: 0.9rem; }

.section-head p { font-size: 1.05rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 0.9rem;
}

.section-tag::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold-soft);
  display: inline-block;
}

/* ---------- 4. BUTTONS ---------- */
.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-brand), box-shadow 0.25s var(--ease-brand), background-color 0.25s var(--ease-brand);
  white-space: nowrap;
}

.btn-brand-primary {
  background: var(--teal-deep);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-brand-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }

.btn-brand-outline {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid rgba(0, 107, 104, 0.3);
}
.btn-brand-outline:hover { border-color: var(--teal-deep); background: rgba(0, 107, 104, 0.06); color: var(--teal-deep); }

.btn-brand-white {
  background: var(--white);
  color: var(--teal-deep);
}
.btn-brand-white:hover { background: var(--gold-light); color: var(--teal-dark); }

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.9rem; }

/* ---------- 5. NAVBAR ---------- */
.bd-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 251, 250, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 107, 104, 0.08);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.bd-navbar.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.96);
}

.bd-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
  gap: 1.5rem;
}

.bd-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--teal-deep);
}

.bd-logo__mark {
  width: 38px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

/* Footer logo sits on a dark background */
.bd-footer .bd-logo { color: #fff; }

.bd-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bd-nav-menu > li { position: relative; }

.bd-nav-menu a.nav-link-item {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 0;
  position: relative;
}

.bd-nav-menu a.nav-link-item::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--teal-deep);
  transition: width 0.25s var(--ease-brand);
}
.bd-nav-menu a.nav-link-item:hover::after { width: 100%; }

.bd-dropdown-toggle { display: flex; align-items: center; gap: 0.35rem; cursor: pointer; }
.bd-dropdown-toggle svg { transition: transform 0.25s ease; width: 14px; height: 14px; }
.bd-nav-menu li.has-dropdown:hover .bd-dropdown-toggle svg { transform: rotate(180deg); }

.bd-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease-brand), transform 0.25s var(--ease-brand);
}

.bd-nav-menu li.has-dropdown:hover .bd-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.bd-dropdown-panel a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}
.bd-dropdown-panel a:hover { background: var(--bg); color: var(--teal-deep); }

.bd-nav-actions { display: flex; align-items: center; gap: 1rem; }

.bd-nav-login { font-weight: 600; font-size: 0.95rem; color: var(--teal-deep); }

.bd-nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.bd-nav-toggle span {
  width: 22px; height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.bd-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bd-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.bd-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu is hidden by default (desktop). Only unhidden inside the
   max-width:991px breakpoint below — without this rule it renders as a
   plain in-flow list on desktop widths. */
.bd-mobile-menu { display: none; }

@media (max-width: 991px) {
  .bd-nav-menu, .bd-nav-actions .bd-nav-login { display: none; }
  .bd-nav-toggle { display: flex; }

  .bd-mobile-menu {
    display: block;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    bottom: 0;
    background: var(--white);
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-brand);
    z-index: 999;
  }
  .bd-mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .bd-mobile-menu ul { list-style: none; padding: 0; margin: 0; }
  .bd-mobile-menu > ul > li { border-bottom: 1px solid rgba(0,107,104,0.08); }
  .bd-mobile-menu a { display: block; padding: 1rem 0.25rem; font-weight: 500; font-size: 1.02rem; }
  .bd-mobile-submenu { padding-left: 1rem; display: none; }
  .bd-mobile-submenu.is-open { display: block; }
  .bd-mobile-menu .bd-cta-block { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
}

/* ---------- 6. HERO ---------- */
.bd-hero {
  padding: 4.5rem 0 5rem;
  overflow: hidden;
  position: relative;
}

.bd-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.bd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(47, 163, 107, 0.1);
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
}
.bd-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-emerald);
}

.bd-hero h1 { margin-bottom: 1.1rem; }
.bd-hero h1 .accent { color: var(--teal-deep); }

.bd-hero p.lead {
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.bd-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual: connected dashboard mockup */
.bd-hero__visual {
  position: relative;
  min-height: 420px;
}

.bd-flow-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: floatCard 6s ease-in-out infinite;
}
.bd-flow-card .dot { width: 9px; height: 9px; border-radius: 50%; }

.bd-flow-card--pmb { top: 6%; left: 4%; animation-delay: 0s; }
.bd-flow-card--pmb .dot { background: var(--teal-deep); }

.bd-flow-card--pasien { top: 0; right: 8%; animation-delay: 1.4s; }
.bd-flow-card--pasien .dot { background: var(--green-emerald); }

.bd-flow-card--puskesmas { bottom: 18%; right: 0; animation-delay: 0.7s; }
.bd-flow-card--puskesmas .dot { background: var(--gold-soft); }

.bd-flow-card--supplier { bottom: 4%; left: 10%; animation-delay: 2s; }
.bd-flow-card--supplier .dot { background: var(--green-fresh); }

.bd-hero__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 168px; height: 168px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-lg);
  padding: 1rem;
}

.bd-hero__rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border: 1.5px dashed rgba(0, 107, 104, 0.25);
  border-radius: 50%;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
  .bd-hero__grid { grid-template-columns: 1fr; }
  .bd-hero__visual { min-height: 320px; margin-top: 1rem; }
}

/* ---------- 7. PROBLEM / SOLUTION ---------- */
.bd-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bd-problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(0,107,104,0.08);
  transition: transform 0.3s var(--ease-brand), box-shadow 0.3s var(--ease-brand);
}
.bd-problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.bd-problem-card .num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
  display: block;
}

.bd-solution-banner {
  margin-top: 2.5rem;
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bd-solution-banner h3 { color: var(--white); font-size: 1.3rem; }

@media (max-width: 991px) {
  .bd-problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .bd-problem-grid { grid-template-columns: 1fr; }
}

/* ---------- 8. ECOSYSTEM DIAGRAM ---------- */
.bd-ecosystem {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  min-height: 560px;
}

.bd-eco-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.bd-eco-svg path {
  fill: none;
  stroke: rgba(0, 107, 104, 0.25);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  stroke-dashoffset: 0;
  animation: ecoFlow 18s linear infinite;
}
@keyframes ecoFlow { to { stroke-dashoffset: -240; } }

.bd-eco-node {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,107,104,0.08);
  padding: 1rem 1.3rem;
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bd-eco-node:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.bd-eco-node .ic { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); font-size: 0.95rem; }

.bd-eco-node--pasien   { top: 0; left: 50%; transform: translateX(-50%); }
.bd-eco-node--supplier { top: 38%; left: 0; }
.bd-eco-node--puskesmas{ top: 38%; right: 0; }
.bd-eco-node--pmb      { bottom: 12%; left: 8%; }
.bd-eco-node--apotek   { bottom: 12%; right: 8%; }
.bd-eco-node--smartbunda { bottom: 0; left: 50%; transform: translateX(-50%); }

.bd-eco-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

@media (max-width: 767px) {
  .bd-ecosystem { min-height: auto; }
  .bd-eco-svg { display: none; }
  .bd-eco-node, .bd-eco-core {
    position: static;
    transform: none !important;
    width: 100%;
    margin-bottom: 0.9rem;
    justify-content: center;
  }
  .bd-eco-core { margin: 1rem auto; width: 130px; height: 130px; }
}

/* ---------- 9. GENERIC CARD GRID (Smart Bunda / For-whom / Value) ---------- */
.bd-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bd-feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(0,107,104,0.08);
  transition: transform 0.3s var(--ease-brand), box-shadow 0.3s var(--ease-brand);
}
.bd-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.bd-feature-card .ic-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,107,104,0.08);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.bd-feature-card h3 { margin-bottom: 0.6rem; }

@media (max-width: 991px) { .bd-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .bd-card-grid { grid-template-columns: 1fr; } }

/* ---------- 10. SMART BUNDA SECTION ---------- */
.bd-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.bd-mockup-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  border: 1px solid rgba(0,107,104,0.08);
}
.bd-mockup-frame .bar { display: flex; gap: 6px; margin-bottom: 1rem; }
.bd-mockup-frame .bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,107,104,0.15); }
.bd-mockup-frame img { border-radius: 10px; }

.bd-feature-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.bd-feature-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; font-weight: 500; }
.bd-feature-list li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--green-emerald);
}

@media (max-width: 991px) {
  .bd-split-section { grid-template-columns: 1fr; }
  .bd-feature-list { grid-template-columns: 1fr; }
}

/* ---------- 11. MARKETPLACE / PRODUCT CARDS ---------- */
.bd-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bd-product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,107,104,0.08);
  transition: transform 0.3s var(--ease-brand), box-shadow 0.3s var(--ease-brand);
}
.bd-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.bd-product-card__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #EAF4F1, #F3F8EE);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-deep);
  position: relative;
}

.bd-product-card__badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--white);
  color: var(--green-emerald);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.bd-product-card__body { padding: 1.25rem; }
.bd-product-card__category { font-size: 0.78rem; font-weight: 600; color: var(--teal-deep); text-transform: none; margin-bottom: 0.35rem; }
.bd-product-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.bd-product-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.bd-product-card__price { font-weight: 700; color: var(--text-dark); }
.bd-product-card__supplier { font-size: 0.82rem; color: var(--text-muted); }

.bd-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(214, 168, 75, 0.1);
  border-left: 3px solid var(--gold-soft);
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  margin-top: 2rem;
}

@media (max-width: 991px) { .bd-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .bd-product-grid { grid-template-columns: 1fr; } }

/* ---------- 12. TIMELINE / STEPPER ---------- */
.bd-stepper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  position: relative;
}
.bd-stepper::before {
  content: "";
  position: absolute;
  top: 22px; left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(0,107,104,0.25) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.bd-step { position: relative; z-index: 1; text-align: center; }
.bd-step .circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal-deep);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto 0.9rem;
}
.bd-step p { font-size: 0.85rem; font-weight: 500; color: var(--text-dark); }

@media (max-width: 991px) {
  .bd-stepper { grid-template-columns: repeat(4, 1fr); row-gap: 2rem; }
  .bd-stepper::before { display: none; }
}
@media (max-width: 576px) {
  .bd-stepper { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 13. STATISTICS ---------- */
.bd-stats-section { background: var(--gradient-brand); border-radius: var(--radius-lg); color: var(--white); padding: 3.5rem 2rem; }
.bd-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.bd-stat-num { font-size: 2.4rem; font-weight: 700; }
.bd-stat-label { font-size: 0.9rem; opacity: 0.85; margin-top: 0.4rem; }
.bd-stats-note { text-align: center; font-size: 0.8rem; opacity: 0.75; margin-top: 2rem; }

@media (max-width: 767px) { .bd-stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 14. TESTIMONIALS ---------- */
.bd-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.bd-testi-card { background: var(--white); border-radius: var(--radius-md); padding: 1.75rem; border: 1px solid rgba(0,107,104,0.08); }
.bd-testi-card .quote { font-size: 0.98rem; margin-bottom: 1.25rem; color: var(--text-dark); }
.bd-testi-person { display: flex; align-items: center; gap: 0.75rem; }
.bd-testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(0,107,104,0.12); flex-shrink: 0; }
.bd-testi-name { font-weight: 700; font-size: 0.92rem; }
.bd-testi-role { font-size: 0.8rem; color: var(--text-muted); }
.bd-testi-label { font-size: 0.75rem; font-weight: 600; color: var(--gold-soft); margin-top: 1rem; display: block; }

@media (max-width: 991px) { .bd-testi-grid { grid-template-columns: 1fr; } }

/* ---------- 15. PARTNER LOGOS ---------- */
.bd-partner-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem; opacity: 0.75; }
.bd-partner-row .logo-placeholder {
  width: 130px; height: 48px;
  background: var(--white);
  border: 1px dashed rgba(0,107,104,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
}

/* ---------- 16. ARTICLES ---------- */
.bd-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.bd-article-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(0,107,104,0.08); transition: transform 0.3s var(--ease-brand); }
.bd-article-card:hover { transform: translateY(-4px); }
.bd-article-card__img { aspect-ratio: 16/10; background: linear-gradient(135deg, #EAF4F1, #FBF3E3); }
.bd-article-card__body { padding: 1.25rem; }
.bd-article-card__cat { font-size: 0.78rem; font-weight: 600; color: var(--teal-deep); margin-bottom: 0.5rem; }
.bd-article-card__title { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.6rem; }
.bd-article-card__meta { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 991px) { .bd-article-grid { grid-template-columns: 1fr; } }

/* ---------- 17. BIG CTA ---------- */
.bd-cta-big {
  background: var(--teal-deep);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.bd-cta-big::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -180px; right: -120px;
}
.bd-cta-big h2 { color: var(--white); margin-bottom: 0.9rem; }
.bd-cta-big p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 2rem; }
.bd-cta-big__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- 18. FOOTER ---------- */
.bd-footer { background: var(--text-dark); color: rgba(255,255,255,0.75); padding: 4.5rem 0 2rem; }
.bd-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1.2rem; }
.bd-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 2rem; }
.bd-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.bd-footer ul a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.bd-footer ul a:hover { color: var(--gold-light); }
.bd-footer-tagline { font-size: 0.9rem; margin: 1rem 0 1.5rem; color: rgba(255,255,255,0.6); }
.bd-footer-social { display: flex; gap: 0.75rem; }
.bd-footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.bd-footer-social a:hover { background: rgba(255,255,255,0.1); }
.bd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 991px) {
  .bd-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .bd-footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 19. SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-brand), transform 0.7s var(--ease-brand);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- 20. UTILITIES ---------- */
.text-teal { color: var(--teal-deep) !important; }
.bg-surface { background: var(--white); }
.mt-section { margin-top: var(--section-y); }

/* ---------- 21. INNER PAGE HERO (Smart Bunda, Marketplace, Mitra, dll) ---------- */
.bd-page-hero { padding: 4.5rem 0 3rem; text-align: center; }
.bd-page-hero h1 { max-width: 760px; margin: 0 auto 1.1rem; }
.bd-page-hero p.lead { max-width: 600px; margin: 0 auto 2rem; }
.bd-page-hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Feature list — variant with 3 columns for longer lists */
.bd-feature-list.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 767px) { .bd-feature-list.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .bd-feature-list.cols-3 { grid-template-columns: 1fr; } }

/* ---------- 22. DASHBOARD MOCKUP (Smart Bunda) ---------- */
.bd-dashboard-mock {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 440px;
}
.bd-dashboard-mock__sidebar { background: var(--teal-deep); color: #fff; padding: 1.6rem 1.1rem; }
.bd-dashboard-mock__sidebar .brand { font-weight: 700; font-size: 0.95rem; margin-bottom: 1.5rem; opacity: 0.95; }
.bd-dashboard-mock__sidebar .item {
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  opacity: 0.75;
}
.bd-dashboard-mock__sidebar .item.active { background: rgba(255,255,255,0.16); opacity: 1; }
.bd-dashboard-mock__main { background: var(--white); padding: 1.5rem; }
.bd-dashboard-mock__statrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.25rem; }
.bd-dashboard-mock__stat { background: var(--bg); border-radius: 12px; padding: 1rem; }
.bd-dashboard-mock__stat .val { font-size: 1.25rem; font-weight: 700; color: var(--teal-deep); }
.bd-dashboard-mock__stat .lbl { font-size: 0.76rem; color: var(--text-muted); margin-top: 0.2rem; }
.bd-dashboard-mock__chart {
  background: linear-gradient(135deg, #EAF4F1, #F3F8EE);
  border-radius: 12px;
  height: 170px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 1rem;
}
.bd-dashboard-mock__chart span { flex: 1; background: var(--green-emerald); border-radius: 4px 4px 0 0; opacity: 0.85; }
.bd-dashboard-mock__table { border-radius: 12px; border: 1px solid rgba(0,107,104,0.08); overflow: hidden; }
.bd-dashboard-mock__table .row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 0.65rem 1rem; font-size: 0.8rem; }
.bd-dashboard-mock__table .row:not(:last-child) { border-bottom: 1px solid rgba(0,107,104,0.06); }
.bd-dashboard-mock__table .row.head { font-weight: 700; background: var(--bg); }

@media (max-width: 767px) {
  .bd-dashboard-mock { grid-template-columns: 1fr; }
  .bd-dashboard-mock__sidebar { display: none; }
  .bd-dashboard-mock__statrow { grid-template-columns: 1fr 1fr; }
}

/* ---------- 23. WORKFLOW (vertical timeline) ---------- */
.bd-workflow { position: relative; padding-left: 2.75rem; max-width: 640px; }
.bd-workflow::before { content: ""; position: absolute; left: 15px; top: 6px; bottom: 6px; width: 2px; background: rgba(0,107,104,0.15); }
.bd-workflow-item { position: relative; padding-bottom: 2.25rem; }
.bd-workflow-item:last-child { padding-bottom: 0; }
.bd-workflow-item .step-num {
  position: absolute; left: -2.75rem; top: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal-deep);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.bd-workflow-item h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }

/* ---------- 24. FAQ (skin over Bootstrap accordion) ---------- */
.bd-faq .accordion-item { border: 1px solid rgba(0,107,104,0.1); border-radius: var(--radius-sm) !important; margin-bottom: 0.85rem; overflow: hidden; }
.bd-faq .accordion-button { font-weight: 600; font-size: 0.98rem; color: var(--text-dark); background: var(--white); padding: 1.1rem 1.3rem; }
.bd-faq .accordion-button:not(.collapsed) { color: var(--teal-deep); background: rgba(0,107,104,0.05); box-shadow: none; }
.bd-faq .accordion-button:focus { box-shadow: none; border-color: rgba(0,107,104,0.2); }
.bd-faq .accordion-body { font-size: 0.95rem; color: var(--text-muted); padding: 0 1.3rem 1.3rem; }

/* ---------- 25. SCREENSHOT PLACEHOLDER GRID ---------- */
.bd-screenshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.bd-screenshot-item {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #EAF4F1, #F3F8EE);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(0,107,104,0.08);
  text-align: center;
  padding: 1rem;
}
@media (max-width: 767px) { .bd-screenshot-grid { grid-template-columns: 1fr; } }

/* ---------- 26. MARKETPLACE PAGE ---------- */
.bd-market-search {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,107,104,0.08);
  margin-bottom: 2.5rem;
}
.bd-market-search__row { display: flex; gap: 0.75rem; }
.bd-market-search__row input[type="text"] {
  flex: 1;
  border: 1.5px solid rgba(0,107,104,0.15);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.3rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg);
}
.bd-market-search__row input[type="text"]:focus { outline: none; border-color: var(--teal-deep); background: var(--white); }
.bd-market-search__row button { flex-shrink: 0; }

.bd-market-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.bd-chip {
  font-size: 0.83rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(0,107,104,0.15);
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}
.bd-chip.is-active, .bd-chip:hover { border-color: var(--teal-deep); color: var(--teal-deep); background: rgba(0,107,104,0.06); }

.bd-market-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }

.bd-market-sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,107,104,0.08);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.bd-filter-group { margin-bottom: 1.75rem; }
.bd-filter-group:last-child { margin-bottom: 0; }
.bd-filter-title { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.9rem; color: var(--text-dark); }
.bd-filter-check { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.65rem; font-size: 0.9rem; color: var(--text-muted); cursor: pointer; }
.bd-filter-check input { accent-color: var(--teal-deep); width: 16px; height: 16px; }
.bd-filter-price-range { display: flex; align-items: center; gap: 0.5rem; }
.bd-filter-price-range input[type="range"] { width: 100%; accent-color: var(--teal-deep); }

.bd-market-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.bd-market-toolbar__count { font-size: 0.9rem; color: var(--text-muted); }
.bd-market-toolbar__actions { display: flex; align-items: center; gap: 0.9rem; }
.bd-market-toolbar__actions select {
  border: 1.5px solid rgba(0,107,104,0.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
}

.bd-icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,107,104,0.15);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-deep);
  cursor: pointer;
  flex-shrink: 0;
}
.bd-icon-btn .badge-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--gold-soft);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.bd-wishlist-btn {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-deep);
  cursor: pointer;
}

.bd-market-cardfoot { display: flex; gap: 0.6rem; }
.bd-market-cardfoot .btn-brand { flex: 1; }
.bd-market-cardfoot .bd-icon-btn { width: 42px; height: 42px; }

.bd-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.bd-pagination button {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,107,104,0.15);
  background: var(--white);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}
.bd-pagination button.is-active { background: var(--teal-deep); border-color: var(--teal-deep); color: var(--white); }

@media (max-width: 991px) {
  .bd-market-layout { grid-template-columns: 1fr; }
  .bd-market-sidebar { position: static; }
}

/* ---------- 27. FORMS (Mitra, Kontak, Login) ---------- */
.bd-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,107,104,0.08);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem;
}
.bd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.bd-form-group { margin-bottom: 1.25rem; }
.bd-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.bd-form-group .hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.4rem; }
.bd-form-group input[type="text"],
.bd-form-group input[type="email"],
.bd-form-group input[type="tel"],
.bd-form-group select,
.bd-form-group textarea {
  width: 100%;
  border: 1.5px solid rgba(0,107,104,0.15);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.bd-form-group input:focus,
.bd-form-group select:focus,
.bd-form-group textarea:focus {
  outline: none;
  border-color: var(--teal-deep);
  background: var(--white);
}
.bd-form-group textarea { resize: vertical; min-height: 110px; }

.bd-form-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.bd-form-check input { margin-top: 3px; accent-color: var(--teal-deep); }

@media (max-width: 767px) {
  .bd-form-row { grid-template-columns: 1fr; }
  .bd-form-card { padding: 1.5rem; }
}

/* ---------- 28. PARTNER TYPE TABS ---------- */
.bd-partner-type-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 991px) { .bd-partner-type-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .bd-partner-type-row { grid-template-columns: 1fr; } }

/* ---------- 29. COLOR MEANING CARDS (Tentang) ---------- */
.bd-color-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.bd-color-card { background: var(--white); border: 1px solid rgba(0,107,104,0.08); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; }
.bd-color-swatch { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 1rem; }
.bd-color-card h3 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.bd-color-card p { font-size: 0.85rem; }
@media (max-width: 767px) { .bd-color-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 30. VISI MISI ---------- */
.bd-vm-card { background: var(--white); border: 1px solid rgba(0,107,104,0.08); border-radius: var(--radius-md); padding: 2rem; }
.bd-vm-card .ic-wrap { width: 52px; height: 52px; border-radius: 14px; background: rgba(0,107,104,0.08); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.3rem; }
.bd-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 767px) { .bd-vm-grid { grid-template-columns: 1fr; } }

/* ---------- 31. CONTACT INFO CARDS ---------- */
.bd-contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
.bd-contact-card { background: var(--white); border: 1px solid rgba(0,107,104,0.08); border-radius: var(--radius-md); padding: 1.5rem; }
.bd-contact-card .ic-wrap { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,107,104,0.08); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.1rem; }
.bd-contact-card h3 { font-size: 0.92rem; margin-bottom: 0.35rem; }
.bd-contact-card p { font-size: 0.87rem; }
@media (max-width: 991px) { .bd-contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .bd-contact-grid { grid-template-columns: 1fr; } }

.bd-map-placeholder {
  aspect-ratio: 21/8;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #EAF4F1, #F3F8EE);
  border: 1px solid rgba(0,107,104,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 3rem;
}
@media (max-width: 767px) { .bd-map-placeholder { aspect-ratio: 4/3; } }

/* ---------- 32. AUTH / LOGIN PAGE ---------- */
.bd-auth-wrapper {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.bd-auth-brand {
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.bd-auth-brand::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.25);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.bd-auth-brand__inner { position: relative; z-index: 1; max-width: 420px; }
.bd-auth-brand img { width: 64px; margin-bottom: 1.5rem; }
.bd-auth-brand h2 { color: #fff; font-size: 1.6rem; margin-bottom: 0.9rem; }
.bd-auth-brand p { color: rgba(255,255,255,0.85); }

.bd-auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--bg);
}
.bd-auth-form-panel .bd-form-card { width: 100%; max-width: 420px; }
.bd-auth-links { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; margin-bottom: 1.5rem; }
.bd-auth-links a { color: var(--teal-deep); font-weight: 600; }
.bd-auth-switch { text-align: center; font-size: 0.9rem; margin-top: 1.5rem; color: var(--text-muted); }
.bd-auth-switch a { color: var(--teal-deep); font-weight: 600; }

@media (max-width: 900px) {
  .bd-auth-wrapper { grid-template-columns: 1fr; }
  .bd-auth-brand { padding: 3rem 1.5rem; text-align: center; }
  .bd-auth-brand__inner { margin: 0 auto; }
}

/* ---------- 33. CONTACT PAGE LAYOUT ---------- */
.bd-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) {
  .bd-contact-layout { grid-template-columns: 1fr; gap: 1.5rem; }
}
