/* App In Action, Split Showcases, SOS Phone Mockups */

.mb-section-head--light h2 { color: #fff; }
.mb-section-head--light p { color: #94a3b8; }
.eyebrow--light {
  background: rgba(16, 185, 129, 0.2) !important;
  color: #6ee7b7 !important;
}

/* ── App In Action ── */
.mb-app-action {
  background: #06080a;
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.mb-app-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.45), transparent);
}

.mb-app-action__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 65%, rgba(20, 43, 30, 0.45), transparent 70%);
  pointer-events: none;
}

.mb-app-action .container {
  position: relative;
  z-index: 1;
}

.mb-app-action__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.mb-app-action__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.mb-app-action__head h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.75rem;
}

.mb-app-action__accent {
  color: #6ee7b7;
}

.mb-app-action__head p {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

.mb-app-action__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2rem;
}

.mb-app-action__tab {
  background: rgba(20, 43, 30, 0.55);
  border: 1px solid rgba(42, 92, 67, 0.3);
  color: #94a3b8;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
}

.mb-app-action__tab:hover,
.mb-app-action__tab.active {
  background: #0d5c44;
  border-color: #10b981;
  color: #fff;
}

.mb-app-action__panels {
  position: relative;
  min-height: 420px;
}

.mb-app-action__panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
  animation: mbPanelIn 0.35s ease;
}

.mb-app-action__panel.active {
  display: grid;
}

@keyframes mbPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mb-app-action__card {
  background: rgba(13, 31, 23, 0.65);
  border: 1px solid rgba(42, 92, 67, 0.22);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}

.mb-app-action__card:hover {
  transform: translateY(-8px);
  border-color: rgba(78, 158, 118, 0.45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.mb-app-action__card img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
  display: block;
  transition: transform 0.35s;
}

.mb-app-action__card:hover img {
  transform: scale(1.03);
}

.mb-app-action__card h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 1.125rem 0 0.375rem;
}

.mb-app-action__card p {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* ── Split Showcase (QR + SOS) ── */
.mb-split {
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.mb-split--qr {
  background: #06080a;
}

.mb-split--sos {
  background: #0a1210;
}

.mb-split__glow {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(163, 58, 20, 0.14), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.mb-split--sos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163, 58, 20, 0.45), transparent);
}

.mb-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mb-split__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.28);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.mb-split__tag--sos {
  color: #e8a87c;
  background: rgba(163, 58, 20, 0.12);
  border-color: rgba(163, 58, 20, 0.35);
}

.mb-split__content h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.98;
  color: #fff;
  margin-bottom: 1rem;
}

.mb-split__gold { color: var(--mb-gold); }
.mb-split__red { color: #e05050; }

.mb-split__content > p {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.mb-split__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mb-split__features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(20, 43, 30, 0.45);
  border: 1px solid rgba(42, 92, 67, 0.22);
  border-radius: 6px;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.mb-split__features li:hover {
  border-color: rgba(78, 158, 118, 0.4);
  background: rgba(20, 43, 30, 0.65);
  transform: translateX(6px);
}

.mb-split__features--sos li {
  background: rgba(163, 58, 20, 0.08);
  border-color: rgba(163, 58, 20, 0.2);
}

.mb-split__features--sos li:hover {
  border-color: rgba(224, 80, 80, 0.35);
  background: rgba(163, 58, 20, 0.12);
}

.mb-split__feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(42, 92, 67, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ee7b7;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.mb-split__feat-icon--sos {
  background: rgba(163, 58, 20, 0.2);
  color: #e8a87c;
}

.mb-split__features strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 3px;
}

.mb-split__features span {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.55;
}

.mb-split__phones {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
}

.mb-split__phone {
  width: 46%;
  max-width: 220px;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  object-fit: contain;
}

.mb-split__phone--left {
  transform: rotate(-3deg) translateY(12px);
}

.mb-split__phone--right {
  transform: rotate(2deg);
}

.mb-split__phones--sos {
  align-items: center;
  gap: 16px;
}

/* ── SOS Phone Mockup ── */
.mb-sos-phone {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  background: #111;
  border-radius: 28px;
  padding: 8px;
  border: 2px solid rgba(163, 58, 20, 0.35);
  box-shadow: 0 24px 60px rgba(163, 58, 20, 0.25), 0 32px 80px rgba(0, 0, 0, 0.6);
}

.mb-sos-phone--showcase {
  max-width: 210px;
}

.mb-sos-phone--tilt-left {
  transform: translateY(-16px) rotate(-2deg);
}

.mb-sos-phone--tilt-right {
  transform: translateY(16px) rotate(2deg);
}

.mb-sos-phone__screen {
  background: linear-gradient(180deg, #1a0a08 0%, #0d0605 100%);
  border-radius: 22px;
  padding: 28px 14px 20px;
  text-align: center;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mb-sos-phone__brand {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6ee7b7;
  margin-bottom: 12px;
}

.mb-sos-phone__pulse {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(224, 80, 80, 0.15);
  border: 2px solid rgba(224, 80, 80, 0.5);
  position: relative;
  margin-bottom: 10px;
  animation: mbSosRing 2s ease-out infinite;
}

.mb-sos-phone__pulse::before,
.mb-sos-phone__pulse::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(224, 80, 80, 0.35);
  animation: mbSosRing 2s ease-out infinite;
}

.mb-sos-phone__pulse::after {
  inset: -22px;
  opacity: 0.5;
  animation-delay: 0.5s;
}

@keyframes mbSosRing {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

.mb-sos-phone__screen strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
}

.mb-sos-phone__screen small {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fca5a5;
  margin: 4px 0 8px;
}

.mb-sos-phone__time {
  font-size: 0.6rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.mb-sos-phone__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #334155, #1e293b);
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 8px;
}

.mb-sos-phone__avatars {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.mb-sos-phone__avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #475569, #334155);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.mb-sos-phone__name {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  max-width: 160px;
}

.mb-sos-phone__actions {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mb-sos-phone__actions span:first-child { color: #f87171; }
.mb-sos-phone__actions span:last-child { color: #6ee7b7; }

@media (max-width: 991px) {
  .mb-app-action__panel:not(.active) {
    display: none;
  }

  .mb-split__grid,
  .mb-split__grid--reverse {
    grid-template-columns: 1fr;
  }

  .mb-split__phones {
    order: -1;
    margin-bottom: 1rem;
  }

  .mb-split__phone {
    width: 42%;
  }

  .mb-sos-phone--tilt-left,
  .mb-sos-phone--tilt-right {
    transform: none;
  }
}

@media (max-width: 767px) {
  .mb-split__phones:not(.mb-split__phones--sos) {
    flex-direction: row;
  }

  .mushaba-page #qr-bands {
    scroll-margin-top: calc(56px + 1rem);
  }
}
