.mobile-hero-band {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.mobile-hero-band h1 {
  font-size: 34px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.mobile-hero-band p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}

.mobile-body {
  padding: 48px 0 64px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.feature-cell {
  background: var(--lab-white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: 3px;
  transition: transform 0.15s, border-color 0.15s;
}

.feature-cell:hover {
  transform: scale(1.02);
  border-color: var(--lab-blue);
}

.feature-cell-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--lab-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.feature-cell h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-cell p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border: 1px solid var(--border);
  text-align: left;
}

.compare-table th {
  background: var(--lab-blue);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table tr:nth-child(even) td {
  background: var(--surface);
}

.compare-table tr:hover td {
  background: var(--lab-blue-light);
}

.mobile-prose h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--lab-blue);
  margin: 36px 0 14px;
}

.mobile-prose p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.mobile-prose ul {
  margin: 0 0 14px 20px;
  font-size: 15px;
}

.mobile-prose li {
  margin-bottom: 6px;
}

.mobile-visual {
  margin: 28px 0 36px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 100%;
}

.mobile-visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .compare-table {
    font-size: 12px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 8px;
  }

  .mobile-visual {
    overflow: hidden;
    max-width: 100%;
  }

  .mobile-visual img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
  }
}

@media (max-width: 375px) {
  .mobile-body,
  .mobile-prose,
  .mobile-visual {
    overflow-x: hidden;
    max-width: 100%;
  }

  .mobile-visual img {
    max-height: 180px;
  }
}
