/*
Theme Name: Markbro Healthcare v2
Theme URI: https://markbro.com
Author: Markbro
Description: Healthcare Marketing Specialist — clean white + teal premium theme dengan scroll parallax.
Version: 2.0.0
Text Domain: markbro
*/

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --teal-900: #0A4A40;
  --teal-700: #0F6E5A;
  --teal-500: #1B9E80;
  --teal-400: #22BFA0;
  --teal-100: #D4F5EE;
  --teal-50:  #EAF9F5;

  --navy:     #0D1F3C;
  --navy-mid: #1E3A5F;
  --navy-soft:#2D5282;

  --gold:     #C4973A;
  --gold-lt:  #F5E6C8;

  --white:    #FFFFFF;
  --gray-50:  #F7F9FC;
  --gray-100: #EEF2F7;
  --gray-200: #DDE4EE;
  --gray-400: #9BAABB;
  --gray-600: #5A6A7E;
  --gray-800: #2C3A4E;

  --text-heading: #0D1F3C;
  --text-body:    #3D5070;
  --text-muted:   #7B90AA;
  --border:       rgba(13,31,60,0.09);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --ff-mono:    'JetBrains Mono', monospace;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(13,31,60,0.06);
  --shadow-md:  0 8px 32px rgba(13,31,60,0.10);
  --shadow-lg:  0 20px 60px rgba(13,31,60,0.14);
  --shadow-teal:0 16px 48px rgba(27,158,128,0.18);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container     { max-width: 1120px; margin: 0 auto; padding: 0 36px; }
.container-sm  { max-width: 760px;  margin: 0 auto; padding: 0 36px; }
.container-lg  { max-width: 1280px; margin: 0 auto; padding: 0 36px; }
.section       { padding: 96px 0; }
.section-sm    { padding: 64px 0; }
.section-lg    { padding: 128px 0; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--teal-400); border-radius: 2px;
  flex-shrink: 0;
}
.display-1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500; line-height: 1.12;
  color: var(--text-heading); letter-spacing: -0.5px;
}
.display-2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500; line-height: 1.18;
  color: var(--text-heading); letter-spacing: -0.3px;
}
.display-3 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500; line-height: 1.25;
  color: var(--text-heading);
}
.lead { font-size: 18px; line-height: 1.75; color: var(--text-body); }
.text-muted { color: var(--text-muted); }
em.teal { font-style: italic; color: var(--teal-500); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-500); color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 20px 56px rgba(27,158,128,0.28); color: var(--white); }
.btn-secondary {
  background: var(--white); color: var(--teal-700);
  border: 1.5px solid var(--teal-500);
}
.btn-secondary:hover { background: var(--teal-50); color: var(--teal-700); }
.btn-ghost { background: transparent; color: var(--text-body); }
.btn-ghost:hover { color: var(--teal-500); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); color: var(--white); }
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

/* ─────────────────────────────────────────
   BADGES / TAGS
───────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.badge-teal   { background: var(--teal-50);  color: var(--teal-700);  border: 1px solid var(--teal-100); }
.badge-gold   { background: var(--gold-lt);  color: var(--gold);      border: 1px solid rgba(196,151,58,0.2); }
.badge-navy   { background: var(--navy);     color: var(--white); }
.badge-gray   { background: var(--gray-100); color: var(--gray-600); }
.badge-new    { background: var(--teal-500); color: var(--white); }

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.3s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal-100); }
.card-flat { background: var(--gray-50); border-color: transparent; }
.card-flat:hover { background: var(--white); border-color: var(--border); box-shadow: var(--shadow-sm); }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#mb-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  height: 72px;
}
#mb-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px; gap: 32px;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 600;
  color: var(--text-heading); letter-spacing: -0.3px;
  flex-shrink: 0;
}
.nav-logo .dot { color: var(--teal-500); }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-size: 14px; font-weight: 400;
  color: var(--text-body);
  padding: 7px 12px; border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-menu a:hover { color: var(--teal-500); background: var(--teal-50); }
.nav-menu a.active { color: var(--teal-700); font-weight: 500; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text-heading); border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────── */
#mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block; padding: 12px 0;
  font-size: 16px; color: var(--text-body);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
#mobile-menu a:last-child { border-bottom: none; }
#mobile-menu a:hover { color: var(--teal-500); }

