.ms-section {
  background: #F5F7FA;
  padding: 34px 0;
  overflow: hidden;
  position: relative;
}
.ms-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,194,168,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.ms-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(11,31,58,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.ms-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.ms-header {
  text-align: center;
  margin-bottom: 28px;
}
.ms-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #00C2A8;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.ms-label-line {
  display: inline-block;
  width: 24px; height: 2px;
  background: #00C2A8;
  border-radius: 2px;
}
.ms-title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  color: #0B1F3A;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ms-title span { color: #00C2A8; }
.ms-subtitle {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.ms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.ms-card {
  background: #ffffff;
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: 16px;
  padding: 16px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.ms-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: #00C2A8;
  transition: width 0.4s ease;
}
.ms-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11,31,58,0.1);
  border-color: rgba(0,194,168,0.25);
}
.ms-card:hover::after { width: 100%; }
.ms-card img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  display: block;
}
.ms-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  background: #ffffff;
  border: 1px solid rgba(11,31,58,0.07);
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.ms-bottom-dot {
  width: 8px; height: 8px;
  background: #00C2A8;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,194,168,0.5);
  flex-shrink: 0;
}
.ms-bottom-text {
  font-size: 13px;
  font-weight: 600;
  color: #0B1F3A;
  letter-spacing: 0.01em;
}
.ms-bottom-text span { color: #00C2A8; }

@media (max-width: 1024px) {
  .ms-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .ms-section { padding: 48px 0; }
  .ms-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ms-card { padding: 14px 10px 12px; }
  .ms-card img { height: 52px; }
  .ms-bottom { flex-direction: column; gap: 8px; text-align: center; width: 100%; }
}
