/* ==========================================================================
   Mobile App Development Services - r22
   Palette: indigo + sky + coral + amber on white/cool-grey
   ALL FULL-BLEED SECTIONS use width:100vw; left:50%; margin-left:-50vw
   ========================================================================== */

.mb-page {
  --mb-indigo: #2541ff;
  --mb-indigo-2: #4257ff;
  --mb-indigo-deep: #0e1d8a;
  --mb-sky: #00b8ff;
  --mb-sky-soft: #e6f7ff;
  --mb-coral: #ff5a6a;
  --mb-amber: #ffb627;
  --mb-mint: #00d4a8;
  --mb-ink: #0c1226;
  --mb-ink-2: #2a3252;
  --mb-text: #3a4060;
  --mb-muted: #6b7290;
  --mb-line: #e3e8f4;
  --mb-line-2: #d3daea;
  --mb-bg: #ffffff;
  --mb-bg-soft: #f6f8fd;
  --mb-bg-2: #eef2fb;
  --mb-radius: 14px;
  --mb-radius-sm: 10px;
  --mb-radius-lg: 22px;
  --mb-shadow: 0 6px 24px rgba(20, 28, 80, 0.08);
  --mb-shadow-lg: 0 20px 60px rgba(20, 28, 80, 0.14);
  --mb-shadow-pop: 0 30px 80px rgba(37, 65, 255, 0.22);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--mb-text);
  background: var(--mb-bg);
  overflow-x: clip;
}

.mb-page * { box-sizing: border-box; }
.mb-page h1, .mb-page h2, .mb-page h3, .mb-page h4 {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--mb-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.mb-page p { margin: 0; line-height: 1.65; }

.mb-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ==========================================================================
   HERO
   ========================================================================== */
.mb-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 96px 0 80px;
  background: linear-gradient(135deg, #f6f8fd 0%, #eef2fb 60%, #e6f7ff 100%);
  overflow: hidden;
  isolation: isolate;
}
.mb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(37, 65, 255, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(0, 184, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(255, 90, 106, 0.06) 0%, transparent 50%);
  z-index: -1;
}
.mb-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mb-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--mb-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mb-indigo);
  margin-bottom: 24px;
  box-shadow: var(--mb-shadow);
}
.mb-hero__eyebrow .mb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mb-mint);
  box-shadow: 0 0 0 4px rgba(0, 212, 168, 0.18);
  animation: mb-pulse 2s ease-in-out infinite;
}
@keyframes mb-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 212, 168, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(0, 212, 168, 0.05); }
}
.mb-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.15;
  margin-bottom: 32px;
  padding-bottom: 4px;
}
.mb-hero h1 .mb-grad {
  background: linear-gradient(135deg, var(--mb-indigo) 0%, var(--mb-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: 1.18;
  padding-bottom: 6px;
}
.mb-hero__lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--mb-ink-2);
  margin-bottom: 36px;
  margin-top: 4px;
  max-width: 560px;
}
.mb-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.mb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--mb-radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 0;
  cursor: pointer;
}
.mb-btn--primary {
  background: linear-gradient(135deg, var(--mb-indigo) 0%, var(--mb-indigo-2) 100%);
  color: white;
  box-shadow: var(--mb-shadow-pop);
}
.mb-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 36px 90px rgba(37, 65, 255, 0.32); color: white; }
.mb-btn--ghost {
  background: white;
  color: var(--mb-ink);
  border: 1px solid var(--mb-line-2);
}
.mb-btn--ghost:hover { transform: translateY(-2px); border-color: var(--mb-indigo); color: var(--mb-indigo); }
.mb-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--mb-line);
}
.mb-hero__metaitem strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--mb-ink);
  letter-spacing: -0.02em;
}
.mb-hero__metaitem span {
  font-size: 13px;
  color: var(--mb-muted);
  font-weight: 500;
}