/* ─────────────────────────────────────────
   PAGE HERO (reusable)
───────────────────────────────────────── */
.page-hero {
  padding: 144px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--white) 60%);
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-deco {
  position: absolute; z-index: 0;
  border-radius: 50%; pointer-events: none;
}

/* ─────────────────────────────────────────
   PARALLAX LAYERS
───────────────────────────────────────── */
.parallax-layer { will-change: transform; transition: transform 0.1s linear; }

/* ─────────────────────────────────────────
   HERO — HOME
───────────────────────────────────────── */
#hero-home {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,158,128,0.08) 0%, transparent 70%);
  top: -150px; right: -150px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,151,58,0.06) 0%, transparent 70%);
  bottom: -100px; left: -50px;
}
.hero-blob-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(27,158,128,0.10) 0%, transparent 70%);
  top: 40%; left: 42%;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  font-size: 12px; font-weight: 500; color: var(--teal-700);
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-500); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 500; line-height: 1.12;
  color: var(--text-heading); letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero-h1 em { font-style: italic; color: var(--teal-500); }
.hero-lead {
  font-size: 18px; line-height: 1.75;
  color: var(--text-body); max-width: 480px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 40px;
  padding-top: 36px; border-top: 1px solid var(--gray-200);
}
.hstat-num {
  font-family: var(--ff-display);
  font-size: 34px; font-weight: 500;
  color: var(--text-heading); line-height: 1;
}
.hstat-label { font-size: 13px; color: var(--text-muted); margin-top: 3px; }
.hero-visual { position: relative; }
.hero-float-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px; overflow: hidden;
}
.hero-card-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.hcard-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--teal-50); display: flex;
  align-items: center; justify-content: center; font-size: 16px;
}
.hcard-title { font-size: 13px; font-weight: 500; color: var(--text-heading); }
.hcard-sub   { font-size: 11px; color: var(--text-muted); }
.metric-list { display: flex; flex-direction: column; gap: 0; }
.metric-item {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-100);
}
.metric-item:last-child { border-bottom: none; }
.metric-name-text { font-size: 13px; color: var(--text-body); }
.metric-right { display: flex; align-items: center; gap: 10px; }
.metric-value { font-family: var(--ff-display); font-size: 16px; color: var(--text-heading); }
.metric-pill {
  font-size: 10px; font-weight: 500;
  padding: 2px 8px; border-radius: 100px;
  background: var(--teal-50); color: var(--teal-700);
  white-space: nowrap;
}
.hero-mini-card {
  position: absolute; bottom: -20px; left: -32px;
  background: var(--navy); border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  min-width: 160px;
}
.mini-card-num {
  font-family: var(--ff-display); font-size: 28px;
  font-weight: 500; color: var(--white); line-height: 1;
}
.mini-card-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-badge-card {
  position: absolute; top: -16px; right: -20px;
  background: var(--gold); border-radius: var(--radius-md);
  padding: 12px 16px; box-shadow: 0 12px 32px rgba(196,151,58,0.3);
}
.hero-badge-text { font-size: 12px; font-weight: 500; color: var(--white); }
.hero-badge-sub  { font-size: 10px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ─────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .lead { max-width: 560px; margin: 0 auto; }
.section-header h2 { margin-bottom: 14px; }
.section-header .lead { margin-top: 8px; }

/* ─────────────────────────────────────────
   CLIENTS STRIP
───────────────────────────────────────── */
#mb-clients-strip {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.clients-label {
  text-align: center; font-size: 11px; font-weight: 500;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 32px;
}
.clients-scroller {
  display: flex; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.client-chip { text-align: center; cursor: default; }
.client-chip-name {
  font-family: var(--ff-display); font-size: 17px;
  color: var(--gray-400); transition: color 0.2s;
  font-weight: 400;
}
.client-chip:hover .client-chip-name { color: var(--text-heading); }
.client-chip-type { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ─────────────────────────────────────────
   PROBLEM SECTION
───────────────────────────────────────── */
#mb-problem { background: var(--white); }
.problem-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.problem-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  padding: 24px;
  transition: all 0.25s;
}
.problem-card:hover {
  background: var(--white); border-color: var(--teal-100);
  box-shadow: var(--shadow-sm); transform: translateY(-2px);
}
.problem-card-icon { font-size: 24px; margin-bottom: 12px; }
.problem-card h4 { font-size: 14px; font-weight: 500; color: var(--text-heading); margin-bottom: 6px; line-height: 1.4; }
.problem-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ─────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────── */
#mb-services-home { background: var(--gray-50); }
.services-tabs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-pillar::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-700));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-pillar:hover {
  box-shadow: var(--shadow-md); border-color: var(--teal-100);
  transform: translateY(-5px);
}
.service-pillar:hover::after { transform: scaleX(1); }
.service-pillar-num {
  font-family: var(--ff-display); font-size: 56px; font-weight: 500;
  color: rgba(13,31,60,0.05); line-height: 1; margin-bottom: 12px;
}
.service-pillar-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--teal-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  transition: background 0.3s;
}
.service-pillar:hover .service-pillar-icon { background: var(--teal-100); }
.service-pillar h3 { font-size: 20px; font-weight: 500; color: var(--text-heading); margin-bottom: 12px; }
.service-pillar p  { font-size: 14px; line-height: 1.7; color: var(--text-body); margin-bottom: 24px; }
.pillar-features { display: flex; flex-direction: column; gap: 8px; }
.pillar-features li {
  font-size: 13px; color: var(--text-body);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.pillar-features li::before { content: '→'; color: var(--teal-500); flex-shrink: 0; margin-top: 1px; }

/* ─────────────────────────────────────────
   HOW IT WORKS — HOME PREVIEW
───────────────────────────────────────── */
#mb-how-preview { background: var(--white); }
.steps-timeline {
  display: flex; gap: 0;
  position: relative; margin-top: 64px;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  top: 30px; left: calc(10% + 28px); right: calc(10% + 28px);
  height: 1px; background: var(--gray-200); z-index: 0;
}
.timeline-step {
  flex: 1; text-align: center;
  padding: 0 12px; position: relative; z-index: 1;
}
.timeline-step-num {
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 18px;
  color: var(--text-muted); margin: 0 auto 20px;
  transition: all 0.3s;
}
.timeline-step:hover .timeline-step-num {
  border-color: var(--teal-500); color: var(--teal-700);
  background: var(--teal-50);
  box-shadow: 0 0 0 6px var(--teal-50);
}
.timeline-step-week {
  font-size: 10px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--teal-500); margin-bottom: 6px;
}
.timeline-step h4 { font-size: 14px; font-weight: 500; color: var(--text-heading); margin-bottom: 6px; }
.timeline-step p  { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────────────────────────────
   REPORTS SECTION
───────────────────────────────────────── */
#mb-reports-home { background: var(--teal-50); }
.reports-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.report-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--border);
  transition: all 0.3s;
}
.report-box:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.report-box.gold-border { border-color: var(--gold); border-width: 1.5px; }
.report-type-badge {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
}
.rtb-ops  { background: var(--teal-50);  color: var(--teal-700); border: 1px solid var(--teal-100); }
.rtb-exec { background: var(--gold-lt);  color: var(--gold);     border: 1px solid rgba(196,151,58,0.2); }
.report-box h3 { font-family: var(--ff-display); font-size: 24px; font-weight: 500; color: var(--text-heading); margin-bottom: 6px; }
.report-for { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  font-size: 14px; color: var(--text-body);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.ci {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--white); margin-top: 1px;
}
.ci-teal { background: var(--teal-500); }
.ci-gold { background: var(--gold); }

/* ─────────────────────────────────────────
   PRICING SECTION
───────────────────────────────────────── */
#mb-pricing-home { background: var(--white); }
.pricing-duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 880px; margin: 0 auto;
}
.price-card {
  border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--border);
  background: var(--gray-50); position: relative;
  transition: all 0.3s;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.price-card.featured {
  background: var(--navy); border-color: var(--navy);
}
.price-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 11px; font-weight: 500; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 5px 18px; border-radius: 100px;
  white-space: nowrap;
}
.price-plan { font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.featured .price-plan { color: rgba(255,255,255,0.45); }
.price-amount { font-family: var(--ff-display); font-size: 42px; font-weight: 500; color: var(--text-heading); line-height: 1; margin-bottom: 4px; }
.featured .price-amount { color: var(--gold); }
.price-period { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.featured .price-period { color: rgba(255,255,255,0.4); }
.price-desc { font-size: 14px; color: var(--text-body); line-height: 1.6; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); margin-bottom: 20px; }
.featured .price-desc { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price-features li { font-size: 14px; color: var(--text-body); display: flex; align-items: center; gap: 8px; }
.featured .price-features li { color: rgba(255,255,255,0.75); }
.pf-check { color: var(--teal-500); font-size: 14px; flex-shrink: 0; }
.featured .pf-check { color: var(--teal-400); }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
#mb-testi-home { background: var(--gray-50); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  transition: all 0.3s;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--text-body); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-family: var(--ff-display);
  font-size: 14px; color: var(--white); flex-shrink: 0;
}
.testi-name  { font-size: 14px; font-weight: 500; color: var(--text-heading); }
.testi-role  { font-size: 12px; color: var(--text-muted); }

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  background: var(--navy); padding: 96px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(27,158,128,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 { font-family: var(--ff-display); font-size: clamp(28px,4vw,44px); font-weight: 500; color: var(--white); margin-bottom: 16px; position: relative; line-height: 1.2; }
.cta-band h2 em { font-style: italic; color: var(--teal-400); }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 40px; line-height: 1.75; position: relative; }
.cta-band-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.btn-white { background: var(--white); color: var(--teal-700); }
.btn-white:hover { background: var(--teal-50); color: var(--teal-700); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-outline-white:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 24px; position: relative; }

/* ─────────────────────────────────────────
   PAGE: LAYANAN (dedicated)
───────────────────────────────────────── */
.service-detail-grid { display: flex; flex-direction: column; gap: 64px; }
.service-detail-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.service-detail-row.reverse { direction: rtl; }
.service-detail-row.reverse > * { direction: ltr; }
.service-detail-visual {
  background: var(--gray-50); border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  padding: 40px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.service-detail-visual::before {
  content: attr(data-num);
  position: absolute; bottom: -20px; right: 16px;
  font-family: var(--ff-display); font-size: 120px; font-weight: 600;
  color: rgba(13,31,60,0.04); line-height: 1; pointer-events: none;
}
.sdv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm); padding: 8px 14px;
  font-size: 13px; font-weight: 500; color: var(--teal-700);
  margin-bottom: 16px;
}
.sdv-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
}
.sdv-item:last-child { border-bottom: none; }
.sdv-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-500); flex-shrink: 0; margin-top: 7px;
}
.sdv-item-text { font-size: 13px; color: var(--text-body); line-height: 1.5; }
.service-detail-content h3 { font-family: var(--ff-display); font-size: clamp(24px,3vw,32px); font-weight: 500; color: var(--text-heading); margin-bottom: 16px; }
.service-detail-content p  { font-size: 16px; line-height: 1.75; color: var(--text-body); margin-bottom: 24px; }
.service-detail-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-detail-list li { font-size: 15px; color: var(--text-body); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.sdl-check { color: var(--teal-500); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ─────────────────────────────────────────
   PAGE: CARA KERJA (dedicated)
───────────────────────────────────────── */
.process-phases { display: flex; flex-direction: column; gap: 80px; }
.process-phase { display: grid; grid-template-columns: 240px 1fr; gap: 48px; }
.phase-label-col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.phase-num {
  font-family: var(--ff-display); font-size: 64px; font-weight: 500;
  color: var(--teal-100); line-height: 1;
}
.phase-name { font-size: 14px; font-weight: 500; color: var(--teal-700); text-transform: uppercase; letter-spacing: 1px; }
.phase-timing { font-size: 12px; color: var(--text-muted); }
.phase-divider { width: 1px; background: var(--gray-100); margin: 0 auto; }
.phase-content-col {}
.phase-title { font-family: var(--ff-display); font-size: 28px; font-weight: 500; color: var(--text-heading); margin-bottom: 14px; }
.phase-desc  { font-size: 16px; line-height: 1.75; color: var(--text-body); margin-bottom: 28px; }
.phase-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; }
.phase-step-card {
  background: var(--gray-50); border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); padding: 20px;
}
.phase-step-card h5 { font-size: 14px; font-weight: 500; color: var(--text-heading); margin-bottom: 6px; }
.phase-step-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ─────────────────────────────────────────
   PAGE: TENTANG KAMI