/* Hero phone stack */
.mb-hero__phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.mb-phone {
  width: 260px;
  height: 520px;
  background: var(--mb-ink);
  border-radius: 38px;
  padding: 12px;
  box-shadow: var(--mb-shadow-lg);
  position: relative;
}
.mb-phone__notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 24px;
  background: var(--mb-ink);
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.mb-phone__screen {
  width: 100%; height: 100%;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mb-hero__phones .mb-phone--main {
  z-index: 2;
  transform: translateY(-10px);
}
.mb-hero__phones .mb-phone--left {
  position: absolute;
  left: 0;
  top: 30px;
  transform: rotate(-8deg) scale(0.85);
  z-index: 1;
  opacity: 0.92;
}
.mb-hero__phones .mb-phone--right {
  position: absolute;
  right: 0;
  top: 30px;
  transform: rotate(8deg) scale(0.85);
  z-index: 1;
  opacity: 0.92;
}

/* Phone screen content - AI chat */
.mb-ph-statusbar {
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--mb-ink);
}
.mb-ph-statusbar__icons { display: flex; gap: 4px; align-items: center; font-size: 11px; }
.mb-ph-header {
  padding: 8px 16px 12px;
  border-bottom: 1px solid var(--mb-line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mb-ph-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mb-indigo), var(--mb-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
}
.mb-ph-header__name { font-size: 13px; font-weight: 700; color: var(--mb-ink); }
.mb-ph-header__sub { font-size: 10px; color: var(--mb-mint); font-weight: 600; }
.mb-ph-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 8px; background: #f9fbfe; }
.mb-ph-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.4;
}
.mb-ph-msg--ai {
  background: white;
  border: 1px solid var(--mb-line);
  color: var(--mb-ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.mb-ph-msg--user {
  background: linear-gradient(135deg, var(--mb-indigo), var(--mb-indigo-2));
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.mb-ph-input {
  padding: 10px 14px;
  border-top: 1px solid var(--mb-line);
  background: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mb-ph-input__box {
  flex: 1;
  background: var(--mb-bg-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  color: var(--mb-muted);
}
.mb-ph-input__send {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mb-indigo);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
}

/* Left phone - dashboard */
.mb-ph-dash-title { padding: 14px 18px 6px; font-size: 16px; font-weight: 800; color: var(--mb-ink); }
.mb-ph-dash-sub { padding: 0 18px 14px; font-size: 10px; color: var(--mb-muted); }
.mb-ph-stat {
  margin: 0 14px 10px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mb-indigo) 0%, var(--mb-indigo-2) 100%);
  color: white;
}
.mb-ph-stat__label { font-size: 10px; opacity: 0.85; }
.mb-ph-stat__value { font-size: 22px; font-weight: 800; margin-top: 4px; }
.mb-ph-stat__delta { font-size: 10px; color: #b6ffe7; margin-top: 2px; }
.mb-ph-bars {
  margin: 0 14px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}
.mb-ph-bar { flex: 1; background: linear-gradient(180deg, var(--mb-sky), var(--mb-indigo)); border-radius: 4px 4px 0 0; }

/* Right phone - field ops */
.mb-ph-list-title { padding: 14px 18px 8px; font-size: 14px; font-weight: 800; color: var(--mb-ink); }
.mb-ph-row {
  margin: 0 14px 8px;
  padding: 12px;
  background: white;
  border: 1px solid var(--mb-line);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.mb-ph-row__pin {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--mb-sky-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.mb-ph-row__txt { flex: 1; }
.mb-ph-row__title { font-size: 11px; font-weight: 700; color: var(--mb-ink); }
.mb-ph-row__meta { font-size: 9px; color: var(--mb-muted); }
.mb-ph-row__status {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(0, 212, 168, 0.15);
  color: #009072;
}

/* ==========================================================================
   PLATFORM STRIP
   ========================================================================== */
.mb-platforms {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid var(--mb-line);
}
.mb-platforms__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.mb-platforms__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mb-muted);
}
.mb-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--mb-ink);
}
.mb-platform-pill svg { width: 22px; height: 22px; }

/* ==========================================================================
   SECTION BASE
   ========================================================================== */
.mb-section {
  position: relative;
  padding: 96px 0;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.mb-section--bg { background: var(--mb-bg-soft); }
.mb-section--indigo {
  background: linear-gradient(135deg, var(--mb-indigo-deep) 0%, var(--mb-indigo) 100%);
  color: white;
}
.mb-section--indigo h2,
.mb-section--indigo h3 { color: white; }
.mb-section--indigo p { color: rgba(255, 255, 255, 0.85); }

.mb-section__header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.mb-section__kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mb-indigo);
  margin-bottom: 16px;
}
.mb-section--indigo .mb-section__kicker { color: var(--mb-amber); }
.mb-section__header h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.mb-section__header p {
  font-size: 17px;
  color: var(--mb-text);
}
.mb-section--indigo .mb-section__header p { color: rgba(255, 255, 255, 0.85); }