───────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); padding: 24px;
  transition: all 0.25s;
}
.value-card:hover { border-color: var(--teal-100); box-shadow: var(--shadow-sm); }
.value-icon { font-size: 24px; margin-bottom: 12px; }
.value-card h4 { font-size: 15px; font-weight: 500; color: var(--text-heading); margin-bottom: 6px; }
.value-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.about-img-placeholder {
  background: var(--gray-50); border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200); aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.aip-icon  { font-size: 48px; opacity: 0.3; }
.aip-text  { font-size: 13px; color: var(--text-muted); }
.stat-band {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 48px; display: grid;
  grid-template-columns: repeat(4,1fr); gap: 32px;
  text-align: center; margin-top: 64px;
}
.stat-band-num { font-family: var(--ff-display); font-size: 40px; font-weight: 500; color: var(--white); line-height: 1; }
.stat-band-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ─────────────────────────────────────────
   PAGE: PORTOFOLIO / CASE STUDY
───────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.portfolio-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.3s; cursor: default;
}
.portfolio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.portfolio-thumb {
  background: var(--gray-100); aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--gray-400); position: relative;
}
.portfolio-thumb-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.portfolio-thumb-text  { font-size: 12px; color: var(--text-muted); }
.portfolio-body { padding: 24px 28px; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.portfolio-body h3 { font-size: 18px; font-weight: 500; color: var(--text-heading); margin-bottom: 10px; }
.portfolio-body p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.portfolio-empty {
  grid-column: 1/-1; text-align: center;
  padding: 80px 40px;
  background: var(--gray-50); border-radius: var(--radius-lg);
  border: 1px dashed var(--gray-200);
}
.portfolio-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.4; }
.portfolio-empty h3 { font-size: 20px; font-weight: 500; color: var(--text-heading); margin-bottom: 8px; }
.portfolio-empty p  { font-size: 15px; color: var(--text-muted); max-width: 400px; margin: 0 auto; line-height: 1.6; }