/* ==========================================================================
   PORTFOLIO / APP SHOWCASE
   ========================================================================== */
.mb-portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mb-pcard {
  background: white;
  border: 1px solid var(--mb-line);
  border-radius: var(--mb-radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.mb-pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--mb-shadow-lg);
  border-color: var(--mb-line-2);
}
.mb-pcard__media {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--mb-bg-2), var(--mb-sky-soft));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mb-pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Brand-app tile mode - website screenshot as background + dark overlay for text */
.mb-pcard__brand {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #fff;
  text-align: center;
  padding: 0 16px 16px;
  background: #0c1226;
}
.mb-pcard__shot {
  position: absolute;
  inset: 0;
  display: block;
}
.mb-pcard__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mb-pcard__brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(12,18,38,0.72) 100%);
  pointer-events: none;
  z-index: 1;
}
.mb-pcard__brandname {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  padding: 4px 12px;
  background: rgba(12,18,38,0.55);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mb-pcard__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(12, 18, 38, 0.86);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.mb-pcard__platforms {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.mb-pcard__pf {
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--mb-ink);
}
.mb-pcard__body { padding: 24px; }
.mb-pcard__client {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mb-indigo);
  margin-bottom: 8px;
}
.mb-pcard__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--mb-ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.mb-pcard__desc {
  font-size: 14px;
  color: var(--mb-text);
  line-height: 1.55;
  margin-bottom: 18px;
}
.mb-pcard__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mb-pcard__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--mb-bg-2);
  color: var(--mb-ink-2);
}
.mb-pcard__tag--ai { background: rgba(37, 65, 255, 0.10); color: var(--mb-indigo); }
.mb-pcard__tag--live { background: rgba(0, 212, 168, 0.14); color: #009072; }

/* ==========================================================================
   CAPABILITIES (AI features)
   ========================================================================== */
.mb-caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mb-cap {
  background: white;
  border: 1px solid var(--mb-line);
  border-radius: var(--mb-radius);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.mb-cap:hover {
  transform: translateY(-4px);
  box-shadow: var(--mb-shadow);
  border-color: var(--mb-indigo);
}
.mb-cap__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--mb-indigo), var(--mb-sky));
  color: white;
  font-size: 22px;
  margin-bottom: 20px;
}
.mb-cap:nth-child(3n+2) .mb-cap__icon { background: linear-gradient(135deg, var(--mb-coral), var(--mb-amber)); }
.mb-cap:nth-child(3n+3) .mb-cap__icon { background: linear-gradient(135deg, var(--mb-mint), var(--mb-sky)); }
.mb-cap h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--mb-ink);
}
.mb-cap p {
  font-size: 14px;
  color: var(--mb-text);
  line-height: 1.6;
}

/* ==========================================================================
   FRAMEWORK GRID
   ========================================================================== */
.mb-frameworks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.mb-fw {
  background: white;
  border: 1px solid var(--mb-line);
  border-radius: var(--mb-radius-sm);
  padding: 24px 16px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.mb-fw:hover {
  transform: translateY(-3px);
  border-color: var(--mb-indigo);
  box-shadow: var(--mb-shadow);
}
.mb-fw__icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
}
.mb-fw__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--mb-ink);
}

/* ==========================================================================
   PROCESS PIPELINE
   ========================================================================== */
.mb-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mb-step {
  background: white;
  border-radius: var(--mb-radius);
  padding: 32px 28px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.mb-section--indigo .mb-step {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.mb-step__num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--mb-amber);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.mb-step h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: white;
}
.mb-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.mb-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.mb-price {
  background: white;
  border: 1px solid var(--mb-line);
  border-radius: var(--mb-radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mb-price:hover { transform: translateY(-4px); box-shadow: var(--mb-shadow-lg); }
.mb-price--featured {
  border: 2px solid var(--mb-indigo);
  box-shadow: var(--mb-shadow-pop);
  transform: translateY(-8px);
}
.mb-price--featured:hover { transform: translateY(-12px); }
.mb-price__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--mb-indigo), var(--mb-indigo-2));
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}
.mb-price__name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mb-indigo);
  margin-bottom: 10px;
}
.mb-price__amt {
  font-size: 44px;
  font-weight: 800;
  color: var(--mb-ink);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.mb-price__per {
  font-size: 13px;
  color: var(--mb-muted);
  font-weight: 600;
  margin-bottom: 24px;
}
.mb-price__feat {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.mb-price__feat li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--mb-text);
  border-bottom: 1px solid var(--mb-line);
}
.mb-price__feat li:last-child { border-bottom: 0; }
.mb-price__feat li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0, 212, 168, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4a8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   COMPARISON MATRIX
   ========================================================================== */
.mb-matrix {
  background: white;
  border: 1px solid var(--mb-line);
  border-radius: var(--mb-radius-lg);
  overflow: hidden;
  box-shadow: var(--mb-shadow);
}
.mb-matrix__table {
  width: 100%;
  border-collapse: collapse;
}
.mb-matrix__table th,
.mb-matrix__table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--mb-line);
}
.mb-matrix__table th {
  background: var(--mb-bg-soft);
  font-weight: 700;
  color: var(--mb-ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mb-matrix__table td:first-child { font-weight: 700; color: var(--mb-ink); }
.mb-matrix__table td.mb-yes { color: var(--mb-mint); font-weight: 700; }
.mb-matrix__table td.mb-no { color: var(--mb-muted); }
.mb-matrix__table tr:last-child td { border-bottom: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.mb-faq {
  max-width: 880px;
  margin: 0 auto;
}
.mb-faq__item {
  background: white;
  border: 1px solid var(--mb-line);
  border-radius: var(--mb-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.mb-faq__item[open],
.mb-faq__item:hover { border-color: var(--mb-indigo); box-shadow: var(--mb-shadow); }
.mb-faq__q {
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--mb-ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.mb-faq__q::-webkit-details-marker { display: none; }
.mb-faq__q::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--mb-indigo);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.mb-faq__item[open] .mb-faq__q::after { transform: rotate(45deg); }
.mb-faq__a {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--mb-text);
  line-height: 1.7;
}

/* ==========================================================================
   KEYWORD CLOUD
   ========================================================================== */
.mb-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}
.mb-keywords__chip {
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--mb-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mb-ink-2);
  transition: all .15s ease;
}
.mb-keywords__chip:hover {
  border-color: var(--mb-indigo);
  color: var(--mb-indigo);
  transform: translateY(-1px);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.mb-cta {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--mb-indigo-deep) 0%, var(--mb-indigo) 60%, #1a30c9 100%);
  color: white;
  overflow: hidden;
  text-align: center;
}
.mb-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 184, 255, 0.20) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 90, 106, 0.18) 0%, transparent 50%);
}
.mb-cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.mb-cta h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}
.mb-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
}
.mb-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.mb-cta .mb-btn--primary {
  background: white;
  color: var(--mb-indigo);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
}
.mb-cta .mb-btn--primary:hover { color: var(--mb-indigo-deep); background: #f7faff; }
.mb-cta .mb-btn--ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.mb-cta .mb-btn--ghost:hover { border-color: white; color: white; background: rgba(255, 255, 255, 0.08); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .mb-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .mb-hero__phones { min-height: 540px; }
  .mb-portfolio { grid-template-columns: repeat(2, 1fr); }
  .mb-caps { grid-template-columns: repeat(2, 1fr); }
  .mb-frameworks { grid-template-columns: repeat(4, 1fr); }
  .mb-pipeline { grid-template-columns: repeat(2, 1fr); }
  .mb-pricing { grid-template-columns: 1fr; max-width: 480px; }
  .mb-price--featured { transform: none; }
  .mb-price--featured:hover { transform: translateY(-4px); }
}
@media (max-width: 720px) {
  .mb-hero { padding: 64px 0 56px; }
  .mb-section { padding: 64px 0; }
  .mb-cta { padding: 72px 0; }
  .mb-section__header { margin-bottom: 40px; }
  .mb-portfolio { grid-template-columns: 1fr; }
  .mb-caps { grid-template-columns: 1fr; }
  .mb-frameworks { grid-template-columns: repeat(3, 1fr); }
  .mb-pipeline { grid-template-columns: 1fr; }
  .mb-hero__phones { min-height: 480px; }
  .mb-phone { width: 220px; height: 440px; }
  .mb-hero__phones .mb-phone--left,
  .mb-hero__phones .mb-phone--right { display: none; }
  .mb-platforms__inner { gap: 24px; }
  .mb-matrix__table th,
  .mb-matrix__table td { padding: 12px 14px; font-size: 13px; }
  .mb-matrix__table th:nth-child(n+3),
  .mb-matrix__table td:nth-child(n+3) { display: none; }
}