/* ─────────────────────────────────────────
   PAGE: BLOG
───────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-thumb {
  background: var(--teal-50); aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; position: relative; overflow: hidden;
}
.blog-thumb-num {
  font-family: var(--ff-display); font-size: 80px; font-weight: 600;
  color: rgba(27,158,128,0.1); position: absolute;
}
.blog-thumb-icon { position: relative; z-index: 1; }
.blog-body { padding: 24px 28px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-date  { font-size: 12px; color: var(--text-muted); }
.blog-read  { font-size: 12px; color: var(--text-muted); }
.blog-body h3 { font-size: 18px; font-weight: 500; color: var(--text-heading); margin-bottom: 10px; line-height: 1.35; }
.blog-body p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.blog-read-link {
  font-size: 13px; font-weight: 500; color: var(--teal-500);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-link { gap: 8px; }

/* ─────────────────────────────────────────
   PAGE: KONTAK
───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--teal-50); border: 1px solid var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-item-label { font-size: 12px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-item-value { font-size: 16px; font-weight: 500; color: var(--text-heading); }
.contact-item-sub   { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.contact-socials { display: flex; gap: 10px; margin-top: 8px; }
.social-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--gray-100); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all 0.2s;
}
.social-btn:hover { background: var(--teal-50); border-color: var(--teal-100); }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border); padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 22px; font-weight: 500; color: var(--text-heading); margin-bottom: 8px; }
.contact-form-card p  { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-heading); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--ff-body); font-size: 14px; color: var(--text-heading);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(27,158,128,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 15px; font-size: 15px; font-weight: 500; border: none; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#mb-footer { background: #080F1C; padding: 72px 0 40px; }
.footer-body { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-logo { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.footer-brand-logo span { color: var(--teal-400); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.65; margin-bottom: 24px; max-width: 280px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-contacts a:hover { color: var(--teal-400); }
.footer-col h5 { font-size: 11px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 18px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 12px; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 10px; }

/* ─────────────────────────────────────────
   ANIMATION & SCROLL
───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .service-detail-row { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-row.reverse { direction: ltr; }
  .about-split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2,1fr); }
  .process-phase { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .container, .container-sm, .container-lg { padding: 0 20px; }
  .section { padding: 64px 0; }
  .services-tabs-grid { grid-template-columns: 1fr; }
  .problem-split { grid-template-columns: 1fr; gap: 40px; }
  .problem-grid { grid-template-columns: 1fr; }
  .reports-duo, .pricing-duo { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-body { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-band { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px; }
  .steps-timeline { flex-direction: column; gap: 32px; }
  .steps-timeline::before { display: none; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .footer-body { grid-template-columns: 1fr; }
  .pricing-duo { max-width: 100%; }
}
